*** empty log message ***
[emacs.git] / lisp / ChangeLog
blob4fdf8ee924f24d48881f066856d42ab31816a0b7
1 2007-04-11  Markus Triska  <markus.triska@gmx.at>
3         * emacs-lisp/byte-opt.el (byte-optimize-backward-char)
4         (byte-optimize-backward-word): Remove (move to bytecomp.el)
6         * emacs-lisp/bytecomp.el (byte-compile-char-before): Improve
7         numeric argument case.
8         (byte-compile-backward-char, byte-compile-backward-word): New
9         functions, performing rewriting previously done in byte-opt.el.
10         Fix their "Fixme" item (restriction to numeric arguments).
12 2007-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14         * desktop.el (desktop-save, desktop-create-buffer): Replace mapcar with
15         dolist.
16         (after-init-hook): Don't quote lambda.
17         (desktop-first-buffer): Don't wrap it in eval-when-compile.
18         (desktop-internal-v2s): Remove unused var `el'.
19         (desktop-buffer-major-mode, desktop-buffer-locals): Move out of
20         desktop-restore-file-buffer.
21         (desktop-buffer-ok-count, desktop-buffer-fail-count): Move out of
22         desktop-create-buffer.
24 2007-04-10  Chong Yidong  <cyd@stupidchicken.com>
26         * woman.el (woman-decode-buffer): Postphone macro-set check...
27         (woman-decode-region): ...to here.
29 2007-04-10  Thien-Thi Nguyen  <ttn@gnu.org>
31         * startup.el (tty-handle-args): Use %S to log ARGS.
33 2007-04-10  Glenn Morris  <rgm@gnu.org>
35         * dframe.el (dframe-frame-mode): Do not set auto-show-mode, since
36         it is obsolete and has no effect.
38         * dos-w32.el (default-buffer-file-type): Add defvar to quieten
39         byte-compiler.
41         * progmodes/cperl-mode.el (cperl-mode): Remove unnecessary call to
42         obsolete function make-local-hook.
44         * progmodes/dcl-mode.el (top-level): Move (require 'tempo) to
45         start to quieten byte-compiler.
47 2007-04-10  Markus Triska  <markus.triska@gmx.at>
49         * emacs-lisp/byte-opt.el (byte-optimize-char-before): Remove (move
50         to bytecomp.el as byte-compile-char-before).
51         * emacs-lisp/bytecomp.el (byte-compile-char-before):
52         New function (modified replacement for byte-optimize-char-before in
53         byte-opt.el).
55 2007-04-09  Alan Mackenzie  <acm@muc.de>
57         * startup.el (inhibit-splash-screen): Emphatically state that it
58         can't be set in site-start.el.
60 2007-04-09  Masatake YAMATO  <jet@gyve.org>
62         * progmodes/cc-subword.el (c-capitalize-subword): More closely
63         mimic the behavior of `capitalize-word'.  Do not move point with a
64         negative argument.  Based on tiny change by Paul Curry.
66 2007-04-09  Paul Curry  <dashteacup@gmail.com>  (tiny change)
68         * progmodes/cc-subword.el (c-downcase-subword, c-upcase-subword):
69         Don't move point if ARG is negative.
71 2007-04-09  Alan Mackenzie  <acm@muc.de>
73         Changes to make `narrow-to-defun' and `mark-defun' work properly
74         in CC Mode:
76         * progmodes/cc-defs.el (c-beginning-of-defun-1):
77         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
78         Bind beginning/end-of-defun-function to nil around calls to
79         beginning/end-of-defun.
81         * progmodes/cc-langs.el (beginning-of-defun-function)
82         (end-of-defun-function): New c-lang-setvar's.
84         * progmodes/cc-awk.el (c-awk-beginning-of-defun): Add "(or arg
85         (setq arg 1))" to enable non-interactive call.
87 2007-04-09  Eli Zaretskii  <eliz@gnu.org>
89         * simple.el (set-mark-command): Doc fix.
91 2007-04-09  Nick Roberts  <nickrob@snap.net.nz>
93         * progmodes/gud.el (gdb): Restore existing session if user
94         tries to start a second one in graphical mode.
96 2007-04-08  Martin Rudalics  <rudalics@gmx.at>
98         * cus-start.el <scroll-preserve-screen-position>: Add choices.
100 2007-04-08  Johan Bockg\e,Ae\e(Brd  <bojohan+news@dd.chalmers.se>
102         * term/xterm.el (terminal-init-xterm): Fix key definitions.
103         Add binding for C-M-SPC.
105 2007-04-08  Richard Stallman  <rms@gnu.org>
107         * pcomplete.el (pcomplete-read-event): One single definition,
108         and not a defsubst.
110 2007-04-08  Chong Yidong  <cyd@stupidchicken.com>
112         * progmodes/cc-cmds.el (c-end-of-defun): Tidy up, to eliminate
113         byte-compiler warning "value unused".
115 2007-04-08  Andreas Schwab  <schwab@suse.de>
117         * term/xterm.el (terminal-init-xterm): Add bindings for keypad keys.
119 2007-04-07  Glenn Morris  <rgm@gnu.org>
121         * calendar/calendar.el (diary-font-lock-keywords, diary-live-p):
122         Autoload these functions.
123         (diary-date-forms): Add a custom :set form.
125         * calendar/diary-lib.el (diary-set-maybe-redraw): Move definition
126         before first use.
127         (diary-font-lock-keywords): New function with old code for
128         initialization of variable of same name.
130 2007-04-07  David Hansen  <david.hansen@gmx.net>  (tiny change)
132         * progmodes/cc-cmds.el (c-electric-paren): Fix space-before-funcall
133         clean-up: only insert space when on identifier, etc.
135 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
137         * progmodes/grep.el (grep-find-use-xargs): Rewrite docstring.
139         * net/tls.el (open-tls-stream): Properly handle case where there
140         is no associated buffer.
142 2007-04-07  Glenn Morris  <rgm@gnu.org>
144         * ffap.el (ffap-file-at-point): Lower the priority of the
145         ffap-ftp-sans-slash-regexp check.
147 2007-04-06  Alan Mackenzie  <acm@muc.de>
149         Fix fontification of labels, and other things with ":".
151         * progmodes/cc-engine.el (c-forward-label): The function now
152         returns 'goto-target, 'qt-2kwds-colon, 'qt-1kwd-colon, as well as
153         the former t.
155         * progmodes/cc-fonts.el (c-font-lock-declarations): Interpret the
156         new return code from c-forward-label, fontifying tokens properly.
157         Add some general comments throughout the file.
159 2007-04-06  Chong Yidong  <cyd@stupidchicken.com>
161         * textmodes/flyspell.el (flyspell-duplicate, flyspell-incorrect):
162         Revert 2006-01-27 change.
164         * diff-mode.el (diff-mode): Revert 2007-03-04 change.
166         * menu-bar.el (menu-bar-tools-menu): Revert 2003-07-25 change.
168         * desktop.el (desktop-create-buffer, desktop-save):
169         Revert 2004-11-12 change for lack of copyright papers.
171         * dired-x.el (dired-guess-shell-case-fold-search): Delete var.
172         (dired-guess-default): Respect case.
174         * isearch.el (isearch-forward): Revert 1998-08-26 doc change.
176         * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Remove function;
177         was originally checked in as byte-optimize-concat on 1997-11-02.
179         * mail/sendmail.el (mail-text, mail-mode): Revert extant pieces of
180         1995-05-19 doc changes.
182 2007-04-06  Kim F. Storm  <storm@cua.dk>
184         * loadhist.el (read-feature): Reimplement.  New optional arg LOADED-P.
185         (unload-feature): Update interactive spec accordingly.
187         * progmodes/grep.el (grep-program): Remove commentary about zgrep.
189 2007-04-06  John Paul Wallington  <jpw@pobox.com>
191         * subr.el (with-case-table): Use `make-symbol' to avoid variable
192         capture.  Restore the table in the same buffer.
194         * font-lock.el (lisp-font-lock-keywords-2): Add `with-case-table'.
196 2007-04-05  Chong Yidong  <cyd@stupidchicken.com>
198         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
199         Print entire form.
201 2007-04-05  Nick Roberts  <nickrob@snap.net.nz>
203         * progmodes/gdb-ui.el (breakpoint-disabled): Tweak face (again)
204         for low-color displays.
206 2007-04-05  Glenn Morris  <rgm@gnu.org>
208         * play/5x5.el, play/animate.el, play/dissociate.el, play/doctor.el,
209         * play/gomoku.el, play/landmark.el, play/tetris.el, play/zone.el:
210         Seed random number generator on loading.
212         * emacs-lisp/authors.el (top-level): Provide self.
214         * play/animate.el (top-level): Provide self.
216 2007-04-04  Alan Mackenzie  <acm@muc.de>
218         * progmodes/cc-vars.el (c-special-indent-hook): Amend doc-string
219         to mention c-syntactic-indentation.
221 2007-04-04  Chong Yidong  <cyd@stupidchicken.com>
223         * subr.el (with-case-table): New macro.
225         * international/mule.el (ascii-case-table): New var.
227         * mail/smtpmail.el (smtpmail-via-smtp): Use ascii-case-table when
228         downcasing.
230 2007-04-03  Nick Roberts  <nickrob@snap.net.nz>
232         * progmodes/gud.el (gud-minor-mode-map): Simplify.
234         * t-mouse.el (t-mouse-make-event-element): Don't use the left edge
235         of the window if we're outside it e.g menu-bar.
237         * xt-mouse.el (xterm-mouse-event): Don't use the left edge of the
238         window if we're outside it e.g menu-bar.
240 2007-04-03  Eli Zaretskii  <eliz@gnu.org>
242         * mail/rmail.el (rmail-convert-to-babyl-format): Don't try to
243         decode base-64 encoded body if its content-type is something other
244         than text/* or message/*.
246 2007-04-03  Juanma Barranquero  <lekktu@gmail.com>
248         * simple.el (activate-mark-hook): Fix typo in docstring.
250 2007-04-03  Nick Roberts  <nickrob@snap.net.nz>
252         * tmm.el (tmm-c-prompt): Initialize.
253         (tmm-menubar): Deal with extended menu-items at top level.
254         (tmm-get-keybind): Handle bindings redefined/undefined locally.
255         (tmm-prompt): Handle visibility of top level menu-items.
257         * progmodes/gud.el (gud-menu-map): Simplify.
258         (gud-minor-mode-map): Add tool-bar like bindings to the text mode
259         menubar.
261 2007-04-02  Chong Yidong  <cyd@stupidchicken.com>
263         * mail/smtpmail.el (smtpmail-via-smtp): Revert last change.
265         * comint.el (comint-send-input): Widen the buffer first.
267         * info.el (Info-fontify-maximum-menu-size): Revert to 100000.
269 2007-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
271         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Only obey
272         emacs-lisp-docstring-fill-column in emacs-lisp-mode.
274         * newcomment.el (comment-search-forward): Discard comment starters
275         before point.
277 2007-04-01  Guanpeng Xu  <herberteuler@hotmail.com>
279         * mouse.el (mouse-set-secondary): Update mouse-secondary-overlay.
281 2007-04-01  Chong Yidong  <cyd@stupidchicken.com>
283         * mail/smtpmail.el (smtpmail-via-smtp): Use standard case table
284         when downcasing.
286         * button.el (previous-button): Rewrite to account for adjacent buttons.
288 2007-04-01  J.D. Smith  <jdsmith@as.arizona.edu>
290         * progmodes/idlwave.el (idlwave-auto-fill):
291         Revert paragraph-separate change.
293         * progmodes/idlw-shell.el (idlwave-shell-break-in):
294         Simplify module calc.
295         (idlwave-shell-set-bp-in-module): Compute module.
297 2007-03-31  Glenn Morris  <rgm@gnu.org>
299         * emacs-lisp/timer.el (run-at-time): Doc fix.
301         * emacs-lisp/warnings.el (display-warning): If we create the
302         buffer displaying the warning, disable undo there.
304 2007-03-31  Michael Albinus  <michael.albinus@gmx.de>
306         * net/tramp.el (tramp-register-file-name-handler)
307         (tramp-register-completion-file-name-handler): New defsubst,
308         derived from `tramp-register-file-name-handlers'.  The split is
309         necessary because Tramp's file name handlers must be registered at
310         different startup places.
312 2007-03-31  Chong Yidong  <cyd@stupidchicken.com>
314         * progmodes/hideshow.el (turn-off-hideshow): New function.
315         (hs-minor-mode): Use it instead of a lambda expression in
316         change-major-mode-hook.
318 2007-03-31  David Kastrup  <dak@gnu.org>
320         * woman.el (woman-Cyg-to-Win): Don't convert cons cells
321         corresponding to MANPATH_MAP entries.
322         (woman-man.conf-path, woman-parse-man.conf): Doc fix.
323         (woman-parse-man.conf): Use more discriminating man.conf name.
324         (woman-parse-man.conf): Parse MANPATH_MAP entries.
325         (woman-manpath): Doc fix and type fix.
326         (woman-cached-data): Check for MANPATH_MAP entries.
327         (woman-expand-directory-path): Treat MANPATH_MAP entries.
329 2007-03-31  Stuart Herring  <herring@lanl.gov>
331         * emacs-lisp/sregex.el (sregexq): Doc fix.
333 2007-03-31  Markus Triska  <markus.triska@gmx.at>
335         * flymake.el (flymake-err-line-patterns): Doc fix.
337 2007-03-30  Reiner Steib  <Reiner.Steib@gmx.de>
339         * info.el (info-tool-bar-map): Use "exit" for Info-exit.
340         Move to the right.
342 2007-03-30  Alan Mackenzie  <acm@muc.de>
344         * progmodes/cc-cmds.el (c-forward-to-nth-EOF-}): Fix EOB bug.
346 2007-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
348         * emacs-lisp/ewoc.el (ewoc--insert-new-node): Take additional arg DLL.
349         Use it, passed in explicitly, instead of from the dynamic binding.
350         (ewoc-create, ewoc-enter-before): Update to use new call sequence.
352 2007-03-30  Juanma Barranquero  <lekktu@gmail.com>
354         * simple.el (blink-matching-open): When in minibuffer, don't
355         search for a match inside the prompt.
357 2007-03-30  Nick Roberts  <nickrob@snap.net.nz>
359         * tmm.el (tmm-menubar): Select the right menu item with the mouse.
360         (tmm-prompt): Don't make the mouse user select the first menu
361         item twice.
363 2007-03-30  Chong Yidong  <cyd@stupidchicken.com>
365         * eshell/esh-proc.el (eshell/kill): Tweak regexp to recognize
366         SIGUSR1 and SIGUSR2.
368 2007-03-29  Kim F. Storm  <storm@cua.dk>
370         * ido.el (ido-read-internal): When reading file or dir, only override
371         minibuffer-local-filename-completion-map, otherwise only override
372         minibuffer-local-completion-map.
374 2007-03-29  Glenn Morris  <rgm@gnu.org>
376         * complete.el (partial-completion-mode): Set PC-do-completion-end
377         to nil after use.
378         (PC-lisp-complete-symbol): Create and use a marker at `end',
379         rather than using point-marker.
381 2007-03-28  Chong Yidong  <cyd@stupidchicken.com>
383         * simple.el (next-error-highlight): Doc fix.
384         (compose-mail): Revert 2007-03-19 change.
386 2007-03-28  Richard Stallman  <rms@gnu.org>
388         * emacs-lisp/edebug.el (edebug-display): Don't go to
389         edebug-outside-buffer if it is dead.
391 2007-03-28  Juanma Barranquero  <lekktu@gmail.com>
393         * view.el (view-mode): Fix typos in docstring.
395 2007-03-28  Stephen Berman  <Stephen.Berman@gmx.net>
397         * recentf.el (recentf-save-file): Add a custom :set function.
399 2007-03-28  Glenn Morris  <rgm@gnu.org>
401         * complete.el (PC-do-completion-end): New variable.
402         (partial-completion-mode) <choose-completion-string-functions>:
403         Use PC-do-completion-end in the non-minibuffer case to replace the
404         correct amount of text.
405         (PC-do-completion): Set PC-do-completion-end for c-c-s-f.
406         (PC-lisp-complete-symbol): Give marker the after-insertion type,
407         to deal with improvements inserted after point.
409 2007-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
411         * button.el (make-text-button): Add explicit `button' property.
412         (default-button): Don't put a `button' property on it.
414         * progmodes/python.el (python-mode): Skip comments when parsing.
416         * vc-arch.el (vc-with-current-file-buffer): New macro.
417         (vc-arch-file-source-p): Use it to avoid infloop.
419 2007-03-28  David Hansen  <david.hansen@gmx.net>  (tiny change)
421         * emacs-lisp/lisp.el (lisp-complete-symbol):
422         Fix call to get-buffer-window to find windows in other frames.
424 2007-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
426         * comint.el (comint-proc-query, comint-dynamic-list-completions):
427         Fix calls to get-buffer-window to find windows in other frames.
428         Reported by David Hansen <david.hansen@gmx.net>.
430 2007-03-27   Kevin Ryde  <user42@zip.com.au>
432         * info.el (Info-display-images-node): On a text-only terminal,
433         show the "text" or "alt" parts of the image blobs.
435 2007-03-27  Glenn Morris  <rgm@gnu.org>
437         * complete.el (PC-do-completion): Compute completion-base-size in
438         the non-filename case, rather than setting to nil.
439         (PC-lisp-complete-end): New variable.
440         (PC-lisp-complete-symbol): Use PC-lisp-complete-end to store the
441         original end in a series of consecutive invocations.
443         * calendar/calendar.el (calendar-mode-hook): Declare it.
445         * calendar/diary-lib.el (diary-live-p): Do not check for
446         diary-selective-display.
448 2007-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
450         * replace.el (occur-next-error): *Occur* might not be displayed in the
451         selected frame.  Reported by David Hansen <david.hansen@gmx.net>.
453 2007-03-26  Richard Stallman  <rms@gnu.org>
455         * textmodes/flyspell.el (flyspell-large-region):
456         Use ispell-call-process-region.
458 2007-03-26  Johan Bockg\e,Ae\e(Brd  <bojohan+sf@dd.chalmers.se>
460         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
461         Use prin1 instead of princ.
463 2007-03-25  Chong Yidong  <cyd@stupidchicken.com>
465         * faces.el (face-set-after-frame-default): Revert 2007-03-10 change.
466         Merge in X resources before global face.
468         * progmodes/compile.el (compilation-start): Save compilation-directory
469         rather than default-directory as local var.
470         (compilation-directory): Mark as safe local var.
472         * files.el: Don't mark default-directory as a safe local var.
474 2007-03-25  Alan Mackenzie  <acm@muc.de>
476         * progmodes/cc-mode.el (c-before-change): Fix BOB bug.
477         * progmodes/cc-engine.el: Fix typo.
479 2007-03-25  Juri Linkov  <juri@jurta.org>
481         * compare-w.el (compare-windows): Rename customization group
482         `compare-w' to `compare-windows'.
483         (compare-windows-whitespace, compare-ignore-whitespace)
484         (compare-ignore-case, compare-windows-sync)
485         (compare-windows-sync-string-size, compare-windows-recenter)
486         (compare-windows-highlight, compare-windows): Change group name in
487         the `group' tag from `compare-w' to `compare-windows'.
488         (compare-windows-sync): Add option `nil' for no sync.  Doc fix.
490 2007-03-24  Markus Triska  <markus.triska@gmx.at>
492         * expand.el: Change example to always enable abbrev-mode,
493         and remove redundant `function'.
494         (expand-abbrev-hook): Add autoload cookie.
496 2007-03-24  Ryan Yeske  <rcyeske@gmail.com>
498         * emacs-lisp/testcover.el (testcover-start, testcover-end)
499         (testcover-mark-all, testcover-unmark-all): Add prompts to
500         interactive specs.
502 2007-03-24  Jason Rumney  <jasonr@gnu.org>
504         * autorevert.el (find-file-hook, auto-revert-tail-mode):
505         Use file size in bytes for auto-revert-tail-pos not characters.
507 2007-03-24  Thien-Thi Nguyen  <ttn@gnu.org>
509         * vc-rcs.el (vc-rcs-annotate-command):
510         Set text property :vc-annotate-prefix on the annotation text.
511         (vc-rcs-annotate-time): Instead of searching for ": ",
512         search for end of text propertized with :vc-annotate-prefix.
514 2007-03-24  Martin Rudalics  <rudalics@gmx.at>
516         * whitespace.el (top level): Remove calls putting
517         permanent-local nil property since these are no-ops.
519         * man.el (Man-support-local-filenames): Assure that
520         default-directory exists when doing call-process.
522 2007-03-23  David Vazquez  <xeos00@gmail.com>  (tiny change)
524         * progmodes/m4-mode.el (m4-m4-buffer, m4-m4-region):
525         Fix omission bug: Use m4-program-options to construct shell command.
527 2007-03-23  David Kastrup  <dak@gnu.org>
529         * progmodes/cc-mode.el (c-make-emacs-variables-local):
530         Use `mapcar' rather than `mapcan' to silence compiler warning.
532 2007-03-22  Ralf Angeli  <angeli@caeruleus.net>
534         * textmodes/reftex.el, textmodes/reftex-vars.el,
535         * textmodes/reftex-toc.el, textmodes/reftex-sel.el,
536         * textmodes/reftex-ref.el, textmodes/reftex-parse.el,
537         * textmodes/reftex-index.el, textmodes/reftex-global.el,
538         * textmodes/reftex-dcr.el, textmodes/reftex-cite.el,
539         * textmodes/reftex-auc.el: Add maintainer address.
541 2007-03-22  Carsten Dominik  <dominik@science.uva.nl>
543         * textmodes/org.el (org-agenda-mode, org-table-edit-formulas):
544         Make sure that `global-font-lock-mode' does not turn on font-lock
545         in these buffers.
547 2007-03-21  Kim F. Storm  <storm@cua.dk>
549         * xt-mouse.el (xt-mouse-epoch): New variable.
550         (xterm-mouse-event): Use float-time.
552 2007-03-21  Nick Roberts  <nickrob@snap.net.nz>
554         * xt-mouse.el (xterm-mouse-event): Compute a timestamp using
555         current-time.
557 2007-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
559         * complete.el (read-file-name-internal): Don't add the final > if the
560         completion is not finished (re-application of this patch, which was
561         accidentally undone by Eli).
563 2007-03-21  Chong Yidong  <cyd@stupidchicken.com>
565         * emulation/viper.el (viper-non-hook-settings): Handle mouse
566         clicks in describe-key and describe-key-briefly advice a little better.
568 2007-03-21  Juanma Barranquero  <lekktu@gmail.com>
570         * server.el (server-process-filter): Cancel any pending isearch.
572 2007-03-21  Ulf Jasper  <ulf.jasper@web.de>
574         * calendar/icalendar.el (icalendar-version): Increase to 0.15.
575         (icalendar--get-unfolded-buffer): Define actual arguments rather
576         than just using &rest.  Check replace-in-string is fbound.
577         (icalendar-import-buffer): Doc fix.
578         (icalendar--convert-ical-to-diary): Set diary-file.
579         Check diary-file before inserting final newline.
580         (icalendar--add-diary-entry): Return diary-file.
582 2007-03-21  Glenn Morris  <rgm@gnu.org>
584         * calendar/calendar.el (diary-set-maybe-redraw): Autoload it.
585         (diary-display-hook): Add custom :set function.
587         * calendar/diary-lib.el (diary-header-line-flag): Doc fix.
588         Add custom :set function.
589         (diary-header-line-format): Doc fix.
590         (diary-set-maybe-redraw): New function.
591         (number-of-diary-entries): Change :set to use diary-set-maybe-redraw.
592         (diary-list-entries): Always run diary-mode.
594 2007-03-20  David Kastrup  <dak@gnu.org>
596         * files.el (magic-mode-alist): Require literal "%!PS" string for
597         magic postscript file detection.
599 2007-03-20  Richard Stallman  <rms@gnu.org>
601         * textmodes/ispell.el (ispell-call-process): New function.
602         Defends against bad `default-directory.'
603         (ispell-check-version, ispell-find-aspell-dictionaries)
604         (ispell-get-aspell-config-value, lookup-words): Call it.
605         (ispell-call-process-region): New function.
606         (ispell-send-string): Call it.
608 2007-03-20  Andreas Schwab  <schwab@suse.de>
610         * Makefile.in (custom-deps): Depend on $(lisp)/subdirs.el.
611         (finder-data): Likewise.
612         (autoloads): Likewise.
614 2007-03-20  Martin Rudalics  <rudalics@gmx.at>
616         * files.el (basic-save-buffer): Do not set visited filename when
617         the corresponding directory does not exist or the specified
618         filename is that of an existing directory.
620 2007-03-20  Glenn Morris  <rgm@gnu.org>
622         * calendar/diary-lib.el (diary-live-p): New function.
623         (number-of-diary-entries): Add a :set function to redisplay diary
624         when necessary.
626 2007-03-19  Nick Roberts  <nickrob@snap.net.nz>
628         * t-mouse.el (t-mouse-make-event-element): Use timestamp output
629         from client program, mev, to compute mouse event.
631 2007-03-19  Chong Yidong  <cyd@stupidchicken.com>
633         * faces.el (momentary): Face removed; unused due to reversion of
634         2007-01-04 changes by Kevin Rodgers.
636         * mouse.el (mouse-drag-track): Remove spurious input-pending-p test.
637         Suggested by Johan Bockg\e,Ae\e(Brd.
639 2007-03-19  Martin Rudalics  <rudalics@gmx.at>
641         * font-lock.el (lisp-font-lock-keywords-1):
642         Highlight define-globalized-minor-mode as a keyword.
644 2007-03-19  Kim F. Storm  <storm@cua.dk>
646         * calc/calc-forms.el (math-std-daylight-savings)
647         (math-std-daylight-savings-old): Doc fix.
649 2007-03-19  Juanma Barranquero  <lekktu@gmail.com>
651         * progmodes/python.el (python-default-template): Doc fix.
652         (python-buffer): Fix typo in docstring.
654         * isearchb.el (isearchb-follow-char):
655         * subr.el (def-edebug-spec): Fix typo in docstring.
657 2007-03-19  Richard Stallman  <rms@gnu.org>
659         * files.el (default-directory): Mark safe.
660         (basic-save-buffer-2): Put proper dir name in error message.
662         * simple.el (compose-mail): Run switch-function after
663         setting up the mail buffer.
665         * startup.el (inhibit-splash-screen, initial-major-mode): Doc fixes.
667 2007-03-18  Jay Belanger  <belanger@truman.edu>
669         * calc/calc-forms.el (math-parse-date): Fix a regular expression.
670         (math-std-daylight-savings-new): Rename from
671         `math-std-daylight-savings'.
672         (math-std-daylight-savings-old): Rename from old value of
673         `math-std-daylight-savings'.
674         (math-std-daylight-savings): Use `math-std-daylight-savings-new' or
675         `math-std-daylight-savings-old' depending on the year.
677 2007-03-18  Detlev Zundel  <dzu@gnu.org>
679         * emacs-lisp/re-builder.el (reb-update-overlays): Do not mark
680         zero-width regexps as invalid but rather at least count them correctly.
682 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
684         * net/tls.el (open-tls-stream): In handshake-waiting loop,
685         don't wait more if there is output available to process.
687 2007-03-18  Nick Roberts  <nickrob@snap.net.nz>
689         * progmodes/compile.el (compilation-find-file): Revert change
690         from 2006-07-18 to allow completion of directory names.
691         Reported by John Carter <john.carter@tait.co.nz>.
693 2007-03-18  Kim F. Storm  <storm@cua.dk>
695         * subr.el (when, unless): Doc fix.
697 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
699         * net/tls.el (tls-program): Doc fix.
701 2007-03-17  Denis Bueno  <dbueno@gmail.com>  (tiny change)
703         * autorevert.el (auto-revert-tail-handler):
704         Call after-revert-hook.
706 2007-03-17  Ryan Yeske  <rcyeske@gmail.com>
708         * simple.el (switch-to-completions): No error if search for \n\n fails.
710 2007-03-17  Chong Yidong  <cyd@stupidchicken.com>
712         * simple.el (line-move-1):
713         Respect `inhibit-line-move-field-capture' property.
715 2007-03-13  Chong Yidong  <cyd@stupidchicken.com>
717         * comint.el (comint-arguments): Mark backslash-escaped chars.
718         (comint-delim-arg): Don't treat them as delimiters.
720 2007-03-12  Kim F. Storm  <storm@cua.dk>
721         * ido.el (ido-init-completion-maps): Remap delete-backward-char.
723 2007-03-12  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
725         * tempo.el (tempo-insert): Deal with 'r> if it appears
726         specified with a prompt argument.
728 2007-03-12  Carsten Dominik  <dominik@science.uva.nl>
730         * textmodes/org.el (org-set-font-lock-defaults):
731         Handle narrow table columns correctly.
733 2007-03-12  Mark A. Hershberger  <mah@everybody.org>
735         * xml.el (xml-parse-tag, xml-parse-string, xml-parse-attlist)
736         (xml-parse-dtd, xml-parse-elem-type, xml-substitute-special):
737         Return to use of the -no-properties variants.  There was
738         consensus on emacs-devel that the speed of these variants was
739         prefered since we are usually parsing files (from the internet
740         or on disk) instead of XML created in Emacs.
742         * eshell/esh-mode.el (eshell-handle-ansi-color): New function.
743         Add customize option.
745 2007-03-12  Glenn Morris  <rgm@gnu.org>
747         * calc/calc-forms.el (math-std-daylight-savings): Switch to new
748         North American rule.  Replace "daylight savings" with "daylight
749         saving" in doc.
751         * calendar/cal-china.el,cal-dst.el,calendar.el,diary-lib.el:
752         * calendar/lunar.el,solar.el: Replace "daylight savings" with
753         "daylight saving" in text.
755         * woman.el (woman-change-fonts): Tweak previous change by using
756         woman-request-regexp rather than "^\\.".
758         * startup.el (command-line-1): Make insertion of
759         initial-scratch-message not depend on scratch being selected.
761 2007-03-11  Juri Linkov  <juri@jurta.org>
763         * replace.el (match): Use yellow background on light-bg terminals.
765 2007-03-11  Richard Stallman  <rms@gnu.org>
767         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
768         Correctly compute line number.
770 2007-03-11  Guanpeng Xu  <herberteuler@hotmail.com>
772         * type-break.el (type-break-get-previous-count):
773         Repeat previous change here.
775 2007-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
777         * progmodes/grep.el (grep-find-ignored-directories):
778         Add .git and .bzr to list.
780 2007-03-11  Andreas Schwab  <schwab@suse.de>
782         * diff-mode.el (diff-apply-hunk): Use proper format string for error.
784 2007-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
786         * mail/emacsbug.el (report-emacs-bug): Don't hard code the "X" name.
788 2007-03-10  Chong Yidong  <cyd@stupidchicken.com>
790         * faces.el (face-set-after-frame-default): Recalculate face
791         customizations after applying X resources.
793 2007-03-10  Ryan Yeske  <rcyeske@gmail.com>
795         * net/rcirc.el (rcirc-timeout-seconds): New variable.
796         (rcirc-keepalive-seconds): Remove variable.
797         (rcirc-server-name, rcirc-timeout-timer, rcirc-connecting)
798         (rcirc-process, rcirc-user-disconnect): New variables.
799         (rcirc-connect): Initalize new variables.
800         (rcirc-keepalive): Don't send keepalive pings before connection
801         is completed.
802         (rcirc-sentinel): Do mark all channels with activity when
803         connection is dropped.  Run hook with process buffer local.
804         (rcirc-reschedule-timeout, rcirc-delete-process): New functions.
805         (rcirc-buffer-process): Return value of rcirc-process if
806         rcirc-server-buffer is nil.
807         (rcirc-server-name): Return the reported server name.
808         (rcirc-update-prompt): Simplify computation of the server name.
809         (rcirc-format-response-string): Likewise.
810         (rcirc-handler-001): Mark server as connected, record the reported
811         server name, and schedule a timeout.
812         (rcirc-track-nick): Add a spec for the tty class.
813         (rcirc-user-non-nick): Remove function.
814         (rcirc-nick-prefix-chars): Add variable.
815         (rcirc-user-nick): Use above variable.
817 2007-03-10  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
819         * icomplete.el (icomplete-tidy, icomplete-exhibit):
820         Bind deactivate-mark to nil.
822 2007-03-10  Martin Rudalics  <rudalics@gmx.at>
824         * complete.el (PC-do-completion): Bind dirlength to nil to avoid
825         that buffer contents get erased during completion.
827 2007-03-10  Glenn Morris  <rgm@gnu.org>
829         * woman.el (woman-change-fonts): Add a hack to deal with
830         font-escape followed by "." at start of a line.
831         (woman2-IP): Add a hack to deal with consecutive requests.
832         (woman2-tagged-paragraph): Extend existing hack to handle "sp".
834 2007-03-10  Alan Mackenzie  <acm@muc.de>
836         * progmodes/cc-mode.el (c-before-change): Wrap in save-match-data.
838 2007-03-09  Richard Stallman  <rms@gnu.org>
840         * abbrev.el (abbrev): Add `provide'.
842 2007-03-09  Thien-Thi Nguyen  <ttn@gnu.org>
844         * net/ange-ftp.el (ange-ftp-try-passive-mode): Doc fix.
846 2007-03-09  Martin Rudalics  <rudalics@gmx.at>
848         * complete.el (PC-try-completion): New function.
849         (PC-do-completion, read-file-name-internal): Use it instead of
850         try-completion.
852 2007-03-08  Alan Mackenzie  <acm@muc.de>
854         Remove stale tokens from `c-found-types' cache.
856         * progmodes/cc-mode.el (c-unfind-enclosing-token)
857         (c-unfind-coalesced-tokens, c-before-change): New functions.
858         (c-maybe-stale-found-type): New variable.
860         * progmodes/cc-engine.el (c-partial-ws-p, c-unfind-type)
861         (c-trim-found-types): New functions.
863 2007-03-08  Stefan Monnier  <monnier@iro.umontreal.ca>
865         * smerge-mode.el (smerge-remove-props): Don't mark the buffer modified.
866         (debug-ignored-errors): Add entry from smerge-match-conflict.
868 2007-03-08  J.D. Smith  <jdsmith@as.arizona.edu>
870         * progmodes/idlw-help.el (idlwave-do-context-help1): Don't visit
871         special help topics for keywords.
872         (idlwave-help-assistant-command): Include ".exe" for ms-dos
873         etc. Assistant command.
875 2007-03-08  Chong Yidong  <cyd@stupidchicken.com>
877         * replace.el (occur-engine): Move buffer-undo-list binding...
878         (occur-1): ...to here.
880         * complete.el (PC-bindings): Rebind M-TAB in read-expression-map.
882         * simple.el (minibuffer-completing-symbol): New var.
883         (eval-expression): Use it.
884         (completion-setup-function): Don't bind completion-base-size when
885         completing a symbol in the minibuffer.
887 2007-03-08  Nick Roberts  <nickrob@snap.net.nz>
889         * progmodes/gud.el (gdb): Pop up current GUD buffer if user
890         tries to start a second session in graphical mode.
892 2007-03-07  Miles Bader  <miles@gnu.org>
894         * international/isearch-x.el
895         (isearch-process-search-multibyte-characters):
896         Strip text-properties from PROMPT to avoid an error from read-string.
898 2007-03-07  Kim F. Storm  <storm@cua.dk>
900         * complete.el (PC-bindings): Remap lisp-complete-symbol to
901         PC-lisp-complete-symbol instead of binding M-TAB in global-map.
903 2007-03-07  Micha\e,Ak\e(Bl Cadilhac  <michael@cadilhac.name>
905         * complete.el (PC-do-completion): Delete duplicates in the list of
906         possible completions.
908 2007-03-07  Glenn Morris  <rgm@gnu.org>
910         * ses.el (ses-mode): Doc fix.
912 2007-03-06  Kim F. Storm  <storm@cua.dk>
914         * isearch.el (isearch-message-prefix): Undo 2007-03-01 change.
916 2007-03-06  Kenichi Handa  <handa@m17n.org>
918         * term/x-win.el (x-select-utf8-or-ctext): Improve the strategy.
920 2007-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
922         * simple.el (completion-setup-function): Improve last fix so it doesn't
923         set it to a relative directory name either.
925 2007-03-05  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
927         * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
929 2007-03-05  Richard Stallman  <rms@gnu.org>
931         * emacs-lisp/re-builder.el (reb-re-syntax): Fix custom type.
933         * files.el (find-file-noselect): No error if file no longer exists.
934         Display a message and avoid other questions.
936 2007-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
938         * pcomplete.el (pcomplete-show-completions): Improve last change, so
939         as not to use an invisible window and to create a window if none exist.
941         * progmodes/python.el (python-send-command): Restart proc if necessary.
942         (python-proc): Simplify.
944 2007-03-05  David Hansen  <david.hansen@gmx.net>  (tiny change)
946         * pcomplete.el (pcomplete-show-completions): Search all frames for
947         completions buffer.
949 2007-03-05  Chong Yidong  <cyd@stupidchicken.com>
951         * cus-edit.el (customize-save-variable): Clear customized-value
952         property (saved values are now put in theme-value property).
953         (customize-set-variable): Doc fix.
955         * complete.el (PC-do-completion): If completion-ignore-case is
956         non-nil, replace field with completion string before exiting.
958 2007-03-05  Michael Albinus  <michael.albinus@gmx.de>
960         * net/tramp.el (tramp-make-temp-file): New parameter FILENAME.
961         Append its extension to the resulting temporary file name.
962         (tramp-handle-file-local-copy, tramp-handle-write-region): Apply it.
964         * net/tramp-smb.el (tramp-smb-handle-file-local-copy)
965         (tramp-smb-handle-write-region): Apply it.
967 2007-03-05  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
969         * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
970         Redo previous change.
972 2007-03-04  Kevin Rodgers  <kevin.d.rodgers@gmail.com>  (tiny change)
974         * diff-mode.el (diff-mode): Doc fix.
976 2007-03-05  Kenichi Handa  <handa@m17n.org>
978         * international/characters.el: Set category `l' (latin)
979         for more characters.
981 2007-03-04  Kim F. Storm  <storm@cua.dk>
983         * emacs-lisp/authors.el (authors-aliases): Add alias.
985 2007-03-04  Glenn Morris  <rgm@gnu.org>
987         * progmodes/hideshow.el (hs-minor-mode): Turn mode off and show
988         all when switching major mode.
989         (hs-minor-mode, hs-c-start-regexp, hs-block-start-regexp)
990         (hs-block-start-mdata-select, hs-block-end-regexp)
991         (hs-forward-sexp-func, hs-adjust-block-beginning):
992         Do not make these variables permanent-local.
994 2007-03-04  Richard Stallman  <rms@gnu.org>
996         * progmodes/cperl-mode.el (cperl-mode):
997         Modify cperl-compilation-error-regexp-alist by appending.
999         * emacs-lisp/edebug.el (edebug-kill-buffer): New function.
1000         (edebug-mode): Add the hook.
1001         (edebug-recursive-edit): Remove the hook on exiting.
1003         * type-break.el (type-break-get-previous-time):
1004         Handle end-of-file errors specially
1005         so they don't get reported wrong in .emacs.
1007         * startup.el (fancy-splash-text): Clarify text.
1009         * simple.el (beginning-of-buffer, end-of-buffer):
1010         Avoid treating plain C-u like numeric arg.
1012         * simple.el (completion-setup-function): Don't set
1013         default-directory to nil.
1015         * shell.el (shell-dirstack-query): Doc fix.
1017         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
1018         Don't select the window -- pass it to primitives instead.
1020         * faces.el (minibuffer-prompt): Use medium blue by default.
1022 2007-03-04  David Kastrup  <dak@gnu.org>
1024         * jit-lock.el (jit-lock-stealth-time): Change default to nil.
1025         Preserve 16 as default value for "seconds" when customizing.
1027 2007-03-04  Carsten Dominik  <dominik@science.uva.nl>
1029         * textmodes/org.el (org-self-insert-command)
1030         (orgtbl-self-insert-command, org-delete-char)
1031         (org-delete-backward-char): Set the `flyspell-delayed' property.
1033 2007-03-03  Chong Yidong  <cyd@stupidchicken.com>
1035         * international/mule.el (find-auto-coding): Don't search for
1036         line-ending characters past the end of the tail.
1038 2007-03-03  Christopher Allan Webber  <cwebber@dustycloud.org>  (tiny change)
1040         * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
1041         Jump to the line where new score has been uploaded.
1043         * play/tetris.el (tetris-move-bottom, tetris-move-left)
1044         (tetris-move-right, tetris-rotate-prev, tetris-rotate-next):
1045         Do nothing when the game is paused.
1047 2007-03-03  Carsten Dominik  <dominik@science.uva.nl>
1049         * textmodes/org.el (org-set-tags): Prevent slipping of point
1050         during completion.
1052 2007-03-01  Lennart Borgman  <lennart.borgman.073@student.lu.se>
1054         * isearch.el (isearch-message-prefix):
1055         Use minibuffer-prompt-properties.
1057 2007-03-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1059         * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
1060         (ps-setup): Print which Emacsen is running ps-print package.
1062 2007-03-01  Stuart Herring  <herring@lanl.gov>
1064         * files.el (set-auto-mode-0): Use `indirect-function'.
1065         (hack-one-local-variable): Don't reapply current major mode.
1067 2007-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1069         * progmodes/python.el (python-quote-syntax): Don't bother with
1070         syntax-ppss-context.
1071         (python-fill-paragraph): Make sure that fenced-string delimiters that
1072         stand on their own line stay there
1074 2007-03-01  Lennart Borgman  <lennart.borgman.073@student.lu.se>
1076         * replace.el (perform-replace): Propertize message.
1078 2007-03-01  Carsten Dominik  <dominik@science.uva.nl>
1080         * textmodes/org.el (org-prepare-agenda-buffers): Also check for
1081         invisible heading.
1083 2007-02-28  Chong Yidong  <cyd@stupidchicken.com>
1085         * net/tramp.el (tramp-file-name-handler): Revert last change.
1087 2007-02-28  Nick Roberts  <nickrob@snap.net.nz>
1089         * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump):
1090         Correct doc strings.
1092 2007-02-28  Chong Yidong  <cyd@stupidchicken.com>
1094         * replace.el (perform-replace): Undo forward-char immediately if
1095         non-adjacent search fails.
1097 2007-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1099         * version.el (emacs-major-version, emacs-minor-version):
1100         string-to-int -> string-to-number.
1102 2007-02-28  Juanma Barranquero  <lekktu@gmail.com>
1104         * help.el (where-is): Fail gracefully when not passed a command.
1106 2007-02-28  Stuart Herring  <herring@lanl.gov>
1108         * find-lisp.el (find-lisp-default-directory-predicate):
1109         Fix bug: Do symlink check on expanded filename.
1111 2007-02-28  Carsten Dominik  <dominik@science.uva.nl>
1113         * textmodes/org.el (org-set-tags, org-table-get-field): Avoid case
1114         changes during replacement.
1115         (org-agenda-mode-map): Add default binding for `org-agenda-archive'.
1117 2007-02-28  Lars Hansen  <larsh@soem.dk>
1119         * desktop.el: Delete header line listing me as maintainer.
1121 2007-02-28  Glenn Morris  <rgm@gnu.org>
1123         * tutorial.el (tutorial--describe-nonstandard-key): Tweak text in
1124         the menus case.
1126 2007-02-28  Chong Yidong  <cyd@stupidchicken.com>
1128         * net/tramp.el (tramp-file-name-handler): Inhibit modification
1129         hooks to avoid confusion when combining after-change calls.
1131 2007-02-27  Ken Manheimer  <ken.manheimer@gmail.com>
1133         * allout.el (allout-encrypt-string): Remove inhibition of gpg-agent,
1134         now that pgg-gpg-process-region correctly honors passed-in passphrase.
1135         (allout-distinctive-bullets-string): Add info about bullet conventions.
1136         (allout-mode): Add info about distinctive vs plain bullets.
1138 2007-02-27  Carsten Dominik  <dominik@science.uva.nl>
1140         * textmodes/org.el (org-archive-subtree): Quote variable name.
1141         (org-agenda-get-todos): Make sure skip properties are checked correctly.
1143 2007-02-26  Nick Roberts  <nickrob@snap.net.nz>
1145         * progmodes/gud.el (gud-bashdb-history, gud-bashdb-marker-filter)
1146         (gud-bashdb-command-name, bashdb): Remove.
1147         (gud, gud-menu-map): Remove references to bash/bashdb.
1149 2007-02-26  Andrey Zhdanov  <susuman@hotmail.com>  (tiny change)
1151         * progmodes/gud.el (gud-pdb-marker-regexp): Add optional <module>
1152         keyword for Python 2.5.
1154 2007-02-26  Romain Francoise  <romain@orebokech.com>
1156         * net/net-utils.el (whois-server-tld): Update server for .org.
1157         (whois-server-list): Add whois.publicinterestregistry.net.
1158         (whois-guess-server): Fix formatting in docstring.
1160 2007-02-26  Kim F. Storm  <storm@cua.dk>
1162         * mouse.el (mouse-show-mark): Run hooks and perform command
1163         remapping for mouse-region-delete-keys.
1165 2007-02-26  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
1167         * font-core.el (font-lock-mode): Doc fix.
1169 2007-02-25  Kim F. Storm  <storm@cua.dk>
1171         * ido.el (ido-buffer-internal): Set this-command to fallback command.
1172         Add selected buffer to buffer-name-history.
1173         (ido-file-internal): Set this-command to fallback command.
1174         Add file names to file-name-history.
1176         * emacs-lisp/map-ynp.el (map-y-or-n-p):
1177         Apply minibuffer-prompt-properties.
1179 2007-02-25  Andreas Schwab  <schwab@suse.de>
1181         * files.el (hack-one-local-variable-eval-safep): Correct handling
1182         of edebug-form-spec property value.  Reported by Johan Bockg\e,Ae\e(Brd.
1184 2007-02-25  Carsten Dominik  <dominik@science.uva.nl>
1186         * textmodes/org.el (org-table-overlay-coordinates)
1187         (org-table-toggle-coordinate-overlays): New functions.
1188         (org-table-overlay-coordinates, org-table-coordinate-overlays):
1189         New variables.
1190         (org-startup-with-deadline-check): Remove option.
1191         (org-mode): Remove deadline check on startup.
1192         (org-table-limit-column-width): Remove option.
1193         (org-table-formula-numbers-only): Remove option.
1194         (org-link-style, org-link-format): Remove options.
1195         (org-select-agenda-window, org-fit-agenda-window): Remove options.
1196         (org-export-ascii-show-new-buffer)
1197         (org-export-html-show-new-buffer): Remove options.
1198         (org-activate-links): Remove camel option.
1199         (org-file-link-context-use-camel-case): Remove option.
1200         (org-camel-regexp): Remove variable.
1201         (org-activate-camels): Remove function.
1202         (org-store-link): Remove Camel stuff.
1203         (org-make-org-heading-camel): Remove function.
1204         (org-open-at-point): Remove camel stuff.
1205         (org-link-search): Remove camel stuff.
1206         (org-camel-to-words): Function removed.
1207         (org-get-agenda-file-buffer): Make sure we prepare the base
1208         buffers, not any indirect buffers.
1209         (org-sort-entries): Sort top-level when not on a headline, and no
1210         active region.
1211         (org-in-regexp): New function.
1212         (org-search-not-self): Rename from `org-search-not-link'.
1213         (org-open-link-marker): New variable.
1214         (org-open-at-point): Set `org-open-link-marker'.
1215         (org-print-icalendar-entries): Fixe bug with excluding DONE
1216         entries from the exported list.
1217         (org-edit-formula-lisp-indent): New command.
1218         (orgtbl-to-texinfo, orgtbl-to-html): New functions.
1219         (orgtbl-to-latex, orgtbl-insert-radio-table)
1220         (orgtbl-toggle-comment, orgtbl-send-table): New functions.
1221         (orgtbl-radio-table-templates): New option.
1222         (org-store-link-props):
1223         (org-remember-templates): More possibilities to insert info
1224         into templates.
1225         (org-remember-apply-template): Make use of the extended
1226         template capabilities.
1227         (org-remember-redo-template): New command.
1228         (org-upgrade-old-links)
1229         (org-table-modify-formulas, org-table-replace-in-formulas)
1230         (org-table-find-dataline)
1231         (org-table-get-vertical-vector): Remove functions.
1232         (org-table-remove-rectangle-highlight)
1233         (org-time-stamp-format, org-toggle-log-option)
1234         (org-table-highlight-rectangle)
1235         (org-table-iterate, org-table-make-reference):
1236         (org-translate-time, org-tree-to-indirect-buffer)
1237         (org-table-field-info, org-table-fix-formulas)
1238         (org-table-force-dataline, org-table-get-descriptor-line)
1239         (org-table-get-range)
1240         (org-skip-comments, org-sort)
1241         (org-sort-entries, org-sublist, org-table-add-rectangle-overlay)
1242         (org-table-current-dline, org-table-current-field-formula)
1243         (org-table-edit-backward-field)
1244         (org-table-edit-formulas-post-command)
1245         (org-table-edit-line-down, org-table-edit-line-up)
1246         (org-agenda-archive)
1247         (org-agenda-clock-cancel)
1248         (org-agenda-clock-out, org-agenda-list-stuck-projects)
1249         (org-agenda-open-link, org-agenda-show-new-time)
1250         (org-agenda-skip-subtree-when-regexp-matches)
1251         (org-agenda-tree-to-indirect-buffer, org-agenda-undo)
1252         (org-at-regexp-p, org-auto-repeat-maybe, org-check-log-option)
1253         (org-do-sort, org-file-image-p, org-find-overlays)
1254         (org-find-row-type, org-get-indirect-buffer, org-get-repeat)
1255         (org-highlight-until-next-command, org-isearch-end)
1256         (org-match-any-p, org-next-link, org-previous-link):
1257         (org-remove-subtree-entries-from-agenda, org-replace-escapes)
1258         (org-rewrite-old-row-references)
1259         (org-isearch-post-command)
1260         (org-table-edit-move, org-table-edit-next-field)
1261         (org-table-edit-scroll, org-table-edit-scroll-down)
1262         (org-set-frame-title, org-show-reference)
1263         (org-unhighlight-once, org-verify-change-for-undo): New functions.
1264         (org-show-variable): Remove command.
1265         (org-add-log-maybe): New arguments STATE, FINDPOS
1266         (org-table-sort-lines): Rewrite from scratch.
1267         (org-link-search): New argument AVOID-POS.
1268         (org-print-icalendar-entries): Remove argument CATEGORY.
1269         (org-run-agenda-series): Remove argument WONDOW.
1270         (org-next-link, org-previous-link): New commands.
1271         (org-agenda-date-format): New option.
1272         (org-table-iterate): New command.
1273         (org-table-modify-formulas)
1274         (org-table-replace-in-formulas): Remove functions.
1275         (org-table-fix-formulas): New function.
1276         (org-table-insert-column, org-table-delete-column)
1277         (org-table-move-column): Use `org-table-fix-formulas'.
1278         (org-follow-gnus-link): Patch from Bastien/Leo.
1279         (org-table-current-field-formula): New function.
1280         (org-file-image-p): New function.
1281         (org-agenda-show-new-time): New function.
1282         (org-agenda-date-later): Call `org-agenda-show-new-time'.
1283         (org-with-remote-undo): New macro.
1284         (org-agenda-undo): New command.
1285         (org-verify-change-for-undo): New function.
1286         (org-time-stamp-format): New function.
1287         (org-agenda-get-timestamps): Skip scheduled if DONE and requested
1288         by user.
1289         (org-match-any-p): New function.
1290         (org-make-tags-matcher): Handle regular expressions for tag and
1291         todo matches.
1292         (org-read-date): Accept "+N" as input for a date relative to the
1293         current date.
1294         (org-remove-subtree-entries-from-agenda): New function.
1295         (org-agenda-archive, org-agenda-kill):
1296         Use `org-remove-subtree-entries-from-agenda'.
1297         (org-do-sort, org-sort-entries): New functions.
1298         (org-sort): New command.
1299         (org-table-sort-lines): Use `org-do-sort'.
1300         (org-fix-decoded-time): New function.
1301         (org-table-number-regexp): Require 0x... to identify as number
1302         in tables.
1303         (org-startup-options): New keywords for note taking.
1304         (org-upgrade-old-links): Remove function.
1305         (org-get-repeat): New function.
1306         (org-show-context): Also show siblings on current level.
1307         (org-show-siblings): New function.
1308         (org-isearch-end, org-isearch-post-command): New functions.
1309         (org-show-siblings): New option.
1310         (org-show-context): Use `org-show-siblings'.
1311         (org-table-maybe-recalculate-line): No longer require `calc-eval'
1312         to be bound, because user may just use elisp.
1314 2007-02-24  Kim F. Storm  <storm@cua.dk>
1316         * emulation/cua-base.el (cua-paste): Handle x-clipboard-yank.
1317         (cua--init-keymaps): Remap x-clipboard-yank to cua-paste.
1319 2007-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
1321         * startup.el (command-line): Also check if the abbrev file is readable.
1323 2007-02-24  John Paul Wallington  <jpw@pobox.com>
1325         * net/tls.el (tls-certtool-program): Fix custom type.
1327         * mail/feedmail.el (feedmail-message-id-generator)
1328         (feedmail-date-generator): Fix custom types.
1330         * mail/rmail.el (rmail-message-filter): Fix custom type.
1332 2007-02-24  Eli Zaretskii  <eliz@gnu.org>
1334         * startup.el (command-line): If simple.el cannot be found, proceed
1335         with a warning message.
1337 2007-02-24  Kenichi Handa  <handa@m17n.org>
1339         * international/utf-8.el (utf-8-pre-write-conversion): Handle the
1340         case that BEG is a string.
1342 2007-02-24  Chris Moore  <dooglus@gmail.com>
1344         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
1345         * pgg-pgp.el (pgg-pgp-encrypt-region):
1346         * pgg-gpg.el (pgg-gpg-encrypt-region):
1347         Check pgg-encrypt-for-me if no other recipients.
1349 2007-02-23  Eli Zaretskii  <eliz@gnu.org>
1351         * mail/rmailedit.el (rmail-cease-edit): Restore the Rmail toolbar.
1353         * textmodes/sgml-mode.el (sgml-validate): Quote the file name with
1354         shell-quote-argument.
1356 2007-02-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
1358         * comint.el (comint-read-input-ring): Use comint-input-ring-size
1359         from the comint buffer instead of the temporary one.
1361 2007-02-23  David Reitter  <david.reitter@gmail.com>
1363         * cus-edit.el (custom-save-all): Canonicalize custom-file before
1364         storing it in recentf-exclude.
1366 2007-02-23  Chong Yidong  <cyd@stupidchicken.com>
1368         * startup.el (fancy-splash-screens): Make cursor-type buffer-local
1369         in splash screen.
1371 2007-02-22  J.D. Smith  <jdsmith@as.arizona.edu>
1373         * progmodes/idlw-shell.el (idlwave-shell-mode): Clean up pending
1374         commands, for restart.
1375         (idlwave-shell-current-module): Fix handling of module name by type.
1376         (idlwave-shell-break-in): Update type handling.
1377         (idlwave-shell-bp-get): Encode type in BP structure.
1378         (idlwave-shell-set-bp): Fix setting condition/count on disabled BPs.
1379         (idlwave-shell-module-source-query): Query routine info based on type.
1380         Fix path parsing for non-compiled files.
1381         (idlwave-shell-module-source-filter): Don't signal error in filter
1382         if no source found.
1383         (idlwave-shell-set-bp-in-module): Use fallback source to prevent
1384         filter race.
1386 2007-02-22  Kim F. Storm  <storm@cua.dk>
1388         * wid-edit.el (widget-default-create): Undo 2007-02-04 change.
1389         (editable-field): Document need to put some text before the %v
1390         escape in :format string.
1392 2007-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1394         * vc-svn.el: Remove the code inherited from CVSREAD and `cvs edit'.
1395         (vc-svn-use-edit): Remove unused config var.
1396         (vc-svn-update, vc-svn-revert): Checkout is always implicit.
1398         * outline.el (hide-sublevels): Keep empty last line, if available.
1400         * buff-menu.el (list-buffers-noselect): Use explicit unicode code
1401         rather than the corresponding unicode char, to make the code
1402         more readable.
1404 2007-02-19  Juanma Barranquero  <lekktu@gmail.com>
1406         * speedbar.el (speedbar-frame-mode, speedbar-frame-width)
1407         (speedbar-show-unknown-files, speedbar-item-info-file-helper)
1408         (speedbar-item-info-tag-helper): Doc fixes.
1410 2007-02-19  Kenichi Handa  <handa@m17n.org>
1412         * international/mule-cmds.el (locale-language-names):
1413         Map "eo" to "Esperanto".
1415         * language/european.el ("Esperanto"): New language environment.
1417 2007-02-17  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
1419         * simple.el (kill-line): Doc fix.
1421 2007-02-17  Kim F. Storm  <storm@cua.dk>
1423         * emacs-lisp/bindat.el (bindat--unpack-u*): Optimize.
1424         (bindat--unpack-item, bindat--length-group, bindat--pack-item)
1425         (bindat--unpack-group, bindat--pack-group):
1426         Handle vectors with optional element type.
1428 2007-02-17  Daiki Ueno  <ueno@unixuser.org>
1430         * pgg-gpg.el (pgg-gpg-process-region): Make USE-AGENT nil
1431         if PASSPHRASE is given.
1433 2007-02-17  Chris Moore  <dooglus@gmail.com>
1435         * jka-cmpr-hook.el (jka-compr-compression-info-list):
1436         Recognize backups of bz2 compressed files.
1438 2007-02-17  Eli Zaretskii  <eliz@gnu.org>
1440         * info-look.el (info-lookup): Bind Info-fontify-maximum-menu-size
1441         to nil to speed up lookup of the symbol in index nodes.
1443 2007-02-17  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
1445         * emacs-lisp/lisp-mode.el (calculate-lisp-indent):
1446         Add indentation for the constants of Lisp.
1448 2007-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1450         * ps-print.el: Use (defvar <foo>) where applicable.
1451         (ps-print-emacs-type): Remove.
1452         (ps-x-frame-property, ps-e-frame-parameter): Remove.
1453         (ps-frame-parameter): Align its call-convention with frame-parameter.
1454         (ps-begin-job): Adjust calls to it appropriately.
1455         (ps-setup): Don't print ps-print-emacs-type.
1456         (ps-e-find-composition, ps-mark-active-p, ps-color-device):
1457         Define in such a way that it's obvious that it's defined.
1458         (ps-prsc, ps-c-prsc, ps-s-prsc): Remove.
1459         (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
1460         (ps-jts-ps-setup): Use flavor-neutral syntax instead.
1462 2007-02-15  Alan Mackenzie  <acm@muc.de>
1464         * progmodes/cc-cmds.el (c-indent-new-comment-line): When splitting
1465         an empty one-line C-style comment, post-position point properly.
1467 2007-02-15  Chris Moore  <dooglus@gmail.com>
1469         * isearch.el (isearch-lazy-highlight-space-regexp): New variable.
1470         (isearch-lazy-highlight-new-loop): Bind it.
1471         (isearch-lazy-highlight-search): Use it.
1473         * replace.el (replace-highlight): Bind search-whitespace-regexp to nil.
1475 2007-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1477         * font-lock.el (font-lock-extend-region-wholelines):
1478         Only return non-nil if the region has really been changed.
1479         Reported by David Hansen <david.hansen@physik.fu-berlin.de>
1481 2007-02-15  Juanma Barranquero  <lekktu@gmail.com>
1483         * play/5x5.el (5x5-crack-xor-mutate): Doc fix.
1484         (5x5-draw-grid-end, 5x5-make-xor-with-mutation, 5x5-mode, 5x5-crack)
1485         (5x5-play-solution, 5x5-y-or-n-p): Fix typos in docstrings.
1487 2007-02-14  Juanma Barranquero  <lekktu@gmail.com>
1489         * faces.el (color-values): Revert changes to docstring from
1490         2007-01-31 and 2000-09-07.
1492         * textmodes/ispell.el (ispell-keep-choices-win, ispell-word)
1493         (ispell-begin-skip-region-regexp): Fix typos in docstrings.
1494         (ispell-dictionary-alist, ispell-process-line): Doc fixes.
1495         (ispell-help): Fix typos in docstring and output message.
1497 2007-02-14  Kim F. Storm  <storm@cua.dk>
1499         * progmodes/grep.el (grep-files-aliases): Add tex and texi aliases.
1500         (lgrep): Add DIR arg to start grep in specific directory, like rgrep.
1501         (grep): Fix lgrep reference.
1503         * disp-table.el (make-glyph-code, glyph-char, glyph-face): New defuns.
1504         (standard-display-underline): Use make-glyph-code.
1506         * descr-text.el (describe-char): Use glyph-char and glyph-face.
1508         * international/latin1-disp.el (latin1-display-char):
1509         Use make-glyph-code.
1511 2007-02-13  Juanma Barranquero  <lekktu@gmail.com>
1513         * ehelp.el (with-electric-help, electric-help-exit)
1514         (electric-help-retain): Doc fixes.
1516         * emacs-lisp/bytecomp.el (byte-compile-dest-file)
1517         (byte-compile-file): Doc fixes.
1519 2007-02-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1521         * term/mac-win.el: Change all uses of
1522         mac-set-font-panel-visibility to mac-set-font-panel-visible-p.
1523         (mac-ae-number): Return integer 0 if coerced result is float 0.0.
1524         (mac-ae-get-url): Call select-frame-set-input-focus.
1525         (mac-dnd-handle-drag-n-drop-event): Don't call
1526         select-frame-set-input-focus.
1528 2007-02-13  Kenichi Handa  <handa@m17n.org>
1530         * international/characters.el: Fix documentation of category `a'.
1532 2007-02-11  Dan Nicolaescu  <dann@ics.uci.edu>
1534         * progmodes/grep.el (grep): Mention lgrep and rgrep in the docstring.
1536 2007-02-12  Michael Albinus  <michael.albinus@gmx.de>
1538         * net/tramp.el (tramp-get-ls-command, tramp-get-file-exists-command)
1539         (tramp-get-remote-ln): Handle error case.
1540         Reported by Chris Moore <dooglus@gmail.com>.
1542 2007-02-11  Kim F. Storm  <storm@cua.dk>
1544         * bindings.el (ctl-x-map): Remove register compatibility bindings
1545         C-x /, C-x j, C-x x, and C-x g (deprecated since Emacs 19).
1547 2007-02-11  Richard Stallman  <rms@gnu.org>
1549         * loadhist.el (unload-feature): Handle (t . SYMBOL) entries
1550         in load history.
1552         * emacs-lisp/lisp-mode.el (indent-sexp): Clean up termination
1553         condition -- don't fail to stop at endpos.
1555 2007-02-11  Carsten Dominik  <dominik@science.uva.nl>
1557         * textmodes/org.el (org-agenda-get-todos)
1558         (org-agenda-get-timestamps, org-agenda-get-closed)
1559         (org-agenda-get-deadlines, org-agenda-get-scheduled)
1560         (org-agenda-get-blocks, org-format-agenda-item)
1561         (org-agenda-change-all-lines, org-scan-tags): Rename text property
1562         from `category' to `org-category'.
1564 2007-02-11  Kenichi Handa  <handa@m17n.org>
1566         * international/titdic-cnv.el (titdic-convert): Force files be written
1567         with Unix-like eol format.  Read files under CXTERM-DIC by raw-text.
1568         (miscdic-convert): Force files be written with Unix-like eol format.
1570 2007-02-11  Juanma Barranquero  <lekktu@gmail.com>
1572         * files.el (change-major-mode-with-file-name): Fix typo in docstring.
1574         * calculator.el (calculator-prompt): Doc fix.
1575         (calculator-mode-map): Fix typo in menu entry.
1577 2007-02-10  Jay Belanger  <belanger@truman.edu>
1579         * calculator.el (calculator): Do more extensive checking for when
1580         3 lines should be used for the calculator.
1582 2007-02-10  Eli Zaretskii  <eliz@gnu.org>
1584         * info-look.el (info-lookup-make-completions):
1585         Bind Info-fontify-maximum-menu-size to nil to speed up lookup of
1586         index nodes.
1588         * info.el (Info-fontify-maximum-menu-size): Document the effect
1589         of a nil value.
1590         (Info-fontify-node): Make sure Info-fontify-maximum-menu-size is
1591         non-nil before using it as size.
1593 2007-02-09  Chong Yidong  <cyd@stupidchicken.com>
1595         * subr.el (insert-for-yank-1): Prevent read-only properties from
1596         interfering with text property operations.
1598         * image-mode.el (image-mode): Revert 2007-01-30 changes.
1600         * image.el (image-type-auto-detectable): Don't autodetect x[pb]m.
1601         (image-type-auto-detected-p): Fail if another match is found in
1602         auto-mode-alist.
1604         * files.el (magic-mode-alist): Call image-mode instead of
1605         image-mode-maybe for autodetected images.
1607 2007-02-09  Juanma Barranquero  <lekktu@gmail.com>
1609         * mail/smtpmail.el (smtpmail-smtp-service, smtpmail-queue-index-file):
1610         Fix typos in docstrings.
1611         (smtpmail-local-domain, smtpmail-queue-mail): Doc fixes.
1613 2007-02-09  Kim F. Storm  <storm@cua.dk>
1615         * emacs-lisp/float-sup.el: Remove obsolete comment.
1617 2007-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1619         * diff-mode.el (diff-sanity-check-hunk): Fix last fix.
1621 2007-02-08  Karl Fogel  <kfogel@red-bean.com>
1623         * simple.el: Revert previous change, at request of RMS:
1624         (fundamental-mode-hook): Remove.
1625         (fundamental-mode): Run after-change-major-mode-hooks manually,
1626         and don't run the now-nonexistent fundamental-mode-hook.
1628 2007-02-08  Karl Fogel  <kfogel@red-bean.com>
1630         * simple.el (fundamental-mode-hook): Declare new hook.
1631         (fundamental-mode): Run the new dedicated hook, and don't run
1632         after-change-major-mode-hooks manually anymore.
1634 2007-02-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1636         * vc-svn.el (vc-svn-merge-news): Understand the new format with two
1637         added columns of chars.  Remove support for the "no-meta-info" format.
1638         Prompted by Romain Francoise <romain@orebokech.com>.
1640 2007-02-07  Nick Roberts  <nickrob@snap.net.nz>
1642         * progmodes/gdb-ui.el (gdb-if-arrow): New macro.
1643         (gdb-mouse-until, gdb-mouse-jump): Use it.
1645 2007-02-07  Nick Roberts  <nickrob@snap.net.nz>
1647         * progmodes/gdb-ui.el (gdb-mouse-until, gdb-mouse-jump): Make them
1648         work when there is just an assembler buffer (no source buffer).
1650 2007-02-07  Per Cederqvist  <ceder@lysator.liu.se>  (tiny change)
1652         * diff-mode.el (diff-sanity-check-hunk): Don't reject the hunk
1653         just because the diff was produced using "-p" (--show-c-function).
1655 2007-02-07  Juanma Barranquero  <lekktu@gmail.com>
1657         * faces.el (frame-set-background-mode): Use `color-values' and
1658         `display-color-p', not `x-color-values' and `x-display-color-p'.
1659         (face-valid-attribute-values): Use `defined-colors' instead of
1660         `x-defined-colors'.
1662 2007-02-07  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1664         * ps-print.ps: The ps-print commands without face printing should not
1665         print background color.  Reported by Leo <sdl.web@gmail.com>.
1666         (ps-print-version): New version 6.7.3.
1667         (ps-begin-job): New arg.  Fix ps-default-background and
1668         ps-default-foreground initialization.
1669         (ps-face-attributes): Fix doc string.
1670         (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
1672         * printing.el: Fix ps-print link.
1674 2007-02-06  Chong Yidong  <cyd@stupidchicken.com>
1676         * faces.el (face-set-after-frame-default): Compile attributes to
1677         be set by frame parameters before merging in X resources.
1679 2007-02-06  Juanma Barranquero  <lekktu@gmail.com>
1681         * simple.el (blink-matching-paren-dont-ignore-comments):
1682         (blink-matching-paren-on-screen): Doc fixes.
1684 2007-02-06  Nick Roberts  <nickrob@snap.net.nz>
1686         * progmodes/gdb-ui.el (gdb-frames-mode): Truncate lines in stack buffer.
1688 2007-02-05  Juanma Barranquero  <lekktu@gmail.com>
1690         * loadhist.el (unload-feature): Silently ignore `load-history' entries
1691         of the form `(defface . SYMBOL)', and treat `(autoload . SYMBOL)'
1692         entries like `defun'.  Return nil.
1694 2007-02-05  Kim F. Storm  <storm@cua.dk>
1696         * ido.el: Doc fixes.
1698 2007-02-04  David Kastrup  <dak@gnu.org>
1700         * play/mpuz.el (mpuz-random-puzzle): Fix potential lockup when
1701         `mpuz-allow-double-multiplicator' is non-zero, and correct
1702         calculation of `min'.
1704 2007-02-04  Per Abrahamsen  <abraham@dina.kvl.dk>
1706         * wid-edit.el (widget-default-create): Insert new text at the
1707         :from marker _after_ the marker, not before it.
1709 2007-02-04  Alan Mackenzie  <acm@muc.de>
1711         * progmodes/cc-cmds.el (c-indent-line): Don't erase ^L when a line
1712         containing it is re-indented.
1714 2007-02-03  Chong Yidong  <cyd@stupidchicken.com>
1716         * net/newsticker.el (newsticker--insert-image): Update docstring,
1717         and insert the image directly.
1718         (newsticker--buffer-redraw): Update docstring.
1720         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1721         Rename from define-global-minor-mode.
1723         * progmodes/cwarn.el (global-cwarn-mode):
1724         * emacs-lisp/autoload.el (make-autoload):
1725         * hi-lock.el (global-hi-lock-mode):
1726         * font-core.el (global-font-lock-mode): All callers changed.
1728 2007-02-03  Eli Zaretskii  <eliz@gnu.org>
1730         * textmodes/texnfo-upd.el (texinfo-menu-copy-old-description):
1731         Don't copy @ignore lines into menu descriptions.
1732         (texinfo-multi-file-update): Goto the @node line before attempting
1733         to pluck the node name.
1734         (texinfo-multiple-files-update): Reverse the optional arguments'
1735         order, as per the doc string and the `interactive' form.
1737 2007-02-03  Chong Yidong  <cyd@stupidchicken.com>
1739         * image-mode.el: Use autoload to avoid overriding disabled setting
1740         applied in .emacs.
1742 2007-02-03  Alan Mackenzie  <acm@muc.de>
1744         * progmodes/cc-engine.el (c-in-knr-argdecl): Slight correction
1745         for, e.g. "void (*hdone)();" in a k&r list.  (No WS between
1746         adjacent paren groups).
1748 2007-02-02  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1750         * progmodes/ebnf2ps.el: Doc fixes.
1751         (ebnf-eps-buffer, ebnf-eps-region, ebnf-syntax-alist): Doc fixes.
1753 2007-02-02  Eli Zaretskii  <eliz@gnu.org>
1755         * dired-x.el (dired-do-relsymlink): Add reference to
1756         dired-do-symlink.  Add an autoload cookie.
1758         * dired-aux.el (dired-do-symlink): Add reference to
1759         dired-do-relsymlink.
1761 2007-02-02  Doug Maxey  <dwm@enoyolf.org>  (tiny change)
1763         * mouse.el <left-fringe mouse-2, right-fringe mouse-3>:
1764         <left-fringe mouse-3>: New bindings.
1766 2007-02-02  Ulf Jasper  <ulf.jasper@web.de>
1768         * newsticker.el (newsticker-version): Changed to "1.10".
1769         (newsticker--set-customvar): Doc string.
1770         (newsticker-new-item-face): Doc string.
1771         (newsticker-mode): Initialize `invisibility-spec' with t.
1772         (newsticker-mode-map): Added
1773         `newsticker-mark-all-items-at-point-as-read'.
1774         (newsticker-menu): Added narrow-to-item and narrow-to-feed.
1775         (newsticker-w3m-show-inline-images): Do not call
1776         `w3m-remove-image'.
1777         (newsticker--buffer-after-w3m-insert-image): New advice for
1778         w3m-insert-image to cache images.
1779         (newsticker-next-item-same-feed): New.
1780         (newsticker-mark-all-items-at-point-as-read-and-redraw): New.
1781         (newsticker-mark-all-items-of-feed-as-read): New.
1782         (newsticker-mark-all-items-at-point-as-read): Use new functions.
1783         (newsticker-mark-item-at-point-as-read): Doc string.
1784         (newsticker-mark-item-at-point-as-read): Use new functions.
1785         (newsticker--do-mark-item-at-point-as-read): New, extracted from
1786         `newsticker-mark-item-at-point-as-read'.
1787         (newsticker-hide-entry): Use (t) instead of t for invisibility.
1788         (newsticker--sentinel): Yet another xml-parser workaround.
1789         (newsticker--decode-iso8601-date): Bugfix for datestrings without
1790         days.
1791         (newsticker--buffer-do-insert-text): Fix.
1792         (newsticker--buffer-insert-enclosure): Fix. length might be missing.
1793         (newsticker--buffer-make-item-completely-visible):
1794         `switch-to-buffer' not necessary.
1796 2007-02-02  Eli Zaretskii  <eliz@gnu.org>
1798         * progmodes/ebnf2ps.el (ebnf-eps-buffer, ebnf-eps-region)
1799         (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-region)
1800         (ebnf-style-database, ebnf-apply-style, ebnf-reset-style)
1801         (ebnf-push-style, ebnf-pop-style, ebnf-eps-production-list)
1802         (ebnf-directory, ebnf-file, ebnf-syntax-alist): Doc fixes.
1804 2007-02-02  Kenichi Handa  <handa@m17n.org>
1806         * international/quail.el (quail-show-key): Fix an error message.
1808 2007-02-01  Juanma Barranquero  <lekktu@gmail.com>
1810         * faces.el (set-face-underline-p, modify-face): Rename arg
1811         UNDERLINE-P to UNDERLINE (it is not a flag).
1813 2007-02-01  Nick Roberts  <nickrob@snap.net.nz>
1815         * progmodes/gdb-ui.el (gdb-speedbar-update): Avoid duplication
1816         when adding gdb-speedbar-update to gdb-input-queue.
1818 2007-02-01  Kenichi Handa  <handa@m17n.org>
1820         * international/quail.el (quail-show-key): Signal an error if the
1821         current input method is not using Quail.
1823 2007-02-01  J.D. Smith  <jdsmith@as.arizona.edu>
1825         * progmodes/idlwave.el (idlwave-xml-create-sysvar-alist):
1826         Trim leading whitespace in sysvar names.
1828 2007-02-01  Juanma Barranquero  <lekktu@gmail.com>
1830         * faces.el (internal-find-face, internal-get-face): Doc fixes.
1832 2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
1834         * ido.el (ido-set-common-completion): Use `let', not `let*'.
1836 2007-01-31  Romain Francoise  <romain@orebokech.com>
1838         * comint.el: Delete extra copy of `comint-copy-old-input' added in
1839         previous change to this file.
1841 2007-01-31  Jason Rumney  <jasonr@gnu.org>
1843         * files.el (magic-mode-alist): Use image-mode-maybe rather than
1844         image-mode.
1846         * image-mode.el (image-mode-maybe): Prevent magic-mode-alist from
1847         interfering with attempt to set major mode from modified
1848         auto-mode-alist.
1850 2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
1852         * faces.el (color-values): Doc fix.
1853         (face-differs-from-default-p): Don't check :foreground twice.
1855 2007-01-31  J.D. Smith  <jdsmith@as.arizona.edu>
1857         * comint.el (comint-mode): Prevent non-keyword fontification by default.
1859 2007-01-31  Kenichi Handa  <handa@m17n.org>
1861         * international/quail.el (quail-store-decode-map-key): Store a
1862         translated character too.
1863         (quail-char-equal-p): New function.
1864         (quail-find-key1): Check character equality by quail-char-equal-p.
1865         (quail-decode-map-generated): New variable.
1866         (quail-find-key): Check quail-decode-map-generated and re-generate
1867         a decode map if necessary.
1869 2007-01-30  Richard Stallman  <rms@gnu.org>
1871         * tutorial.el (tutorial--detailed-help): Make the list of
1872         changed keys look nicer.
1874 2007-01-30  Nick Roberts  <nickrob@snap.net.nz>
1876         * progmodes/gdb-ui.el (gdb-var-delete-1): New function.
1877         (gdb-var-delete): Use it.
1878         (gdb-var-update-handler-1): Handle value "invalid" for MI field
1879         `in_scope'.
1881 2007-01-30  Michael Albinus  <michael.albinus@gmx.de>
1883         * files.el (get-free-disk-space): Return nil for remote directories.
1885         * net/ange-ftp.el (ange-ftp-ls): In case of wildcards, use "ls"
1886         instead of "dir".
1888 2007-01-30  Chong Yidong  <cyd@stupidchicken.com>
1890         * type-break.el (type-break-catch-up-event): New function.
1891         (type-break-demo-hanoi, type-break-demo-life)
1892         (type-break-demo-boring): Use it.
1894         * image-mode.el (image-mode): Don't automatically view as image.
1895         (image-toggle-display): Add `disabled' property.
1897 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
1899         * isearchb.el (isearchb-iswitchb):
1900         * ps-print.el (ps-build-face-reference):
1901         * emacs-lisp/shadow.el (list-load-path-shadows):
1902         * eshell/esh-cmd.el (eshell-rewrite-for-command):
1903         * international/mule.el (find-auto-coding):
1904         * mail/supercite.el (sc-attrib-selection-list):
1905         * progmodes/cc-defs.el (c-emacs-features):
1906         * progmodes/cc-vars.el (c-offsets-alist):
1907         * progmodes/flymake.el
1908         (flymake-init-create-temp-source-and-master-buffer-copy):
1909         Fix typos in docstrings (some suggested by Chris Moore).
1911         * progmodes/vhdl-mode.el (vhdl-components-package-name)
1912         (vhdl-get-library-unit, vhdl-corresponding-begin)
1913         (vhdl-skip-case-alternative, vhdl-backward-skip-label)
1914         (vhdl-align-region-2, vhdl-electric-dash, vhdl-case-word)
1915         (vhdl-hooked-abbrev, vhdl-hs-forward-sexp-func)
1916         (vhdl-font-lock-match-item): Fix typos in docstrings.
1917         (vhdl-get-library-unit, vhdl-get-block-state, vhdl-sort-alist)
1918         (vhdl-set-offset, vhdl-fix-case-region-1, vhdl-scan-directory-contents)
1919         (vhdl-speedbar-insert-project-hierarchy):
1920         Improve argument/docstring consistency.
1922 2007-01-29  Kenichi Handa  <handa@m17n.org>
1924         * international/titdic-cnv.el (py-converter): Fix previous change.
1926 2007-01-29  Chong Yidong  <cyd@stupidchicken.com>
1928         * jka-compr.el (jka-compr-partial-uncompress)
1929         (jka-compr-call-process): Rebind default-directory if it is
1930         invalid.  Suggested by Chris Moore.
1932         * comint.el (comint-insert-input): Handle situation where the
1933         selected buffer is not the clicked buffer.
1935 2007-01-29  Kenichi Handa  <handa@m17n.org>
1937         * international/ja-dic-cnv.el (skkdic-convert):
1938         Add byte-compile-disable-print-circle:t at the head.
1940         * international/titdic-cnv.el (tit-process-header):
1941         Add byte-compile-disable-print-circle:t at the head.
1942         (miscdic-convert): Likewise.
1943         (py-converter): Skip the header comments.
1945         * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle):
1946         New variable.
1947         (byte-compile-output-file-form): Bing print-circle to nil if
1948         byte-compile-output-file-form is not nil.
1949         (byte-compile-output-docform): Likewise.
1951 2007-01-28  Kim F. Storm  <storm@cua.dk>
1953         * emulation/cua-base.el (cua-global-keymap, cua--region-keymap):
1954         Declare earlier to avoid byte compiler warnings.
1956 2007-01-28  Markus Triska  <markus.triska@gmx.at>
1958         * speedbar.el (speedbar-make-specialized-keymap): Doc fix.
1960 2007-01-28  Chong Yidong  <cyd@stupidchicken.com>
1962         * play/gamegrid.el (gamegrid-kill-timer): Cancel timer directly.
1963         (gamegrid-add-score-with-update-game-score-1): Allow local quits
1964         when calling update-game-score program.  Remove unnecessary
1965         save-excursion.
1967         * play/tetris.el (tetris-new-shape): Stop drawing if game is over.
1969 2007-01-28  Nick Roberts  <nickrob@snap.net.nz>
1971         * progmodes/gdb-ui.el (gdb-breakpoint-regexp): Declare earlier to
1972         avoid compiler warning.
1973         (gdb-var-update-handler-1): Consider that the MI field `in_scope'
1974         might have values other than "true" or "false".
1976 2007-01-28  Richard Stallman  <rms@gnu.org>
1978         * textmodes/fill.el (fill-paragraph-function): Doc fix.
1979         (fill-paragraph): Bind fill-paragraph-function to t to avoid recursion.
1981         * emacs-lisp/pp.el (pp-eval-last-sexp): Don't eval here.
1983         * image.el (image-type-header-regexps): Make GIF regex more specific.
1985         * tutorial.el (tutorial--default-keys): Check M-DEL, not `M-backspace'.
1986         Don't check `backspace'.
1987         (tutorial--find-changed-keys): Look up bindings in a temp buffer
1988         in Fundamental mode.
1990         * startup.el (fancy-splash-text, normal-splash-screen):
1991         Mention C-g.
1993         * simple.el (eval-expression): Don't use eval-last-sexp-print-value
1994         when inserting in buffer.
1996         * vc-arch.el (vc-arch-file-id): Move with-current-buffer
1997         inside the if.
1999 2007-01-27  Richard Stallman  <rms@gnu.org>
2001         * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do".
2003 2007-01-27  Guanpeng Xu  <herberteuler@hotmail.com>
2005         * add-log.el (add-log-current-defun): Skip the semicolon ``;'' for
2006         enum/union/struct/class definition.
2007         Revert change to call `forward-sexp' multiple times.
2009 2007-01-27  Chong Yidong  <cyd@stupidchicken.com>
2011         * files.el (hack-local-variables-confirm): Don't keep trying to
2012         read an event from an empty kbd macro.
2014 2007-01-27  Eli Zaretskii  <eliz@gnu.org>
2016         * server.el (server-start): Mention LEAVE-DEAD arg in the doc string.
2018 2007-01-27  Ben North  <ben@redfrontdoor.org>
2020         * outline.el (outline-promote, outline-demote): Doc fix.  Rename
2021         the arg CHILDREN -> WHICH.
2023 2007-01-27  Michael Albinus  <michael.albinus@gmx.de>
2025         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Set
2026         default-directory to a sane value when calling start-process.
2028 2007-01-27  Eli Zaretskii  <eliz@gnu.org>
2030         * ls-lisp.el (ls-lisp-use-localized-time-format): New defcustom.
2031         (ls-lisp-format-time-list): Doc fix.  Mention
2032         ls-lisp-use-localized-time-format.
2033         (ls-lisp-format-time): Use ls-lisp-format-time-list if
2034         ls-lisp-use-localized-time-format is non-nil, even if a valid
2035         locale is defined.
2037 2007-01-27  Juanma Barranquero  <lekktu@gmail.com>
2039         * jka-compr.el (jka-compr-shell): Doc fix.
2041         * jka-cmpr-hook.el (jka-compr-compression-info-list): Doc fix.
2043 2007-01-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2045         * ps-print.ps: Fix background height.
2046         (ps-print-version): New version 6.7.2.
2048 2007-01-26  Eli Zaretskii  <eliz@gnu.org>
2050         * makefile.w32-in (finder-data, custom-deps): Depend on
2051         $(lisp)/loaddefs.el.
2053 2007-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
2055         * Makefile.in (custom-deps, finder-data): Add dependency to loaddefs.el.
2057 2007-01-24  Miles Bader  <miles@gnu.org>
2059         * emacs-lisp/bytecomp.el (byte-compile-output-file-form)
2060         (byte-compile-output-docform): Bind `print-circle' to t.
2062 2007-01-24  Kenichi Handa  <handa@m17n.org>
2064         * international/ja-dic-cnv.el (skkdic-convert): Insert a related
2065         file name of the original SKK dictionary file.
2067 2007-01-24  Kim F. Storm  <storm@cua.dk>
2069         * ido.el (ido-initial-position): New variable.
2070         (ido-read-internal): Set it if default item is specified.
2071         (ido-minibuffer-setup): Position cursor accordingly if set.
2072         (ido-edit-input): C-e moves to end of input if not already there.
2073         (ido-magic-backward-char): C-b does like M-b if prev char is /.
2074         Don't switch to buffer mode if repeating C-b at start of input.
2075         (ido-toggle-ignore): C-a only toggles ignore at start or end of
2076         input; else it moves to start of input.
2077         (ido-kill-buffer-at-head, ido-delete-file-at-head): If cursor is
2078         not at end of input, delete rest of input, rather than normal op.
2080 2007-01-23  Michael Kifer  <kifer@cs.stonybrook.edu>
2082         * viper-keym.el (viper-insert-basic-map): Delete binding for S-TAB.
2084         * ediff-util.el (ediff-clone-buffer-for-region-comparison): Change text
2085         of message.  Activate mark.
2086         (ediff-activate-mark): Set transient-mark-mode to t.
2088         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise): Doc fix.
2090 2007-01-23  Martin Rudalics  <rudalics@gmx.at>
2092         * help-fns.el (describe-variable): Don't suppress display of
2093         buffer local value when the value is "large".
2095 2007-01-22  Kim F. Storm  <storm@cua.dk>
2097         * ido.el (ido-active): Add XEmacs test from ido-minibuffer-setup.
2098         (ido-initiate-auto-merge, ido-exhibit, ido-minibuffer-setup)
2099         (ido-tidy): Use ido-active.
2101 2007-01-22  Chris Moore  <christopher.ian.moore@gmail.com>
2103         * hexl.el (hexl-mode-exit): Add missing quote.
2105 2007-01-22  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2107         * term/mac-win.el (mac-keyboard-modifier-mask-alist): New constant.
2108         (mac-ae-keyboard-modifiers): New function.
2109         (mac-handle-toolbar-switch-mode): Use it.
2110         (mac-dnd-handle-drag-n-drop-event): Likewise.  Set action to `copy'
2111         if keyboard modifiers on drop contain option key.
2112         (mac-dnd-drop-data): Add optional argument `action'.
2113         (special-event-map): Remove binding for M-drag-n-drop.
2115 2007-01-21  Guanpeng Xu  <herberteuler@hotmail.com>
2117         * add-log.el (add-log-current-defun): Use CC Mode functions to
2118         find the beginning and end of a defun.
2120 2007-01-21  Nick Roberts  <nickrob@snap.net.nz>
2122         * progmodes/gdb-ui.el (gdb-var-create-regexp)
2123         (gdb-var-create-handler): Handle value field in GDB output of
2124         -var-create.
2125         (gdb-max-frames): New variable.
2126         (gdb-stack-buffer, gdb-frames-select): Use it.
2127         (gdb-info-stack-custom): Help user customize gdb-max-frames,
2128         if necessary.
2129         (gdb-get-frame-number): Simplify.
2131 2007-01-21  Glenn Morris  <rgm@gnu.org>
2133         * net/tramp.el (tramp-perl-encode, tramp-perl-decode):
2134         Update copyrights.
2136 2007-01-21  Alan Mackenzie  <acm@muc.de>
2138         * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Correct the
2139         handling of K&R stuff.
2141 2007-01-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2143         * textmodes/bibtex.el (bibtex-files): Fix customization type.
2145 2007-01-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2147         * ps-print.el: Handle frame parameters (background and/or foreground
2148         colors) changing dynamically.  Reported by Leo <sdl.web@gmail.com>.
2149         (ps-print-version): New version 6.7.1.
2150         (ps-x-frame-property, ps-e-frame-parameter): New aliases.
2151         (ps-frame-parameter): New fun.
2152         (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
2153         Fix doc and customization.
2154         (ps-begin-job): Get frame parameters (background and/or foreground
2155         colors).
2156         (ps-do-despool): Ensure ps-printer-name has a valid value.
2158 2007-01-21  Nick Roberts  <nickrob@snap.net.nz>
2160         * progmodes/gdb-ui.el (gdb-debug-log): Rename from gdb-debug-ring.
2161         (gdb-debug-log-max): Rename from gdb-debug-ring-max.
2162         (gud-gdba-marker-filter): Make a value of nil for gdb-debug-ring-max
2163         mean unlimited.
2165 2007-01-20  Alan Mackenzie  <acm@muc.de>
2167         * progmodes/cc-engine.el (c-in-knr-argdecl): Reformulate to do
2168         much more rigorous analysis of putative K&R regions.
2170 2007-01-20  Alan Mackenzie  <acm@muc.de>
2172         * progmodes/cc-defs.el (c-go-list-forward, c-go-list-backward):
2173         New functions.
2175 2007-01-20  Alan Mackenzie  <acm@muc.de>
2177         * progmodes/cc-align.el, progmodes/cc-cmds.el,
2178         * progmodes/cc-defs.el, progmodes/cc-engine.el,
2179         * progmodes/cc-langs.el, progmodes/cc-styles.el,
2180         * progmodes/cc-vars.el: Add my name.
2182 2007-01-20  Chong Yidong  <cyd@stupidchicken.com>
2184         * files.el (find-alternate-file): Revert query message to Emacs 21
2185         version.
2187 2007-01-20  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
2189         * progmodes/cperl-mode.el (cperl-electric-keywords): Document in
2190         the doc string how to use personal abbrevs without electric
2191         keywords.
2193 2007-01-20  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
2195         * lisp/emacs-lisp/lisp-mode.el (last-sexp-toggle-display):
2196         Fixed cursor position when toggle abbreviated display.
2198 2007-01-20  Nick Roberts  <nickrob@snap.net.nz>
2200         * t-mouse.el: Update copyright following assignment by
2201         Alessandro Rubini.
2203 2007-01-20  Chong Yidong  <cyd@stupidchicken.com>
2205         * type-break.el (type-break-demo-hanoi, type-break-demo-life)
2206         (type-break-demo-boring): Call read-event instead of read-char.
2208 2007-01-19  Daniel Pfeiffer  <occitan@esperanto.org>  (small change)
2210         * progmodes/compile.el: Add handling for makepplog.
2212 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
2214         * textmodes/ispell.el (ispell-change-dictionary): Ensure that
2215         aspell dictionaries are initialized when called non-interactively.
2217 2007-01-19  Chong Yidong  <cyd@stupidchicken.com>
2219         * progmodes/compile.el (compilation-loop): New arg limit.
2220         Handle case where the first error is at point-min.
2221         (compilation-next-error): New arg to compilation-loop call.
2223 2007-01-18  Bruno Haible  <bruno@clisp.org>  (tiny change)
2225         * info.el (Info-default-dirs): Change default info dir to
2226         share/info.
2228         * paths.el (Info-default-directory-list): Ditto.
2230 2007-01-18  Chris Moore  <christopher.ian.moore@gmail.com>
2232         * hexl.el (hexl-before-revert-hook): New function.
2233         (hexl-mode): Use it.
2234         (hexl-after-revert-hook): Just call hexl-mode.
2235         (hexl-mode-exit): Remove before-revert-hook.
2237 2007-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2239         * isearch.el (isearch-no-upper-case-p): Look for [:upper:] as well.
2241 2007-01-16  Martin Rudalics  <rudalics@gmx.at>
2243         * textmodes/ispell.el (ispell-dictionary-alist-3): Replace "---"
2244         by "-" in francais7 otherchars entry.
2245         (ispell-dictionary-alist-5): Replace "." by "[.]" for polish
2246         otherchars entry.
2248 2007-01-15  Karl Fogel  <kfogel@red-bean.com>
2250         * bookmark.el (bookmark-buffer-file-name): Abbreviate the bookmark
2251         path.  Rewrite function in `cond' style for readability.
2253         Suggested by: Stephen Eglen <S.J.Eglen{_AT_}damtp.cam.ac.uk>.
2254         (The path shortening, that is, not the rearrarangement.)
2256 2007-01-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2258         * term/mac-win.el (mac-ae-quit-application): New function.
2259         (mac-apple-event-map): Bind "quit application" Apple event to it.
2261 2007-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2263         * vc-svn.el (vc-svn-parse-status): Trust the filename argument more
2264         than the program's output.
2266 2007-01-14  Juanma Barranquero  <lekktu@gmail.com>
2268         * kmacro.el (kmacro-insert-counter, kmacro-set-counter)
2269         (kmacro-start-macro-or-insert-counter)
2270         (kmacro-step-edit-prefix-commands): Fix typos in docstrings.
2271         (kmacro-call-ring-2nd, kmacro-call-ring-2nd-repeat): Doc fixes.
2273         * longlines.el (longlines-show-hard-newlines):
2274         * ruler-mode.el (ruler-mode-ruler):
2275         * emulation/keypad.el (keypad-setup):
2276         * progmodes/antlr-mode.el (antlr-indent-at-bol-alist):
2277         Fix typo in docstring.
2279 2007-01-13  Mathias Dahl  <mathias.dahl@gmail.com>
2281         * tumme.el (tumme-cmd-rotate-original-options): Add -outfile option.
2282         Remove redirect character ">".
2284 2007-01-13  Juanma Barranquero  <lekktu@gmail.com>
2286         * replace.el (perform-replace): Remove leftover code.
2288 2007-01-12  Richard Stallman  <rms@gnu.org>
2290         * replace.el (perform-replace): Don't clear NODENT when computing
2291         the replacement string.
2293 2007-01-11  Michael Albinus  <michael.albinus@gmx.de>
2295         * net/tramp.el (tramp-handle-file-local-copy):
2296         Set `enable-multibyte-characters' to nil.  Reported by Chris Moore
2297         <christopher.ian.moore@gmail.com>.
2299 2007-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2301         * diff-mode.el (diff-sanity-check-context-hunk-half)
2302         (diff-sanity-check-hunk): New functions.
2303         (diff-find-source-location): Use'em to check the hunks are well-formed.
2305         * hexl.el (hexlify-buffer, dehexlify-buffer): Don't complain and don't
2306         activate undo when undo is not active.
2307         Reported by Chris Moore <christopher.ian.moore@gmail.com>.
2309 2007-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2311         * ffap.el (ffap-next-regexp, ffap-machine-p, ffap-newsgroup-regexp)
2312         (ffap-newsgroup-p, ffap-alist, ffap-string-at-point-mode-alist)
2313         (ffap-url-at-point): Use char-classes rather than "a-z".
2315 2007-01-10  Juanma Barranquero  <lekktu@gmail.com>
2317         * ediff-init.el (ediff-autostore-merges):
2318         * textmodes/fill.el (fill-region): Doc fix.
2320 2007-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2322         * server.el (server-ensure-safe-dir): UIDs may be floats.
2324 2007-01-10  Richard Stallman  <rms@gnu.org>
2326         * battery.el (battery-linux-proc-acpi): Use ignore-errors
2327         around calls to directory-files.
2329         * subr.el (momentary-string-display): Use save-excursion.
2331         * emacs-lisp/pp.el (pp-eval-expression): Once again eval the
2332         argument, but read it as `X' does.
2334 2007-01-09  Juri Linkov  <juri@jurta.org>
2336         * info.el (Info-fontify-node): Don't hide node names of index entries.
2338         * faces.el (momentary): Change :group to basic-faces where all
2339         basic faces belong to.  Add :version.
2341 2007-01-09  Lennart Borgman  <lennart.borgman.073@student.lu.se>
2343         * tutorial.el (tutorial--display-changes): Show M-x sequence if no
2344         keybinding is found.
2345         (tutorial--find-changed-keys): Never treat null keybinding as a
2346         remapping.
2348 2007-01-09  Martin Rudalics  <rudalics@gmx.at>
2350         * wdired.el (wdired-xcase-word): Skip non-word read-only characters.
2352 2007-01-09  Kenichi Handa  <handa@m17n.org>
2354         * international/mule-cmds.el
2355         (select-safe-coding-system-interactively): Fix message.
2357 2007-01-09  Michael Albinus  <michael.albinus@gmx.de>
2359         * net/tramp.el (tramp-process-one-action): Remove `with-timeout'.
2360         (tramp-process-actions): Add optional parameter TIMEOUT.
2361         (tramp-open-connection-telnet, tramp-open-connection-rsh)
2362         (tramp-open-connection-su): Add timeout of 60".
2364 2007-01-09  Richard Stallman  <rms@gnu.org>
2366         * progmodes/compile.el (compile): Doc fix.
2368 2007-01-09  Markus Triska  <markus.triska@gmx.at>
2370         * tumme.el (tumme-display-thumb): Doc fix.
2372 2007-01-08  Juanma Barranquero  <lekktu@gmail.com>
2374         * battery.el (battery-search-for-one-match-in-files):
2375         * bindings.el (mode-line-minor-mode-help):
2376         * x-dnd.el (x-dnd-types-alist):
2377         * calendar/icalendar.el (icalendar-import-buffer):
2378         * term/mac-win.el (mac-dnd-types-alist): Fix typo in docstring.
2380         * progmodes/vhdl-mode.el (vhdl-save-caches): Fix typo in error message.
2382 2007-01-07  Chris Moore  <christopher.ian.moore@gmail.com>
2384         * replace.el (replace-regexp): Fix typo in docstring.
2386 2007-01-07  Alan Mackenzie  <acm@muc.de>
2388         * progmodes/cc-langs.el (c-operators, c-filter-ops):
2389         Amend doc-string and comments.
2391 2007-01-06  Eli Zaretskii  <eliz@gnu.org>
2393         * files.el (abbreviate-file-name): Doc fix.
2395 2007-01-06  Markus Triska  <triska@gmx.at>
2397         * subr.el (split-string): Remove spurious ")" from doc string.
2399 2007-01-05  Takaaki Ota  <Takaaki.Ota@am.sony.com>
2401         * textmodes/table.el (table--warn-incompatibility):
2402         Use display-warning instead of momentary-string-display.
2404 2007-01-05  Richard Stallman  <rms@gnu.org>
2406         * image.el (image-type-header-regexps): Recognize xbm more strictly.
2408         * simple.el (backward-kill-word): Doc fix.
2410 2007-01-05  Romain Francoise  <romain@orebokech.com>
2412         * international/mule.el (sgml-html-meta-auto-coding-function):
2413         Ensure that the buffer contains a HTML document.
2415 2007-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2417         * faces.el (momentary): Move here ...
2418         * subr.el (momentary): ... from here.
2420 2007-01-05  Nick Roberts  <nickrob@snap.net.nz>
2422         * progmodes/gdb-ui.el (gdb-max-children): New customizable variable.
2423         (gdb-speedbar-expand-node): Ask user for confirmation before expanding
2424         large structures/arrays.
2426 2007-01-04  Juanma Barranquero  <lekktu@gmail.com>
2428         * files.el (find-file-noselect-1, set-visited-file-name):
2429         Allow backup-enable-predicate to be nil.
2431 2007-01-04  Andreas Schwab  <schwab@suse.de>
2433         * progmodes/ebrowse.el (ebrowse-global-prefix-key): Fix typo in
2434         last change.
2436 2007-01-03  Richard Stallman  <rms@gnu.org>
2438         * woman.el (woman-decode-buffer): Clarify error message.
2440 2007-01-03  Alan Mackenzie  <acm@muc.de>
2442         * progmode/cc-cmds.el (c-mask-paragraph): Fix yesterday's buggy patch.
2444 2007-01-03  Chris Moore  <christopher.ian.moore@gmail.com>
2446         * tutorial.el (tutorial--describe-nonstandard-key): Fix typo.
2448 2007-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2450         * iswitchb.el (iswitchb-global-map): Use command-remapping if available.
2452 2007-01-02  Juanma Barranquero  <lekktu@gmail.com>
2454         * emulation/viper.el (viper-custom-file-name, viper-mode):
2455         Fix typos in docstrings.
2457         * subr.el (momentary-string-display): After moving point, set POS
2458         variable to it to avoid later errors once the buffer is modified.
2459         Doc fix.
2461 2007-01-02  Alan Mackenzie  <acm@muc.de>
2463         * progmodes/cc-cmds.el (c-mask-paragraph): In a block comment,
2464         check that the "*/" is present before trying to manipulate it.
2466 2007-01-02  Richard Stallman  <rms@gnu.org>
2468         * wid-edit.el (widget-choose): Avoid ugly error for function keys.
2470         * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords):
2471         Fix format of value.
2473         * cus-edit.el (customize-unsaved): Rename from customize-customized.
2474         Change messages accordingly.
2475         (customize-customized): Now alias.
2477 2007-01-02  Juanma Barranquero  <lekktu@gmail.com>
2479         * files.el (version-control): Doc fix.
2481 2007-01-01  Alan Mackenzie  <acm@muc.de>
2483         * progmodes/cc-engine.el (c-guess-basic-syntax, case 5N):
2484         Check the format of c-state-cache is valid for an optimisation before
2485         using it.
2487         * progmodes/cc-engine.el (c-guess-basic-syntax): New case 5Q "we
2488         are at a statement within a macro".  Other changes so that only
2489         the first continuation line in a macro gets the symbol
2490         `cpp-define-intro', the others getting `statement', or whatever.
2492         * progmodes/cc-cmds.el (c-context-line-break): When invoked within
2493         a string, preserve whitespace.  Add a backslash only when also in
2494         a macro.
2496         * progmodes/cc-defs.el: Correct typos.
2498         * progmodes/cc-cmds.el (c-context-line-break): Don't indent the
2499         new line after an escaped EOL in a string.
2501         * progmodes/cc-engine.el (c-forward-label): Recognise "foo:" as a
2502         label when it directly follows "else", "do", ....
2504         * progmodes/cc-engine.el (c-backward-<>-arglist): Tolerate empty
2505         angle brackets (as seen in "explicit specialisations" of C++
2506         templates).
2508         * progmodes/cc-vars.el (c-indentation-style): Mention c-file-style
2509         in the doc-string.
2511         * progmodes/cc-cmds.el (c-mask-paragraph): Fix for C comments,
2512         when the comment ender looks like "=========*/" and is alone on
2513         its line.
2515         * progmodes/cc-langs.el, progmodes/cc-engine.el: Correct the
2516         spelling of c-opt-op-identiTier-prefix, t -> f.  Leave an alias
2517         for the old name.
2519         * progmodes/cc-mode.el: Bind C-M-a and C-M-e to
2520         c-\(beginning\|end\)-of-defun by default.
2522         * progmodes/cc-align.el (c-lineup-gnu-DEFUN-intro-cont):
2523         New line-up function, for the DEFUN macro in the Emacs C sources.
2524         Only used in "gnu" style.
2526         * progmodes/cc-styles.el (c-style-alist): Use this new function in
2527         the "gnu" style.
2529         * progmodes/cc-cmds.el (c-electric-slash): Extend the handling of
2530         clean-up comment-close-slash also to work when there's a comment
2531         terminator on the line.
2532         (c-beginning-of-defun, c-end-of-defun): Refactor and optimise
2533         these for large arg - only take account of top level {..}, except
2534         for initial and final adjustments.  M-- C-M-[ae] now go to the
2535         right defuns when the starting point is between defuns.  They use
2536         the four new functions:
2537         (c-in-function-trailer-p, c-where-wrt-brace-construct)
2538         (c-backward-to-nth-BOF-{, c-forward-to-nth-EOF-}): New functions to
2539         support c-\(beginning\|end\)-of-defun.
2541         * progmodes/cc-engine.el (c-forward-label): Analyze ":"
2542         expressions more rigorously, to exclude bit-field specifiers from
2543         being classed as labels.
2544         (c-forward-label): When analyzing a ":" within a macro, be careful
2545         about using c-forward-syntactic-ws at the macro beginning.
2546         (c-beginning-of-decl-1): Whilst searching for "=" as evidence of a
2547         stmt boundary, check for "operator=", etc.
2549         * progmodes/cc-mode.el (c-postprocess-file-styles):
2550         Bind inhibit-read-only to t, around the call to
2551         c-remove-any-local-eval-or-mode-variables, so that it works on a
2552         RO file.
2554         * progmodes/cc-defs.el (c-version): Update the version number to
2555         "5.31.4".
2557 2007-01-01  Richard Stallman  <rms@gnu.org>
2559         * isearch.el (isearch-done): Use FOUND-POINT or FOUND-START
2560         only if we restored isearch-window-configuration.
2562 2006-12-31  Romain Francoise  <romain@orebokech.com>
2564         * net/tramp.el (tramp-default-method): Don't use `symbol-function'.
2566 2006-12-31  Kim F. Storm  <storm@cua.dk>
2568         * files.el (auto-mode-case-fold): New defcustom.
2569         (set-auto-mode): If non-nil, perform second case-sensitive pass
2570         through auto-mode-alist if first pass failed.
2572 2006-12-30  Richard Stallman  <rms@gnu.org>
2574         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Doc fix.
2576 2006-12-30  Ken Manheimer  <ken.manheimer@gmail.com>
2578         * allout.el (allout-encrypt-string): Handle symmetric-key
2579         passphrase caching but leave keypair caching to pgg.
2581 2006-12-30  Michael Albinus  <michael.albinus@gmx.de>
2583         Sync with Tramp 2.0.55.
2585         * net/tramp.el (tramp-completion-mode): Use `wholenump' instead of
2586         `integerp'.  `char-equal' could fail else in case of negative
2587         numbers.  Reported by Toby Speight <T.M.Speight.90@cantab.net>.
2588         (top): Check for `font-lock-add-keywords' before calling; it
2589         doesn't exist under XEmacs.
2590         (tramp-yn-prompt-regexp): Fix regexp.  Add question from plink.
2591         (tramp-completion-mode): Remove clause (not
2592         tramp-unified-filenames), because the function is called in other
2593         context too, where this check results in wrong results in the
2594         XEmacs case on Windows.
2595         (tramp-touch): UTC handling is not possible for XEmacs.
2597 2006-12-30  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2599         * scroll-bar.el (previous-scroll-bar-mode): New variable
2600         (set-scroll-bar-mode): Set previous-scroll-bar-mode.
2601         (scroll-bar-mode): Use previous-scroll-bar-mode if set.
2603         * term/x-win.el: Set scroll bar mode to right if set by X resources.
2605 2006-12-30  Richard Stallman  <rms@gnu.org>
2607         * files.el (make-backup-file-name-1): Precompute abs name
2608         but don't lose the relative name.
2610         * international/mule-cmds.el (select-safe-coding-system-interactively):
2611         Fix message.
2613 2006-12-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>  (tiny change)
2615         * files.el (backup-buffer): Show entire backup file name in msg.
2617 2006-12-30  Juanma Barranquero  <lekktu@gmail.com>
2619         * image.el (image-type-header-regexps, image-type-from-data)
2620         (image-type-from-buffer, image-type-from-file-header):
2621         Revert changes from 2006-12-26.
2622         (image-type-auto-detectable): New variable.
2623         (image-type-auto-detected-p): New function.
2625         * files.el (magic-mode-alist): Detect image files with
2626         `image-type-auto-detected-p' instead of `image-type-from-buffer'.
2628 2006-12-29  Nick Roberts  <nickrob@snap.net.nz>
2630         * dired.el (dired-sort-other): Move test for dired-mode...
2631         (dired-sort-set-modeline): ...to here.
2633 2006-12-29  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
2635         * textmodes/fill.el (fill-comment-paragraph): Document 2006-12-24
2636         change.  Suggested by Stefan Monnier.
2638 2006-12-29  Kim F. Storm  <storm@cua.dk>
2640         * emacs-lisp/bindat.el (bindat--unpack-group, bindat--length-group)
2641         (bindat--pack-group): Let-bind COUNT during repeat block evaluation.
2643 2006-12-27  Kim F. Storm  <storm@cua.dk>
2645         * emacs-lisp/authors.el (authors-aliases): Anchor FSF alias regexp,
2646         so it doesn't accidentally match an fsf.org mail address.
2647         (authors-renamed-files-alist): Add tcover-*.el.
2649 2006-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2651         * vc-arch.el (vc-arch-find-version): New function.
2653         * vc-hooks.el (vc-version-backup-file-name): Revision names may be
2654         composed of arbitrary characters (even /) in some systems.
2656 2006-12-27  Eli Zaretskii  <eliz@gnu.org>
2658         * international/mule-cmds.el (select-safe-coding-system-interactively):
2659         Improve the message in the *Warning* buffer.
2661 2006-12-27  Kim F. Storm  <storm@cua.dk>
2663         * ido.el (ido-set-matches-1): Fix last change.  If default item is
2664         current buffer, it is ok to be first.
2666 2006-12-27  Kenichi Handa  <handa@m17n.org>
2668         * international/mule-cmds.el (select-safe-coding-system-interactively):
2669         Use face `link' for problematic chars.
2671 2006-12-27  Kenichi Handa  <handa@m17n.org>
2673         * international/mule-cmds.el (select-safe-coding-system-interactively):
2674         Improve the message in *Warning* buffer.
2676 2006-12-27  Kim F. Storm  <storm@cua.dk>
2678         * ido.el (ido-set-matches-1): Never put current buffer first if
2679         there are other matches.
2681 2006-12-26  Nick Roberts  <nickrob@snap.net.nz>
2683         * progmodes/gdb-ui.el (gud-watch): Allow duplicate names for watch
2684         expressions.
2685         (gdb-var-delete): Handle duplicate names.  Print message for non
2686         root expressions.
2687         (gdb-partial-output-name): Start buffer name with a space.
2688         (gdb-info-breakpoints-custom, gdb-reset): Handle space in above
2689         buffer name.
2691 2006-12-26  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
2693         * mail/footnote.el (Footnote-insert-footnote): Fix the search of the
2694         last footnote when `footnote-spaced-footnotes' is nil.
2696 2006-12-26  Richard Stallman  <rms@gnu.org>
2698         * cus-edit.el (custom-browse-sort-alphabetically)
2699         (custom-buffer-sort-alphabetically)
2700         (custom-menu-sort-alphabetically): Doc fixes.  Add autoloads.
2702         * image.el (image-type-header-regexps): Change element format
2703         to include third item NOT-ALWAYS.
2704         (image-type-from-data): Handle new format.
2705         (image-type-from-buffer): Handle new format.  New arg INCLUDE-MAYBES.
2706         (image-type-from-file-header): Pass t for INCLUDE-MAYBES.
2708 2006-12-26  Guanpeng Xu  <herberteuler@hotmail.com>
2710         * add-log.el (add-log-current-defun): Call `forward-sexp'
2711         multiple times to pick a member function name defined as
2712         part of nested classes/namespaces.
2714 2006-12-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2716         * emacs-lisp/easymenu.el (easy-menu-change): New arg MAP to indicate
2717         which keymap should be used to change menu.  It does not affect any
2718         existent code.
2720 2006-12-26  Richard Stallman  <rms@gnu.org>
2722         * textmodes/fill.el (fill-paragraph): Check for a minibuffer
2723         rather than for being in a minibuffer window.
2725 2006-12-25  Daiki Ueno  <ueno@unixuser.org>
2727         * pgg-def.el (pgg-passphrase-coding-system): Default to nil instead of
2728         locale-coding-system.
2729         * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with eol-type
2730         LF.
2732 2006-12-25  Michael R. Mauger  <mmaug@yahoo.com>
2734         * progmodes/sql.el (sql-mode-abbrev-table): Correct initialization.
2735         (sql-mode-syntax-table): Disable double quoted strings.
2736         (sql-mode-font-lock-object-name): Add TYPE and TYPE BODY.
2738 2006-12-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2740         * startup.el (fancy-splash-last-input-event): New variable.
2741         (fancy-splash-special-event-action): New function.
2742         (fancy-splash-screens): Temporarily bind special events to it.
2743         Execute command for saved special event before exiting from
2744         recursive editing.
2746         * term/mac-win.el (mac-keyboard-translate-char, mac-unread-string):
2747         New functions.
2748         (mac-ts-update-active-input-area, mac-ts-unicode-for-key-event):
2749         Use mac-unread-string.
2751 2006-12-24  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
2753         * textmodes/fill.el (fill-comment-paragraph): Prevent the use of
2754         an optimized comment regexp if `comment-start-skip' uses a ^.
2755         * bs.el (bs--up): Remove interactive spec.
2757 2006-12-24  Chong Yidong  <cyd@stupidchicken.com>
2759         * woman.el (woman-decode-buffer): Signal error for alien macro sets.
2760         Suggested by James Cloos.
2762 2006-12-24  Kevin Ryde  <user42@zip.com.au>
2764         * calendar/cal-dst.el (calendar-dst-starts): Default to second Sunday
2765         in March.
2766         (calendar-dst-ends): Default to first Sunday in November.
2768 2006-12-24  Ken Manheimer  <ken.manheimer@gmail.com>
2770         * allout.el (allout-encrypt-string): Inhibit use of agent within
2771         body of let form where encryption happens.  Acknowledge non-use of
2772         gpg-agent in docstring.
2773         (allout-toggle-subtree-encryption): Acknowledge non-use of
2774         gpg-agent in docstring.
2776 2006-12-24  Chong Yidong  <cyd@stupidchicken.com>
2778         * custom.el (custom-add-frequent-value): Alias for custom-add-option.
2780 2006-12-23  Michael Kifer  <kifer@cs.stonybrook.edu>
2782         * ediff-diff.el (ediff-diff-options): Clarify docstring.
2783         (ediff-setup-diff-regions): Disallow -u in ediff-diff-options.
2785         * viper-cmd.el (viper-post-command-sentinel): Protect against errors
2786         in hooks.
2787         (viper-add-newline-at-eob-if-necessary): Add newline only if we
2788         actually modify buffer; ignore errors if occur.
2790 2006-12-23  Chong Yidong  <cyd@stupidchicken.com>
2792         * calendar/calendar.el (calendar-mode-map): Switch < and >.
2793         (calendar-mode-line-format): Use mouse-1 bindings, and tweak
2794         formatting.
2796 2006-12-23  Richard Stallman  <rms@gnu.org>
2798         * simple.el (delete-horizontal-space): Doc fix.
2800 2006-12-23  Eli Zaretskii  <eliz@gnu.org>
2802         * makefile.w32-in (bootstrap-clean): Run bootstrap-clean-$(SHELLTYPE)
2803         explicitly in a recursive Make, not implicitly through prerequisites,
2804         since the latter is wrong under parallel builds.
2806 2006-12-22  Eli Zaretskii  <eliz@gnu.org>
2808         * w32-fns.el (convert-standard-filename): Wrap in save-match-data.
2810 2006-12-22  Kevin Rodgers  <kevin.d.rodgers@gmail.com>  (tiny change)
2812         * progmodes/sh-script.el (sh-make-vars-local): Fix a typo in
2813         message string.
2815 2006-12-22  Ben North  <ben@redfrontdoor.org>  (tiny change)
2817         * outline.el (outline-next-visible-heading): Fix the case with a
2818         header at end-of-file with no final newline.
2820 2006-12-22  Robert Thorpe  <rthorpe@realworldtech.com>  (tiny change)
2822         * indent.el (tab-always-indent): Doc fix.
2824 2006-12-22  Chong Yidong  <cyd@stupidchicken.com>
2826         * info.el (Info-fontify-maximum-menu-size): Bump to 1000000.
2827         (Info-fontify-node): Do fontify indices.
2829         * tutorial.el (tutorial--detailed-help): Remove unnecessary link
2830         to the Emacs Lisp reference manual.
2831         (tutorial--tab-map): Remove.  All callers changed.
2832         (tutorial--find-changed-keys): New elt QUIET, used to...
2833         (tutorial--display-changes): ...ensure that warning messages are
2834         only issued once per changed key.
2835         (tutorial--remove-remarks): Delete unused code-path.
2836         (lang-strings): Remove extraneous formatting.
2837         (tutorial--save-tutorial): Prompt before saving tutorial state.
2839 2006-12-21  Chong Yidong  <cyd@stupidchicken.com>
2841         * tutorial.el: Remove `cl' requirement.  Clean up whitespace.
2842         Replace '?\ ' by '?\s' throughout.
2843         (tutorial-warning-face): Inherit font-lock-warning-face.  Move to
2844         `help' custom group.
2845         (tutorial--key-description): New function.
2846         (tutorial--display-changes): Remove redundant arg.  Scan for all
2847         key sequences to avoid false matches.  Cleanup.
2848         (tutorial--saved-dir): Save to a subdirectory in .emacs.d to
2849         reduce homedir pollution.
2850         (help-with-tutorial): Call tutorial--display-changes with no arg.
2852 2006-12-21  Carsten Dominik  <dominik@science.uva.nl>
2854         * textmodes/org.el (org-mode-map): Bind org-complete also to M-\t.
2856 2006-12-20  Michael Albinus  <michael.albinus@gmx.de>
2858         * net/tramp.el (tramp-default-method): We still need to check for
2859         `executable-find', because it is not bound under Emacs 20.
2860         (tramp-handle-file-name-completion)
2861         (tramp-completion-handle-file-name-completion): Handle optional
2862         parameter PREDICATE.
2863         (tramp-find-default-method): Add code for default values.
2865 2006-12-20  Nick Roberts  <nickrob@snap.net.nz>
2867         * progmodes/gdb-ui.el (gdb-stopped): After attaching to a process
2868         make gud-go send "continue".
2870 2006-12-19  Juanma Barranquero  <lekktu@gmail.com>
2872         * image.el (image-type-header-regexps): Be more specific detecting `pbm'
2873         and `png' files.  Use non-capturing parenthesis for `tiff' regexp.
2875 2006-12-19  Kim F. Storm  <storm@cua.dk>
2877         * bindings.el: Bind sigusr1 and sigusr2 in special-event-map
2878         instead of global-map.
2880         * files.el (magic-mode-alist): Allow matching file type by
2881         calling a function at bob.  Check for image types by calling
2882         image-type-from-buffer.  Suggested by Juanma Barranquero.
2883         (set-auto-mode): Do it.
2885 2006-12-19  Michael Albinus  <michael.albinus@gmx.de>
2887         * net/tramp.el (tramp-methods): Introduce new method `scpc'.
2888         Remove "ControlMaster" option from the other `scp*' methods.
2889         (tramp-default-method): Check for ssh-agent before setting to `scp'.
2891 2006-12-18  Carsten Dominik  <dominik@science.uva.nl>
2893         * textmodes/org.el (org-mode): Show context after isearch.
2894         (org-show-siblings): New function.
2895         (org-show-context): Use `org-show-siblings'.
2897 2006-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2899         * emacs-lisp/syntax.el (syntax-ppss-flush-cache, syntax-ppss):
2900         Use syntax-ppss-toplevel-pos.
2902 2006-12-18  Carsten Dominik  <dominik@science.uva.nl>
2904         * textmodes/org.el (org-current-line): Make sure that lines are
2905         counted from beginning of buffer.
2906         (org-table-copy-region, org-table-paste-rectangle): Make sure that
2907         lines are counted from beginning of buffer.
2909 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
2911         * info.el (Info-build-node-completions): Signal error if tag-table
2912         marker is not found.
2914         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
2916 2006-12-17  Alan Mackenzie  <acm@muc.de>
2918         * emacs-lisp/lisp.el (beginning-of-defun-raw): Optimise (for
2919         speed) the case when open-paren-in-column-0-is-defun-start is nil.
2920         Based on code by Martin Rudalics.
2922         * progmodes/cc-mode.el (c-basic-common-init): Don't set
2923         open-paren-in-column-0-is-defun-start to nil any more.
2925 2006-12-17  Richard Stallman  <rms@gnu.org>
2927         * simple.el (delete-horizontal-space): Use prefix arg.
2929         * help-fns.el (describe-variable): Improve blank separator lines.
2931         * files.el (magic-mode-alist): Mark as risky.
2933         * files.el (make-backup-file-name-1):
2934         Expand backup-directory explicitly.
2936 2006-12-17  Michael Albinus  <michael.albinus@gmx.de>
2938         * net/tramp.el (tramp-default-method): Before setting to "pscp",
2939         check whether package password.el is loaded, or Pageant is running.
2941 2006-12-17  Ulf Jasper  <ulf.jasper@web.de>
2943         * calendar/icalendar.el (icalendar-version): Increase to "0.14".
2944         (icalendar--rris): First try Emacs, then XEmacs.
2945         (icalendar--convert-ical-to-diary): Doc fix.
2946         Insert newline at end of target file.
2948 2006-12-17  Kim F. Storm  <storm@cua.dk>
2950         * outline.el (outline-isearch-open-invisible-function): New defvar.
2951         (outline-flag-region): Use it if non-nil for isearch-open-invisible
2952         overlay property instead of outline-isearch-open-invisible.
2954 2006-12-16  Kim F. Storm  <storm@cua.dk>
2956         * ido.el (ido-completion-help): Build ido-cur-list and ido-matches
2957         if ido-directory-too-big is set on entry.
2958         (ido-toggle-ignore, ido-completion-help): Print message while
2959         reading big directory.
2961 2006-12-15  Richard Stallman  <rms@gnu.org>
2963         * shell.el (shell): Doc fix.
2965 2006-12-15  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
2967         * emulation/edt.el (edt-xserver):
2968         * emulation/edt-mapper.el (edt-xserver): Replace `/' with a `-',
2969         to fix a problem on Cygwin.
2971         * emulation/edt.el
2972         * emulation/edt-mapper.el
2973         * emulation/edt-lk201.el
2974         * emulation/edt-pc.el
2975         * emulation/edt-vt100.el: Update maintainer's email address.
2977 2006-12-15  Simon Marshall  <simon@gnu.org>
2979         * progmodes/cc-fonts.el (c-font-lock-declarations): Fix previous change.
2981 2006-12-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2983         * term/mac-win.el (mac-atsu-font-table): Remove defvar.
2984         (mac-handle-font-selection): Use mac-atsu-font-face-attributes
2985         instead of mac-atsu-font-table.
2986         (fontset-default): Specify argument MAXIMUM in x-list-fonts calls.
2988 2006-12-14  Stephen Leake  <stephen_leake@member.fsf.org>
2990         * align.el (align-match-tex-pattern): Fix a rare bug which
2991         hanged Emacs.
2993 2006-12-14  Richard Stallman  <rms@gnu.org>
2995         * startup.el (use-fancy-splash-screens-p): Use frame-height
2996         instead of window-height.  Pass frame to image-size.
2998 2006-12-13  Kenichi Handa  <handa@m17n.org>
3000         * international/mule-cmds.el (set-locale-environment):
3001         Set default-sendmail-coding-system too.
3003 2006-12-12  J.D. Smith  <jdsmith@as.arizona.edu>
3005         * progmodes/idlw-help.el: Fix copyright notice.
3007 2006-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3009         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos): New fun.
3011 2006-12-11  Juanma Barranquero  <lekktu@gmail.com>
3013         * subr.el (unread-command-char): Reformat obsolescence info.
3015 2006-12-11  Richard Stallman  <rms@gnu.org>
3017         * emacs-lisp/cl-macs.el (defstruct): Suppress warnings
3018         about calls to cl-struct-setf-expander.
3020 2006-12-11  Juanma Barranquero  <lekktu@gmail.com>
3022         * ediff-merg.el (ediff-show-clashes-only): Doc fix.
3023         (ediff-combination-pattern): Fix typo in docstring.
3025         * textmodes/refer.el (refer-find-entry): Doc fix.
3026         (refer-bib-files-regexp, refer-bib-directory, refer-bib-files)
3027         (refer-cache-bib-files, refer-find-next-entry, refer-yank-key):
3028         Fix tipos in docstrings.
3030         * progmodes/idlwave.el (idlwave-library-path): Fix typos in docstring.
3032 2006-12-10  Kim F. Storm  <storm@cua.dk>
3034         * ido.el (ido-init-completion-maps): Remap backward-kill-word
3035         instead of binding M-backspace.
3037 2006-12-10  Juanma Barranquero  <lekktu@gmail.com>
3039         * replace.el (replace-match-data, replace-match-maybe-edit):
3040         * calc/calc-aent.el (calc-eval-error):
3041         * emulation/vi.el (vi-char-argument):
3042         * progmodes/cc-langs.el (c-at-vsemi-p-fn)
3043         (c-vsemi-status-unknown-p-fn): Doc fixes.
3045 2006-12-10  Chong Yidong  <cyd@stupidchicken.com>
3047         * menu-bar.el (menu-bar-showhide-menu, menu-bar-tools-menu)
3048         (menu-bar-help-menu): Tooltip fixes.  Suggested by Francis Wright.
3050 2006-12-10  Masatake YAMATO  <jet@gyve.org>
3052         * progmodes/ld-script.el (ld-script-keywords): Fix a typo.
3054 2006-12-09  Chong Yidong  <cyd@stupidchicken.com>
3056         * mouse-sel.el (mouse-sel-mode): Register mouse-2 as a click type.
3058         * man.el (Man-xref-button-action): New function.  If the
3059         `Man-target-string' button property is a function, assume it
3060         accepts a position argument.
3061         (Man-abstract-xref-man-page): Use it.
3062         (Man-default-man-entry): New optional arg POS.
3064         * wdired.el (wdired-preprocess-symlinks): Make the spaces after
3065         symlink arrows read-only and non-rear-sticky.
3067 2006-12-09  Martin Rudalics  <rudalics@gmx.at>
3069         * wdired.el (wdired-change-to-wdired-mode, wdired-finish-edit)
3070         (wdired-search-and-rename): Simplify code.
3071         (wdired-preprocess-files, wdired-preprocess-perms): Make
3072         read-only property of preceding character rear-nonsticky to
3073         avoid that it can be modified.  Put old-name and old-link
3074         properties on character preceding name and replace
3075         put-text-property by add-text-properties.
3076         (wdired-get-filename, wdired-get-previous-link): Get old-name
3077         and old-link properties from character preceding name and
3078         simplify code.
3079         (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit)
3080         (wdired-perms-to-number): Make local-map property
3081         rear-nonsticky to avoid that text following permissions may be
3082         modified.  Use add-text-properties instead of put-text-property
3083         when changing a permission bit.
3084         (wdired-change-to-dired-mode): Remove stickiness properties.
3086 2006-12-09  Juanma Barranquero  <lekktu@gmail.com>
3088         * international/mule-cmds.el (register-input-method): Doc fix.
3090 2006-12-09  Masayuki Ataka  <masayuki.ataka@gmail.com>  (tiny change)
3092         * cmuscheme.el (scheme-start-file): Use `let*', not `let'.
3094 2006-12-09  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3096         * textmodes/flyspell.el (flyspell-hack-local-variables-hook): New.
3097         Force buffer local defs evaluation on local variables loading.
3098         (flyspell-mode-on, flyspell-mode-off): Use it in
3099         `hack-local-variables-hook'.
3101 2006-12-09  Eli Zaretskii  <eliz@gnu.org>
3103         * emacs-lisp/find-func.el (find-variable): Doc fix.
3105         * help-fns.el (variable-at-point): Doc fix.
3107         * w32-fns.el (w32-append-code-lines): New function.
3109 2006-12-09  Romain Francoise  <romain@orebokech.com>
3111         * comint.el (comint-insert-input): Delete obsolete comment.
3113 2006-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3115         * net/browse-url.el (browse-url): Set DISPLAY to the one of the
3116         current frame, in case we're connected to several displays.
3118 2006-12-08  Juanma Barranquero  <lekktu@gmail.com>
3120         * frame.el (other-frame): Doc fix.
3121         (set-frame-parameter): Fix typo in docstring.
3123 2006-12-07  Kim F. Storm  <storm@cua.dk>
3125         * info.el (Info-index): Strip leading colon from topic.
3127 2006-12-07  Nick Roberts  <nickrob@snap.net.nz>
3129         * progmodes/gud.el (gud-speedbar-buttons): Deal with references
3130         to pointers.
3132 2006-12-05  J.D. Smith  <jdsmith@as.arizona.edu>
3134         * progmodes/idlwave.el (idlwave-xml-create-class-method-lists):
3135         Trim out spurious class inheritance "None" entries.
3137 2006-12-05  Kim F. Storm  <storm@cua.dk>
3139         * emulation/cua-base.el (cua-paste-pop-rotate-temporarily): Doc fix.
3140         (cua-paste-pop): Rework last change for
3141         cua-paste-pop-rotate-temporarily, so first M-y and C-y works alike,
3142         pasting the head of the kill-ring, and prefix arg C-u M-y inserts the
3143         text inserted by the last M-y command.
3145 2006-12-05  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3147         * cmuscheme.el (run-scheme, scheme-start-file): Search the start
3148         file in ~/.emacs.d as `init_SCHEMENAME.scm' instead.
3150         * shell.el (shell): Search the start file in ~/.emacs.d as
3151         `init_SHELLNAME.sh' instead.
3153 2006-12-05  Glenn Morris  <rgm@gnu.org>
3155         * progmodes/cperl-mode.el (cperl-mode)
3156         * progmodes/f90.el (f90-mode-abbrev-table)
3157         * progmodes/fortran.el (fortran-mode-abbrev-table)
3158         * progmodes/octave-mod.el (octave-abbrev-table)
3159         * progmodes/sql.el (sql-mode-abbrev-table): Define abbrevs even
3160         if abbrev-table is non-nil (saved user abbrevs may have been restored).
3162         * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init): Do not
3163         clear abbrev table, else saved abbrevs will not be restored.
3165 2006-12-04  Juanma Barranquero  <lekktu@gmail.com>
3167         * facemenu.el (facemenu-unlisted-faces): Put obsolescence info in
3168         the call to `make-obsolete-variable', not in the docstring.
3170 2006-12-04  Chong Yidong  <cyd@stupidchicken.com>
3172         * facemenu.el (facemenu-unlisted-faces): Define as obsolete variable.
3174 2006-12-04  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3176         * progmodes/ebnf-abn.el:
3177         * progmodes/ebnf-bnf.el:
3178         * progmodes/ebnf-dtd.el:
3179         * progmodes/ebnf-ebx.el:
3180         * progmodes/ebnf-iso.el:
3181         * progmodes/ebnf-otz.el:
3182         * progmodes/ebnf-yac.el:
3183         * progmodes/ebnf2ps.el:
3184         * delim-col.el:
3185         * printing.el:
3186         * ps-bdf.el:
3187         * ps-mule.el:
3188         * ps-print.el: Remove 'Time-stamp' comment mark.
3190         * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
3191         'easy-menu-add-item' when called in Emacs 21 or higher.
3193 2006-12-04  Stephen Leake  <stephen_leake@stephe-leake.org>
3195         * progmodes/ada-xref.el (ada-check-current): Doc fix.
3196         (ada-make-body-gnatstub): Doc fix.  Remove redundant `progn'.
3198 2006-12-04  Kim F. Storm  <storm@cua.dk>
3200         * bindings.el (global-map): Bind [signal t] to ignore, to have
3201         user signals ignored by default.
3203 2006-12-04  Juanma Barranquero  <lekktu@gmail.com>
3205         * descr-text.el (describe-char-unicode-data): Use a hidden buffer for
3206         Unicode data file pointed to by `describe-char-unicodedata-file'.
3208 2006-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3210         * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Fix pathological
3211         O(n^2) regexp-search by anchoring the search.
3213 2006-12-04  Dan Nicolaescu  <dann@ics.uci.edu>
3215         * whitespace.el (whitespace-cleanup-internal): Use current
3216         argument for recursive call.
3218 2006-12-04  Michael Albinus  <michael.albinus@gmx.de>
3220         * net/tramp.el (tramp-methods): Add "ControlPath" and
3221         "ControlMaster" to scp, scp1 and scp2 methods.  Suggested by
3222         Andreas Schwab <schwab@suse.de>.
3223         (tramp-do-copy-or-rename-file-out-of-band)
3224         (tramp-open-connection-rsh): Compute format spec for ?t.
3225         (tramp-process-actions): Trace command parameters.
3227 2006-12-04  Nick Roberts  <nickrob@snap.net.nz>
3229         * simple.el (toggle-truncate-lines): Clarify doc string.
3231         * progmodes/gdb-ui.el (gdb-var-delete-children): New function.
3232         (gdb-speedbar-expand-node): Use it.
3234 2006-12-04  Richard Stallman  <rms@gnu.org>
3236         * progmodes/python.el (python-indent): Add safe-local-variable prop.
3238         * dired.el (dired-revert): Turn off dired-after-readin-hook
3239         around call to dired-readin.
3241         * menu-bar.el (menu-bar-make-toggle): Add "globally"
3242         to echo area messages.
3243         <indicate-empty-lines, case-fold-search>:
3244         Add "globally" to Help string.
3245         <case-fold-search>: MESSAGE arg need not say "globally".
3246         (menu-bar-edit-menu <paste-from-menu>): Rename from select-and-paste.
3248 2006-12-03  Liam Healy  <lnp@healy.washington.dc.us>  (tiny change)
3250         * outline.el (outline-end-of-subtree): Don't leave an empty
3251         line hidden as we would a real next heading.
3253 2006-12-03  Ken Manheimer  <ken.manheimer@gmail.com>
3255         * allout.el (allout-ascend): Add an optional argument to preserve
3256         original position of point when unsuccessful.  Also, fix a
3257         docstring error.
3258         (allout-yank-processing): Fix depth shift of multiple-topic so yanks
3259         work again, using allout-ascend's new option.
3260         (allout-setup-mode-map): Extract from allout-mode to initialize
3261         allout-mode-map.  Call it on file load, so the mode docstring
3262         substitutions work even if allout mode has not yet been invoked.
3263         (allout-mode): Use new allout-setup-mode-map to track any keybinding
3264         customizations since the map was last processed.  Also, refine the
3265         docstring so it's ship-shape for release.
3266         (allout-default-layout, allout-beginning-of-line-cycles)
3267         (allout-distinctive-bullets-string, allout-use-mode-specific-leader)
3268         (allout-encrypt-unencrypted-on-saves, allout-inhibit-auto-fill)
3269         (allout-version, allout-layout, allout-infer-body-reindent)
3270         (allout-infer-header-lead-and-primary-bullet, allout-view-change-hook)
3271         (allout-init, allout-mode, allout-next-heading, allout-chart-subtree)
3272         (allout-previous-heading, allout-goto-prefix-doublechecked)
3273         (allout-current-bullet-pos, allout-next-sibling-leap)
3274         (allout-pre-command-business, allout-encrypted-type-prefix)
3275         (allout-make-topic-prefix, allout-open-topic, allout-rebullet-heading)
3276         (allout-rebullet-topic, allout-rebullet-topic-grunt)
3277         (allout-flag-region, allout-expose-topic, allout-expose-topic)
3278         (allout-old-expose-topic, allout-listify-exposed)
3279         (allout-process-exposed, allout-latex-verb-quote)
3280         (allout-latex-verbatim-quote-curr-line, allout-adjust-file-variable)
3281         (allout-toggle-current-subtree-encryption)
3282         (allout-toggle-subtree-encryption, allout-bullet-isearch):
3283         Remove extraneous open-paren and close paren string escapes.
3285 2006-12-03  Juanma Barranquero  <lekktu@gmail.com>
3287         * progmodes/ada-xref.el (is-windows, ada-find-in-src-path): Doc fixes.
3288         (ada-xref-pos-ring-max, ada-xref-project-files, ada-xref-initialize)
3289         (ada-prj-default-comp-cmd, ada-quote-cmd, ada-compile-current):
3290         Fix typos in docstrings.
3292 2006-12-03  Glenn Morris  <rgm@gnu.org>
3294         * progmodes/cc-align.el
3295         * progmodes/cc-awk.el
3296         * progmodes/cc-cmds.el
3297         * progmodes/cc-compat.el
3298         * progmodes/cc-defs.el
3299         * progmodes/cc-engine.el
3300         * progmodes/cc-langs.el
3301         * progmodes/cc-menus.el
3302         * progmodes/cc-mode.el
3303         * progmodes/cc-styles.el
3304         * progmodes/cc-vars.el
3305         * progmodes/vhdl-mode.el: Fix Copyright format.
3307 2006-12-02  Chong Yidong  <cyd@stupidchicken.com>
3309         * mouse.el (mouse-drag-track): Suppress automatic hscrolling for
3310         initial down event.
3312 2006-12-02  Kim F. Storm  <storm@cua.dk>
3314         * emulation/cua-base.el (cua-toggle-set-mark): Doc fix.
3315         (cua-repeat-replace-region): Make M-v more robust.
3316         (cua-paste-pop-rotate-temporarily): New defcustom.
3317         (cua-paste-pop): Use it.
3318         (cua-auto-mark-last-change): New defcustom.
3319         (cua-pop-to-last-change): New helper function.
3320         (cua-set-mark): Use them.
3322 2006-12-01  Nick Roberts  <nickrob@snap.net.nz>
3324         * menu-bar.el (toggle-case-fold-search): Clarify doc/help string and
3325         mini-buffer message.
3327 2006-12-01  Juanma Barranquero  <lekktu@gmail.com>
3329         * descr-text.el (describe-char-unicodedata-file): Fix typo in docstring.
3331 2006-12-01  Ben North  <ben@redfrontdoor.org>
3333         * paren.el: Fix the highlight overlay extension when the user types a
3334         sequence of char very fast just before the open parenthesis.
3336 2006-12-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3338         * ps-mule.el: Eliminate Emacs 20 compatibility.
3340         * ps-print.el: Eliminate Emacs 20 & 21 compatibility.
3341         (ps-print-version): New version 6.7.
3342         (ps-print-quote): Replace '?\ ' by '?\s'.
3344 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
3346         * hexl.el (hexl-goto-address, hexl-forward-char, hexl-forward-short)
3347         (hexl-forward-word, hexl-previous-line, hexl-beginning-of-1k-page)
3348         (hexl-end-of-1k-page): Doc fixes.
3349         (hexl-address-region, hexl-ascii-region, hexl-highlight-line-range):
3350         Fix typos in docstrings.
3352 2006-11-30  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3354         * ido.el (ido-local-file-exists-p): New.  Tell if a file exists
3355         locally, i.e. without using file name handlers.
3356         (ido-read-internal): Allow mono letter host names, avoiding the
3357         `c:' problem by testing if the file exists locally.
3358         (ido-complete, ido-make-file-list, ido-exhibit): Ditto.
3360 2006-11-30  Masatake YAMATO  <jet@gyve.org>
3362         * hexl.el (hl-line-range-function, hl-line-face): Declare variables
3363         to avoid bytecomp warnings.
3364         (hexl-mode-old-ruler-function): New variable.
3365         (hexl-follow-line): Bind `hexl-mode-old-hl-line-range-function'
3366         and `hl-line-range-function' after `require' hl-line.
3367         Then bind `hl-line-range-function' and `hl-line-face'.
3368         Don't require frame.  Don't use `with-no-warnings'.
3369         (hexl-activate-ruler): Store the original value of
3370         `ruler-mode-ruler-function' to `hexl-mode-old-ruler-function'.
3371         (hexl-mode-exit): Restore the original value of
3372         `ruler-mode-ruler-function'.
3374 2006-11-30  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
3376         * hexl.el (hexl-mode-old-hl-line-range-function): New variable.
3377         (hexl-mode-old-hl-line-face): New variable.
3378         (hexl-mode, hexl-mode-exit): Fix the highlighting of the current
3379         line when exit from the hexl-mode.
3381 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
3383         * emacs-lisp/bytecomp.el (byte-optimize, byte-compile-warnings):
3384         Doc fixes.
3386         * international/fontset.el (create-fontset-from-ascii-font)
3387         (create-fontset-from-fontset-spec, x-compose-font-name): Doc fixes.
3388         (fontset-name-p): Fix typo in docstring.
3390         * progmodes/cc-cmds.el (c-indent-exp): Fix typo in docstring.
3392 2006-11-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3394         * ps-bdf.el: Fix maintainer email.
3396         * ps-mule.el: Fix maintainer email.  Define functions for Emacs 20
3397         compatibility.
3399         * ps-print.el: Fix maintainer email.  Define functions for Emacs 20 &
3400         21 compatibility.
3401         (ps-print-quote): Replace '?\s' by '?\ ' to keep compatibility with
3402         Emacs 20 & 21.
3404 2006-11-29  J.D. Smith  <jdsmith@as.arizona.edu>
3406         * progmodes/idlwave.el (idlwave-auto-fill):
3407         Remove paragraph-start let to prevent auto-fill giving up.
3409 2006-11-28  Juanma Barranquero  <lekktu@gmail.com>
3411         * vt100-led.el (led-state): Fix typo in previous change.
3413 2006-11-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
3415         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3416         Fix interactive spec of the functions getting defined to make them
3417         work as documented.
3419 2006-11-28  Chong Yidong  <cyd@stupidchicken.com>
3421         * startup.el (fancy-splash-screens): Hide initial splash buffer.
3423 2006-11-28  Kim F. Storm  <storm@cua.dk>
3425         * icomplete.el (icomplete-tidy, icomplete-exhibit): Check that
3426         icomplete-mode is enabled.
3428 2006-11-28  Carsten Dominik  <dominik@science.uva.nl>
3430         * textmodes/org.el (require): Require gnus-sum during compilation
3431         to avoid problem with a macro call.
3433 2006-11-28  Glenn Morris  <rgm@gnu.org>
3435         * emacs-lisp/authors.el (authors-aliases): Add new alias.
3437         * progmodes/fortran.el (fortran-font-lock-keywords-4): Add `min'.
3438         (fortran-window-create-momentarily): Do not need string-to-char.
3440 2006-11-28  Richard Stallman  <rms@gnu.org>
3442         * emacs-lisp/bytecomp.el (byte-compile-get-constant):
3443         Replace incorrect use of assoc-default with a loop.
3445         * term.el (term-exec-1): Set envvar INSIDE_EMACS.
3447         * simple.el (next-error-find-buffer): Improve messages.
3449         * files.el (revert-buffer): Special error message if file
3450         is now not readable.
3452         * facemenu.el (facemenu-add-new-face): Improve doc strings of
3453         constructed commands.
3455         * comint.el (comint-exec-1): Provide Emacs version and `comint'
3456         in INSIDE_EMACS.
3458 2006-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3460         * diff-mode.el (diff-mode-map): Add a binding for unified->context.
3462         * server.el: Remove spurious * in docstrings.
3463         (server-process-filter): Exit from recursive editing before processing
3464         a new request.
3466 2006-11-27  J.D. Smith  <jdsmith@as.arizona.edu>
3468         * progmodes/hideshow.el (hs-already-hidden-p): Move to end of
3469         line so hidden blocks will be correctly identified.
3471 2006-11-27  Juanma Barranquero  <lekktu@gmail.com>
3473         * ledit.el (ledit-save-defun, ledit-mode):
3474         * resume.el (resume-emacs-args-buffer):
3475         * rot13.el (rot13-display-table, rot13-translate-table, rot13)
3476         (rot13-string, rot13-region, rot13-other-window, toggle-rot13-mode):
3477         * vmsproc.el (subprocess-input, start-subprocess, subprocess-command)
3478         (command-send-input, command-kill-line):
3479         * vt100-led.el (led-state, led-on): Fix typos in docstrings.
3481         * autoarg.el (autoarg-kp-mode): Doc fix.
3483         * emacs-lock.el (toggle-emacs-lock): Doc fix.  Simplify.
3484         (emacs-lock-check-buffer-lock): Doc fix.  Use `when'.
3485         (check-emacs-lock): Doc fix.  Simplify.
3487         * iimage.el (iimage-mode-image-regex-alist): Doc fix.
3488         (iimage-mode-buffer): Fix typos in docstring.
3490         * misc.el (zap-up-to-char): Doc fix.
3492         * time-stamp.el: Fix comment and obsolescence string for old
3493         functions.  Use `dolist' instead of `while'.
3495         * userlock.el (ask-user-about-lock-help): Fix typos in output message.
3497         * disp-table.el (standard-display-8bit, standard-display-default):
3498         * ebuff-menu.el (electric-buffer-list):
3499         * ehelp.el (electric-help-command-loop):
3500         * font-core.el (font-lock-mode):
3501         * help-macro.el (make-help-screen):
3502         * help.el (describe-minor-mode-completion-table-for-indicator)
3503         (lookup-minor-mode-from-indicator):
3504         * indent.el (tab-to-tab-stop, move-to-tab-stop):
3505         * info-look.el (info-lookup-guess-custom-symbol):
3506         * locate.el (locate-main-listing-line-p, locate-mode, locate-do-setup):
3507         * longlines.el (longlines-wrap-line):
3508         * macros.el (insert-kbd-macro):
3509         * menu-bar.el (menu-bar-update-buffers):
3510         * misc.el (copy-from-above-command):
3511         * mouse.el (mouse-popup-menubar, mouse-buffer-menu-alist):
3512         * newcomment.el (comment-indent):
3513         * novice.el (disabled-command-function):
3514         * sort.el (sort-fields-syntax-table):
3515         * subr.el (momentary-string-display):
3516         * tar-mode.el (tar-header-block-summarize)
3517         (tar-clear-modification-flags):
3518         * terminal.el (terminal-cease-edit, te-more-break-unwind, te-newline)
3519         (te-clear-rest-of-line, te-clear-rest-of-screen, te-clear-screen)
3520         (te-insert-lines, te-delete-lines, te-delete, te-insert-spaces)
3521         (te-delete-char, te-down-vertically-or-scroll):
3522         * time-stamp.el (time-stamp-string-preprocess):
3523         * tmm.el (tmm-add-one-shortcut): "?\ " -> "?\s".
3525 2006-11-26  Nick Roberts  <nickrob@snap.net.nz>
3527         * speedbar.el (speedbar-timer-fn): Revert to old behaviour when not
3528         in GUD mode.
3530         * progmodes/gud.el (gud-install-speedbar-variables): Remove bindings:
3531         speedbar-expand-line-descendants, speedbar-contract-line-descendants.
3533 2006-11-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3535         * progmodes/cc-vars.el (c-backslash-column): Add . at end of sentence.
3537 2006-11-26  Stephen Leake  <stephen_leake@stephe-leake.org>
3539         * progmodes/ada-mode.el (ada-which-compiler): Fix typo in docstring.
3540         (ada-compile-goto-error): Adapt to new argument profile of
3541         compilation-goto-locus in Emacs 22.  Don't check if the various
3542         compile functions are defined; we already do "(require 'compile)".
3544 2006-11-26  Kim F. Storm  <storm@cua.dk>
3546         * kmacro.el: Fix commentary.
3548 2006-11-26  Nick Roberts  <nickrob@snap.net.nz>
3550         * progmodes/gud.el (gdb): Explain how to run in text command mode
3551         more clearly.  Say in error message that multiple debugging
3552         requires restarting GDB.
3554 2006-11-25  Juanma Barranquero  <lekktu@gmail.com>
3556         * international/fontset.el (create-fontset-from-fontset-spec): Doc fix.
3558 2006-11-25  Pavel Kobiakov  <pk_at_work@yahoo.com>
3560         * progmodes/flymake.el (flymake-posn-at-point-as-event): New function.
3561         (flymake-popup-menu): Use it instead of posn-at-point.
3563 2006-11-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3565         * progmodes/cc-vars.el (c-backslash-column):
3566         Mention c-backslash-max-column in documentation for c-backslash-column.
3568 2006-11-24  Lars Hansen  <larsh@soem.dk>
3570         * net/tramp.el (tramp-default-method): Under Windows, change from
3571         plink to pscp.
3572         (tramp-copy-failed-regexp, tramp-action-copy-failed): Add.
3573         (tramp-actions-copy-out-of-band):
3574         Add pair (tramp-copy-failed-regexp tramp-action-copy-failed).
3575         (tramp-action-out-of-band): Move "Permission denied" handling to
3576         tramp-action-copy-failed.
3577         (tramp-do-copy-or-rename-file-out-of-band): unwind-protect killing of
3578         process buffer.
3580 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3582         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
3583         strings to a single string.  Quote `errors-file-name'.
3584         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
3585         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
3586         Adjust calls.  Use `shell-quote-argument'.
3588         * international/mule.el (load-with-code-conversion)
3589         (with-category-table): Use with-current-buffer.
3590         (after-insert-file-set-coding): Use restore-buffer-modified-p.
3592 2006-11-24  Eli Zaretskii  <eliz@gnu.org>
3594         * mail/smtpmail.el (smtpmail-send-it):
3595         Copy buffer-file-coding-system from the mail buffer.  Possibly add a
3596         MIME header for the message encoding.
3597         Bind coding-system-for-write around the call to mail-do-fcc.
3598         Use smtpmail-code-conv-from to encode queued mail messages.
3600 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
3602         * tabify.el (tabify-regexp): Doc fix.
3604         * net/rcirc.el (rcirc-buffer-maximum-lines):
3605         * progmodes/gud.el (jdb): Fix space/tab mixup in docstrings.
3607         * play/gomoku.el (gomoku-terminate-game, gomoku-human-takes-back)
3608         (gomoku-prompt-for-move, gomoku-human-plays, gomoku-offer-a-draw):
3609         Fix typos in output messages.
3610         (gomoku-vector-length, gomoku-init-board): Fix typos in docstrings.
3612 2006-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3614         * hexl.el (hexl-mode): Don't try to guess the max-address: get it from
3615         the horse's mouth.
3616         (hexlify-buffer): Don't re-encode an arg that's already encoded.
3618 2006-11-23  Michael Kifer  <kifer@cs.stonybrook.edu>
3620         * ediff-diff.el (ediff-exec-process, ediff-same-file-contents):
3621         Remove condition-case.
3623 2006-11-23  Glenn Morris  <rgm@gnu.org>
3625         * progmodes/f90.el (f90-comment-indent): Do not move point in
3626         default case.
3628 2006-11-21  Romain Francoise  <romain@orebokech.com>
3630         * emacs-lisp/find-func.el (find-library-name): Don't strip ".el"
3631         from library name (reverts change of 2005-10-25).
3633 2006-11-21  Lennart Borgman  <lennart.borgman.073@student.lu.se>
3635         * tutorial.el (tutorial--default-keys): Add newline and
3636         delete-backward-char bindings.
3637         (tutorial--detailed-help): Save excursion when finding keys.
3638         Correct warning string for M-x FOO case.
3639         (tutorial--display-changes): Print special keys in tutorial style.
3640         Tweak search regexp for changed keys.
3642 2006-11-21  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
3644         * thingatpt.el (thing-at-point-url-at-point): Don't add a
3645         redundant scheme.
3647 2006-11-21  Diane Murray  <disumu@x3y2z1.net>  (tiny change)
3649         * thingatpt.el (thing-at-point-uri-schemes): Add schemes that
3650         are new to the list at IANA.  Also added irc, mms, mmsh.
3652 2006-11-20  J.D. Smith  <jdsmith@as.arizona.edu>
3654         * progmodes/idlw-help.el (idlwave-html-help-location):
3655         Fail gracefully for missing help packages.
3656         (idlwave-help-assistant-open-link): Open full links.
3657         (idlwave-help-assistant-help-with-topic): Direct help link.
3659         * progmodes/idlwave.el (idlwave-mode):
3660         Set add-log-current-defun-function.
3661         (idlwave-current-routine-fullname): Add, to support add-log.
3662         (idlwave-convert-xml-system-routine-info): Simplify XML parsing
3663         to reflect improvements to xml-parse-file.
3664         (idlwave-mode-menu-def): New binding for help-with-topic.
3666         * progmodes/idlw-shell.el (idlwave-shell-filter-directory):
3667         Handle extra newlines and spaces.
3668         (idlwave-shell-mode-map): Add help-with-topic.
3670 2006-11-20  Chong Yidong  <cyd@stupidchicken.com>
3672         * tutorial.el (tutorial-warning-face): New face.
3673         (tutorial--detailed-help, tutorial--display-changes): Use it.
3674         (tutorial--find-changed-keys): Check ESC-prefix binding specially.
3675         Improve search pattern for occurrences of changed keys.
3677 2006-11-20  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3679         * term/x-win.el (x-last-cut-buffer-coding): New variable.
3680         (x-select-text): Set it.
3681         (x-cut-buffer-or-selection-value): Check also x-last-cut-buffer-coding
3682         when checking for newness.
3684 2006-11-19  Juanma Barranquero  <lekktu@gmail.com>
3686         * subr.el (posn-image):
3687         * progmodes/ebnf2ps.el (ebnf-stop-on-error): Fix typos in docstrings.
3689         * emacs-lisp/regexp-opt.el (regexp-opt): Doc fix.
3691 2006-11-19  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
3693         * progmodes/glasses.el (glasses-separate-parentheses-exceptions): New.
3694         Exceptions to the rule "add a space between an identifier and an
3695         opening parenthesis".  Defaulted to the `#define' problem of cpp.
3696         (glasses-parenthesis-exception-p): New.  Check if the region is an
3697         exception regarding to that.
3698         (glasses-make-readable): Use it.
3699         (glasses-convert-to-unreadable): Ditto.  Modify the file also if
3700         `glasses-convert-on-write-p' and `glasses-separate-parentheses-p' are t.
3702 2006-11-19  Chong Yidong  <cyd@stupidchicken.com>
3704         * emacs-lisp/bytecomp.el (byte-compile-if): Revert last change.
3706 2006-11-19  Stephen Leake  <stephen_leake@stephe-leake.org>
3708         * progmodes/ada-mode.el (ada-make-body): Fix typo.
3710         * progmodes/ada-xref.el (ada-make-body-gnatstub): Fix typo.
3711         (ada-xref-initialize): Fix typo.  Use add-hook and remove-hook.
3713 2006-11-18  Chong Yidong  <cyd@stupidchicken.com>
3715         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Check `and'
3716         conditions for function or variable bindings.
3718         * comint.el (comint-exec-1): Set EMACS and INSIDE_EMACS to t.
3720         * progmodes/compile.el (compilation-start): Ditto.
3722 2006-11-18  Michael Albinus  <michael.albinus@gmx.de>
3724         * net/tramp.el (top): cl and custom are always required.
3726 2006-11-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3728         * term/x-win.el (x-cut-buffer-or-selection-value): Decode text from
3729         cut-buffers with next-selection-coding-system if not nil.
3731 2006-11-17  Carsten Dominik  <dominik@science.uva.nl>
3733         * textmodes/org.el (org-fix-decoded-time): New function.
3734         (org-display-custom-time): Use `org-fix-decoded-time'.
3736 2006-11-17  Chong Yidong  <cyd@stupidchicken.com>
3738         * menu-bar.el (menu-bar-games-menu): Remove yow.
3740 2006-11-17  Carsten Dominik  <dominik@science.uva.nl>
3742         * textmodes/org.el (org-scan-tags): Re-align code fixed.
3743         (org-detach-overlay): Rename from `org-detatch-overlay'.
3744         (org-table-convert-region): Insert space after column separator.
3745         (org-agenda-kill): New command.
3746         (org-metaleft): Call `org-outdent-item' on bullets.
3747         (org-metaright): Call `org-indent-item' on bullets.
3748         (org-timestamp-change): Set `org-last-changed-timestamp'.
3749         (org-current-line): Make sure (bolp) returns correct result.
3750         (org-agenda-change-all-lines): Make sure TODO are highlighted.
3752 2006-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3754         * pcvs.el (cvs-retrieve-revision): Set buffer-file-coding-system.
3756 2006-11-16  Chong Yidong  <cyd@stupidchicken.com>
3758         * mouse.el (global-map): Change 2006-08-16 fix to call
3759         mouse-yank-at-click explicitly, since mouse events are not carried
3760         over into keyboard macros.
3762 2006-11-16  Kim F. Storm  <storm@cua.dk>
3764         * ido.el (ido-file-internal): Use current buffer's file name as default
3765         choice for ido-find-alternate-file.  Suggested by Matt Hodges.
3767 2006-11-15  Ken Manheimer  <ken.manheimer@gmail.com>
3769         * allout.el (allout-doublecheck-at-and-shallower): Clarify docstring.
3770         (allout-inhibit-aberrance-doublecheck): Rename from
3771         allout-during-yank-processing.  All callers changed.
3772         (allout-ascend): Provide for unusual case where some topic after
3773         the first in file is at lower depth than the first.
3774         (allout-shift-in): Ensure the offspring of the new containing
3775         topic are exposed.
3776         (allout-encrypt-string): Preserve the coding-system of the text,
3777         according to that of the containing buffer.
3778         (allout-toggle-subtree-encryption): When the text being encrypted
3779         requires a different coding system, offer to preserve the coding
3780         system using a file local var.
3782 2006-11-15  Simon Marshall  <simon@gnu.org>
3784         * progmodes/cc-fonts.el (c-font-lock-declarators): Use c-at-toplevel-p
3785         to recognise "T t()" as a function declaration, rather than a
3786         variable instantiation, iff at the top-level or inside a class
3787         declaration.  Suggested by Feng Li <fengli@gmail.com>.
3789 2006-11-14  Stephen Leake  <stephen_leake@stephe-leake.org>
3791         * progmodes/ada-xref.el (ada-parse-prj-file):
3792         Don't delete project buffer; user may want to edit it.
3793         (ada-xref-set-project-field, ada-xref-current-project-file)
3794         (ada-xref-current-project, ada-show-current-project)
3795         (ada-set-main-compile-application): New functions.
3796         (ada-xref-get-project-field, ada-require-project-file):
3797         Normalize use of ada-prj-default-project-file.
3798         (ada-gdb-application, ada-get-ada-file-name, ada-make-body-gnatstub):
3799         Normalize use of ada-require-project-file.
3800         (ada-prj-find-prj-file): Improve doc string, comments.
3802         * progmodes/ada-mode.el (ada-mode-version): Bump version.
3803         (ada-create-keymap): Add \C-c\C-m 'ada-set-main-compile-application.
3804         (ada-create-menu): Add ada-set-main-compile-application,
3805         ada-show-current-main, ada-show-current-project.
3807 2006-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3809         * progmodes/python.el (inferior-python-mode-syntax-table): New var.
3810         (inferior-python-mode): Use it.
3812 2006-11-14  Andreas Schwab  <schwab@suse.de>
3814         * term/xterm.el (terminal-init-xterm): Add more key bindings.
3816 2006-11-13  Kim F. Storm  <storm@cua.dk>
3818         * ido.el (ido-copy-current-word): C-o copies region if active.
3820 2006-11-13  Carsten Dominik  <dominik@science.uva.nl>
3822         * textmodes/org.el (org-emph-face): Fix typo in variable name.
3824 2006-11-13  Juanma Barranquero  <lekktu@gmail.com>
3826         * ediff.el (ediff-revision):
3827         * files.el (set-visited-file-name):
3828         * mail/rmailout.el (rmail-output-body-to-file):
3829         Use `format', not `message', in `y-or-n-p' call.
3831 2006-11-13  Carsten Dominik  <dominik@science.uva.nl>
3833         * textmodes/org.el (org-metaleft): Call `org-outdent-item' on bullets.
3834         (org-metaright): Call `org-indent-item' on bullets.
3835         (org-timestamp-change): Set `org-last-changed-timestamp'.
3836         (org-current-line): Make sure (bolp) returns correct result.
3837         (org-agenda-change-all-lines): Make sure highlighting TODO always works.
3839 2006-11-12  Richard Stallman  <rms@gnu.org>
3841         * language/european.el (turkish-case-conversion-enable)
3842         (turkish-case-conversion-disable): New functions.
3843         ("Turkish" lang env): Use them.
3845         * international/characters.el (case table):
3846         Do nothing special for i and I.
3848         * subr.el (remove-overlays): Fix last change.
3850         * cus-edit.el (custom-save-all): Use find-file-visit-truename
3851         for visiting the custom file.
3853 2006-11-12  Markus Triska  <triska@gmx.at>
3855         * play/handwrite.el (handwrite): Also process lines not ending
3856         with newline.  Replace some position-fiddling with different
3857         logic.  Improve performance.
3859 2006-11-12  Stephen Leake  <stephen_leake@stephe-leake.org>
3861         * progmodes/ada-xref.el (ada-prj-default-check-cmd): New variable,
3862         replacing deleted variable `ada-check-switch'.
3863         (ada-project-file-extension): Rename to `ada-prj-file-extension'.
3864         (ada-xref-project-files): Improve doc string.
3865         (ada-find-executable): New function.
3866         (ada-initialize-runtime-library): Use `ada-find-executable'.
3867         (ada-xref-set-default-prj-values): In compile commands, don't need
3868         `ada-cd-command'; `compile' does that more portably.
3869         Use ada-prj-default-check-cmd.
3870         (ada-parse-prj-file): Don't set 'debug_post_cmd, 'debug_pre_cmd
3871         properties if not specified in project file.
3872         (ada-goto-declaration): Display useful message for new error
3873         'error-file-not-found.
3874         (ada-get-ada-file-name, ada-find-in-src-path): Signal new error
3875         'error-file-not-found.
3876         (ada-get-all-references): Match latest ali syntax.  Signal new
3877         error 'error-file-not-found.
3878         (ada-find-in-ali): Match latest ali syntax.
3879         (ada-make-filename-from-adaname): Handle different semantics of
3880         gnatkr in GNAT 3.15p vs later.
3882         * progmodes/ada-stmt.el (ada-func-or-proc-name): Match changes to
3883         ada-procedure-start-regexp.
3884         (ada-or-accept, ada-or-delay, ada-or-terminate): Improve doc string.
3886         * progmodes/ada-mode.el: Replace conditional (require 'ispell)
3887         with defvar.
3888         (ada-language-version): Rename ada05 -> ada2005.
3889         (ada-align-region-separate): Add `eval-when-compile'.
3890         (ada-name-regexp): Remove unneeded escapes in regexp character
3891         alternative.
3892         (ada-compile-goto-error-file-linenr-re): New constant.
3893         (ada-matching-start-re): Handle additional cases `declare',
3894         `procedure', `function'.
3895         (ada-compile-goto-error): Handle "... at line nn".
3896         (ada-mode): Clearer syntax, comments for ff-special-constructs.
3897         Delete support for old versions of `align'.
3898         (ada-search-prev-end-stmt): Handle additional keyword `private'.
3899         (ada-check-defun-name): Simplify handling of `declare'.
3900         (ada-goto-matching-start): Handle nested `begin ... end'.
3901         Handle `declare', `protected', `procedure', `function'.
3902         (ada-create-menu): Presence of arm95 is not conditional on using
3903         GNAT compiler.
3905 2006-11-12  Juanma Barranquero  <lekktu@gmail.com>
3907         * emacs-lisp/re-builder.el (reb-mode): Set `blink-matching-paren' to
3908         nil in the *RE-Builder* buffer (it causes spurious error messages).
3910         * server.el (server-visit-files): If `minibuffer-auto-raise' has
3911         been set to t, respect it.
3913 2006-11-11  Stephen Leake  <stephen_leake@stephe-leake.org>
3915         * progmodes/ada-mode.el: Delete `eval-and-compile' around `require'.
3916         Delete commented out code for old Emacs versions.  Autoloading of
3917         "ada-xref", "ada-prj" is useful even if compiler is not GNAT.
3918         (ada-mode-version): Bump version number.
3919         (ada-95-string-keywords, ada-2005-string-keywords)
3920         (ada-2005-keywords, ada-name-regexp): New constant.
3921         (ada-language-version, ada-procedure-start-regexp, ada-mode)
3922         (ada-font-lock-keywords): Add support for Ada 2005 keywords.
3923         (ada-package-start-regexp): Support private packages, include package
3924         name (for ada-set-point-accordingly).
3925         (ada-next-procedure, ada-previous-procedure)
3926         (ada-which-function-are-we-in): Match changes to
3927         ada-procedure-start-regexp.
3928         (ada-make-body): Make non-interactive; not a user function.
3929         (ada-make-subprogram-body): Improve doc string.
3931 2006-11-11  Romain Francoise  <romain@orebokech.com>
3933         * progmodes/cperl-mode.el (cperl-mode): Before adding to it, make
3934         `compilation-error-regexp-alist' buffer-local, since we changed
3935         `compilation-error-regexp-alist-alist' locally.
3937 2006-11-11  Juanma Barranquero  <lekktu@gmail.com>
3939         * server.el (server-visit-files): Bind `minibuffer-auto-raise'
3940         to the value of `server-raise-frame'.
3942 2006-11-11  Glenn Morris  <rgm@gnu.org>
3944         * ido.el (ido-enable-prefix)
3945         * ses.el (ses-call-printer-return)
3946         * net/tramp.el (tramp-unified-filenames)
3947         * progmodes/cc-align.el (c-lineup-string-cont)
3948         * progmodes/compile.el (compilation-directory-matcher)
3949         * progmodes/ebnf2ps.el (ebnf-stop-on-error)
3950         * progmodes/vhdl-mode.el (vhdl-reset-active-high)
3951         (vhdl-clock-rising-edge)
3952         * textmodes/org.el (org-export-with-timestamps)
3953         (org-export-remove-timestamps-from-toc)
3954         (org-export-with-tags): Improve previous doc fixes.
3956 2006-11-11  Richard Stallman  <rms@gnu.org>
3958         * textmodes/flyspell.el (flyspell-mode-map):
3959         Bind C-c $ instead of M-RET.
3961 2006-11-10  Simon Marshall  <simon@gnu.org>
3963         * progmodes/cc-fonts.el (c-font-lock-declarations): Don't overwrite
3964         fontification for "case" and "default" keywords.
3966 2006-11-10  Andreas Schwab  <schwab@suse.de>
3968         * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
3969         Avoid starting sentence with "nil".
3971 2006-11-10  Juanma Barranquero  <lekktu@gmail.com>
3973         * server.el (server-raise-frame): New option.
3974         (server-switch-buffer): Use it.
3976 2006-11-10  Nick Roberts  <nickrob@snap.net.nz>
3978         * progmodes/gdb-ui.el (gdb-many-windows): Start doc string
3979         with a capital.
3981 2006-11-10  Carsten Dominik  <carsten.dominik@gmail.com>
3983         * textmodes/org.el (org-show-hierarchy-above)
3984         (org-show-following-heading): Fix typo in default value.
3985         (org-scan-tags): Make the search case-sensitive.
3986         (org-tags-sparse-tree): Don't overrule
3987         `org-show-following-heading' and `org-show-hierarchy-above'.
3988         (org-reveal): New command.
3989         (org-show-context): Rename from `org-show-hierarchy-above'.
3990         (org-fast-tag-selection-single-key): New option.
3991         (org-fast-tag-show-exit, org-set-current-tags-overlay): New functions.
3992         (org-tags-overlay): New variable.
3993         (org-agenda-todo-ignore-deadlines): New option.
3994         ("session"): Add circular data structure `org-mark-ring' to
3995         exceptions list in session.el.
3996         (org-agenda-window-setup, org-agenda-restore-windows-after-quit):
3997         New options.
3998         (org-agenda-quit): Use `org-agenda-restore-windows-after-quit'.
3999         (org-prepare-agenda, org-agenda-quit): Use `org-agenda-window-setup'.
4000         (org-pre-agenda-window-conf, org-blank-before-new-entry): New vars.
4001         (org-finalize-agenda): Activate bracket links in agenda.
4002         (org-at-timestamp-p, org-at-date-range-p): Additional argument
4003         INACTIVE-OK.
4004         (org-show-hierarchy-above, org-show-following-heading):
4005         List values allowed for fine-tuned configuration.
4006         (org-show-hierarchy-above): New argument CONTEXT, use the
4007         fine-tuned settings in `org-show-hierarchy-above' and
4008         `org-show-following-heading'.
4009         (org-display-custom-time): New function.
4010         (org-toggle-time-stamp-overlays, org-insert-time-stamp): New function.
4011         (org-display-custom-times, org-time-stamp-custom-formats):
4012         (org-maybe-intangible): New macro.
4013         (org-activate-bracket-links, org-hide-wide-columns):
4014         Use `org-maybe-intangible'.
4015         (org-open-file): Use `shell-quote-argument'.
4016         (org-display-internal-link-with-indirect-buffer): New option.
4017         (org-file-remote-p): Get regexp from list.
4018         (org-link-expand-abbrev): New function.
4019         (org-link-abbrev-alist): New option.
4020         (org-open-at-point, org-cleaned-string-for-export):
4021         Call `org-link-expand-abbrev'.
4022         (org-timeline, org-agenda-list, org-todo-list)
4023         (org-tags-view): Remove the KEEP-MODES argument.
4024         (org-finalize-agenda-hook): New hook.
4025         (org-get-alist-option): New function.
4026         (org-follow-timestamp-link): New function.
4027         (org-open-at-point): Call `org-follow-timestamp-link'.
4028         (org-log-note-marker, org-log-note-purpose)
4029         (org-log-note-window-configuration): New variables.
4030         (org-add-log-maybe, org-add-log-note, org-store-log-note): New funs.
4031         (org-log-note-headings): New option.
4032         (org-dblock-write:clocktable): Bug fix, removed infinite loop.
4033         (org-store-link): Support for dired-mode.
4034         (org-open-file): Substitute environment variables into filename.
4035         (org-last): New defsubst.
4036         (org-agenda-re-align-tags): New function.
4037         (org-agenda-align-tags-to-column): New option.
4038         (org-agenda-timeline): Group removed.
4039         (org-prepare-agenda, org-prepare-agenda-buffers)
4040         (org-run-agenda-series, org-timeline, org-agenda-list)
4041         (org-todo-list, org-tags-view): Call `org-agenda-prepare' and set
4042         the text property inticating the agenda type.
4043         (org-agenda-post-command-hook): Get agenda type from text property
4044         at point.
4045         (org-agenda): Handle command sets.  Set `org-agenda-last-arguments'
4046         and obey `org-agenda-overriding-arguments'.
4047         (org-agenda-overriding-arguments, org-agenda-last-arguments): New vars.
4048         (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
4049         (org-agenda-week-view, org-agenda-day-view):
4050         Use `org-agenda-overriding-arguments' to make updating work with
4051         multi-block agendas.
4052         (org-agenda-prefix-format): Allow different formats for the
4053         different agenda entry types.
4054         (org-timeline-prefix-format): Option removed, use
4055         `org-agenda-prefix-format' instead.
4056         (org-prepare-agenda): New function.
4057         (org-select-timeline-window): Option removed, use
4058         `org-select-agenda-window' instead.
4059         (org-respect-restriction): Variable removed.
4060         (org-cmp-tag): New function.
4061         (org-agenda-sorting-strategy, org-entries-lessp):
4062         Implement sorting by last tag.
4063         (org-complete): Better completion in in-buffer option lines.
4064         (org-in-item-p): New function.
4065         (org-org-menu): Add entries for checkboxes.
4066         (org-cycle): Extra brouping in outline-regexp, because it is used
4067         in a search with "^" prepended.
4068         (org-provide-checkbox-statistics): New option.
4069         (org-set-font-lock-defaults): Highlight checkbox statistics.
4070         (org-update-checkbox-count-maybe)
4071         (org-get-checkbox-statistics-face): New functions.
4072         (org-update-checkbox-count): New command.
4073         (org-insert-item, org-toggle-checkbox):
4074         Call `org-update-checkbox-count-maybe'.
4075         (org-export-as-html): XEmacs compatibility for coding system.
4076         (org-force-cycle-archived): New command.
4077         (org-cycle-hide-archived-subtrees): Display message when ARCHIVE
4078         overrules cycling.
4079         (org-fix-position-after-promote): If the line contains only a todo
4080         keyword, add a final space.
4081         (org-promote-subtree, org-demote-subtree):
4082         Call `org-fix-position-after-promote'.
4084 2006-11-10  Glenn Morris  <rgm@gnu.org>
4086         * calendar/cal-dst.el: Do not assume DST starts/ends on the same
4087         date in every year.
4088         (calendar-dst-check-each-year-flag): New customizable variable.
4089         (calendar-dst-find-data): New function, extracted from
4090         calendar-current-time-zone.
4091         (calendar-current-time-zone): Use calendar-dst-find-data.
4092         (calendar-dst-transition-cache): New variable.
4093         (calendar-dst-find-startend, calendar-dst-starts)
4094         (calendar-dst-ends): New functions.
4095         (calendar-daylight-savings-starts)
4096         (calendar-daylight-savings-ends): Change value to use
4097         calendar-dst-starts, calendar-dst-ends; respectively.
4099         * progmodes/f90.el (f90-indent-region): Bind case-fold-search to t.
4101         * ido.el (ido-enable-prefix)
4102         * ses.el (ses-call-printer-return)
4103         * net/tramp.el (tramp-unified-filenames)
4104         * progmodes/cc-align.el (c-lineup-string-cont)
4105         * progmodes/compile.el (compilation-directory-matcher)
4106         * progmodes/ebnf2ps.el (ebnf-stop-on-error)
4107         * progmodes/gdb-ui.el (gdb-many-windows)
4108         * progmodes/vhdl-mode.el (vhdl-reset-active-high)
4109         (vhdl-clock-rising-edge)
4110         * textmodes/org.el (org-export-with-timestamps)
4111         (org-export-remove-timestamps-from-toc, org-export-with-tags)
4112         (org-read-date): Doc fix (Nil -> nil).
4114 2006-11-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4116         * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
4117         Encode/decode text to/from cut buffers to/from iso-latin-1 only.
4119 2006-11-10  Juanma Barranquero  <lekktu@gmail.com>
4121         * bs.el (bs--window-for-buffer): Remove.
4122         (bs--show-with-configuration): Use `get-window-with-predicate'
4123         instead of `bs--window-for-buffer'.
4125 2006-11-10  Kenichi Handa  <handa@m17n.org>
4127         * files.el (revert-buffer): Fix previous change.
4129 2006-11-09  Juanma Barranquero  <lekktu@gmail.com>
4131         * bs.el (bs--redisplay): Fix typo in docstring.
4132         (bs--window-config-coming-from): Make frame-local.
4133         (bs--restore-window-config): New function.
4134         (bs-kill, bs-select, bs-select-other-window)
4135         (bs-select-other-frame): Use it.
4136         (bs--window-for-buffer): Return as soon as a matching buffer is found.
4137         (bs--show-with-configuration): Save the window configuration as a
4138         frame local var, and only if *buffer-selection* is not already
4139         visible on this frame.
4141 2006-11-08  Chong Yidong  <cyd@stupidchicken.com>
4143         * vc-svn.el (vc-svn-admin-directory): New var.
4144         (vc-svn-registered, vc-svn-responsible-p)
4145         (vc-svn-repository-hostname): Use it.
4146         Suggested by arit93@yahoo.com.
4148 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
4150         * ldefs-boot.el: Regenerate.
4152 2006-11-08  Alan Mackenzie  <acm@muc.de>
4154         * emacs-lisp/lisp.el (beginning-of-defun-raw): Code up the
4155         case (eq open-paren-in-column-0-is-defun-start nil) by searching
4156         for least nested open-paren.
4158 2006-11-08  Romain Francoise  <romain@orebokech.com>
4160         * subr.el (remove-overlays): Fix typo in last change.
4162 2006-11-08  Richard Stallman  <rms@gnu.org>
4164         * subr.el (remove-overlays): Call overlay-recenter.
4166 2006-11-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4168         * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
4169         (pr-ps-name-custom-set, pr-txt-name-custom-set): Return back the old
4170         behaviour.
4171         (pr-menu-bind): Act on global-map instead of menu-bar-file-menu
4172         directly.
4174 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
4176         * ido.el (ido-ignore-extensions, ido-show-dot-for-dired)
4177         (ido-max-dir-file-cache, ido-decorations)
4178         (ido-rewrite-file-prompt-functions, ido-use-mycompletion-depth)
4179         (ido-magic-backward-char, ido-enter-dired)
4180         (ido-enter-insert-buffer, ido-enter-insert-file, ido-dired)
4181         (ido-list-directory, ido-first-match, ido-only-match)
4182         (ido-subdir, ido-indicator): Fix typos in docstrings.
4183         (ido-buffer-internal, ido-completion-help): Fix typos in messages.
4184         (ido-read-internal): Fix typo in error message.
4186 2006-11-08  Kenichi Handa  <handa@m17n.org>
4188         * international/mule-cmds.el (set-default-coding-systems):
4189         Always set default-file-name-coding-system to utf-8 for Mac Darwin.
4191 2006-11-08  Juanma Barranquero  <lekktu@gmail.com>
4193         * makefile.w32-in (setwins): Remove.
4194         (WINS_ALMOST): New macro.
4195         (WINS): Use it.
4196         (autoloads): Don't extract autoloads from files in obsolete/.
4198 2006-11-07  Chong Yidong  <cyd@stupidchicken.com>
4200         * whitespace.el (whitespace-buffer): Call remove-overlays after
4201         overlay-recenter for performance.  Suggested by Martin Rudalics.
4203 2006-11-07  Michael Albinus  <michael.albinus@gmx.de>
4205         * net/tramp.el (tramp-default-method): scp is the default method.
4207 2006-11-07  Juanma Barranquero  <lekktu@gmail.com>
4209         * server.el (server-start): Save also the Emacs pid in the server file.
4211 2006-11-07  Carsten Dominik  <dominik@science.uva.nl>
4213         * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Preserve
4214         point when displaying a bibtex cross reference in the echo area.
4216 2006-11-06  Juanma Barranquero  <lekktu@gmail.com>
4218         * international/mule.el (make-char): Fix typo in docstring.
4219         (load-with-code-conversion, charsetp): Doc fixes.
4221         * international/ja-dic-cnv.el (skkdic-convert):
4222         * cus-edit.el (hook): Fix typo in docstring.
4224 2006-11-06  Chong Yidong  <cyd@stupidchicken.com>
4226         * cus-edit.el (custom-mode-map): Move defvar above code using it.
4227         (custom-mode-link-map): New variable.
4228         (custom-group-link, custom-manual): Use follow-link.
4230 2006-11-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
4232         * textmodes/bibtex.el: Fix typo in name of author of bibtex.el,
4233         "Mark Shapiro" -> "Marc Shapiro".  Update his email address.
4235 2006-11-06  Richard Stallman  <rms@gnu.org>
4237         * textmodes/flyspell.el (flyspell-correct-word-before-point):
4238         New function broken out of flyspell-correct-word.
4239         (flyspell-mode-map): Bind it to M-RET.
4240         (flyspell-correct-word): Call it.
4242         * textmodes/fill.el (fill-minibuffer-function): New function.
4243         (fill-paragraph): Bind fill-paragraph-function to
4244         fill-minibuffer-function.
4246         * ruler-mode.el (ruler-mode-map): Add bindings for up-events
4247         so that they aren't undefined.
4249         * dired.el (dired-readin): Locally bind file-name-coding-system.
4251         * bindings.el: Shorten and clarify usual mode line mouse help string.
4253         * Makefile.in (autoloads): Don't include `obsolete'.
4255 2006-11-06  Chong Yidong  <cyd@stupidchicken.com>
4257         * printing.el (pr-alist-custom-set, pr-ps-utility-custom-set)
4258         (pr-ps-name-custom-set, pr-txt-name-custom-set): Don't update the
4259         Printing menu if it's not initialized.
4260         (pr-menu-bind): Act on menu-bar-file-menu directly.
4262 2006-11-06  Juanma Barranquero  <lekktu@gmail.com>
4264         * help.el (view-emacs-news): Fix typo in error message.
4266         * menu-bar.el (menu-bar-update-buffers): Fix typo in menu entry.
4268         * shadowfile.el (shadow-define-regexp-group)
4269         (shadow-literal-groups, shadow-insert-var): Doc fixes.
4270         (shadow-read-files): Fix typo in message.
4271         (shadow-inhibit-overload, shadow-find, shadow-suffix)
4272         (shadow-site-match, shadow-write-todo-file, shadow-insert-var)
4273         (shadow-suffix, shadow-site-match, shadow-expand-file-name)
4274         (shadow-file-match): Fix typos in docstrings.
4276         * terminal.el (terminal-emulator): Fix typo in message.
4278         * emacs-lisp/authors.el (authors-fixed-entries): Fix typo.
4280         * emacs-lisp/lselect.el (x-kill-primary-selection)
4281         (x-delete-primary-selection, x-copy-primary-selection):
4282         Fix typos in error messages.
4284         * emulation/edt-mapper.el: Fix typo in interactive message.
4286         * mail/emacsbug.el (report-emacs-bug): Fix typos in output message.
4288         * textmodes/ispell.el (ispell, ispell-local-dictionary-alist)
4289         (ispell-help): Fix typos in docstrings.
4290         (ispell-help): Fix typo in output message.
4292         * allout.el (allout-adjust-file-variable)
4293         (allout-passphrase-verifier-string)
4294         (allout-passphrase-hint-string)
4295         (allout-toggle-current-subtree-encryption):
4296         * apropos.el (apropos-synonyms):
4297         * cus-edit.el (hook):
4298         * emacs-lock.el (emacs-lock-from-exiting):
4299         * follow.el (follow-avoid-tail-recenter-p):
4300         * hexl.el (hexl-mode):
4301         * mouse-copy.el (mouse-copy-work-around-drag-bug):
4302         * mouse.el (mouse-set-font):
4303         * resume.el (resume-emacs-args-file):
4304         * rfn-eshadow.el (file-name-shadow-tty-properties):
4305         * t-mouse.el (t-mouse-process, t-mouse-mode):
4306         * emacs-lisp/cust-print.el (custom-print-install)
4307         (custom-print-uninstall, custom-format):
4308         * emacs-lisp/shadow.el (list-load-path-shadows):
4309         * emulation/tpu-edt.el (tpu-help-text)
4310         (tpu-save-all-buffers-kill-emacs, tpu-emacs-replace)
4311         (tpu-reset-control-keys):
4312         * emulation/vip.el (vip-emacs-local-map)
4313         (vip-change-mode-to-emacs):
4314         * emulation/viper.el (viper-mode, viper-set-hooks)
4315         (viper-major-mode-modifier-list):
4316         * emulation/viper-init.el (viper-emacs-state-cursor-color):
4317         * emulation/viper-keym.el (viper-emacs-kbd-map)
4318         (viper-toggle-key):
4319         * mail/feedmail.el (feedmail-queue-reminder)
4320         (feedmail-queue-reminder-alist, feedmail-confirm-outgoing)
4321         (feedmail-confirm-outgoing-timeout, feedmail-nuke-bcc)
4322         (feedmail-nuke-resent-bcc, feedmail-fill-to-cc-fill-column)
4323         (feedmail-sender-line, feedmail-force-binary-write)
4324         (feedmail-from-line, feedmail-deduce-envelope-from)
4325         (feedmail-x-mailer-line, feedmail-message-id-generator)
4326         (feedmail-date-generator, feedmail-fiddle-plex-user-list)
4327         (feedmail-enable-spray, feedmail-spray-this-address)
4328         (feedmail-spray-address-fiddle-plex-list, feedmail-enable-queue)
4329         (feedmail-queue-runner-confirm-global)
4330         (feedmail-ask-before-queue-prompt)
4331         (feedmail-ask-before-queue-reprompt)
4332         (feedmail-prompt-before-queue-standard-alist)
4333         (feedmail-prompt-before-queue-user-alist)
4334         (feedmail-prompt-before-queue-help-supplement)
4335         (feedmail-queue-use-send-time-for-message-id)
4336         (feedmail-queue-default-file-slug, feedmail-queue-fqm-suffix)
4337         (feedmail-mail-send-hook-splitter, feedmail-mail-send-hook)
4338         (feedmail-mail-send-hook-queued)
4339         (feedmail-confirm-addresses-hook-example)
4340         (feedmail-last-chance-hook, feedmail-before-fcc-hook)
4341         (feedmail-queue-runner-mode-setter)
4342         (feedmail-queue-alternative-mail-header-separator)
4343         (feedmail-queue-runner-message-sender)
4344         (feedmail-buffer-eating-function, feedmail-binmail-template)
4345         (feedmail-run-the-queue-no-prompts)
4346         (feedmail-run-the-queue-global-prompt)
4347         (feedmail-queue-subject-slug-maker, feedmail-fiddle-header)
4348         (feedmail-envelope-deducer, feedmail-fiddle-date)
4349         (feedmail-default-message-id-generator)
4350         (feedmail-fiddle-message-id, feedmail-fiddle-x-mailer)
4351         (feedmail-fiddle-spray-address, feedmail-deduce-address-list):
4352         * mail/vms-pmail.el (vms-pmail-save-and-exit, vms-pmail-abort)
4353         (vms-pmail-setup):
4354         * play/dunnet.el (dun-help):
4355         * play/handwrite.el (handwrite):
4356         * play/hanoi.el (hanoi-unix-64):
4357         * progmodes/idlwave.el (idlwave-rescan-asynchronously):
4358         * textmodes/enriched.el (fixed):
4359         * textmodes/org.el (org-file-apps)
4360         (org-emphasis-regexp-components, org-emphasis-alist):
4361         * textmodes/texinfmt.el (batch-texinfo-format):
4362         Fix typos in docstrings.
4364 2006-11-05  Juanma Barranquero  <lekktu@gmail.com>
4366         * loadhist.el (read-feature): Don't complete features not loaded
4367         from a file (which make `unload-feature' to fail).
4369 2006-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4371         * add-log.el (add-log-time-zone-rule): Mark as safe-local-variable.
4373 2006-11-05  Chong Yidong  <cyd@stupidchicken.com>
4375         * startup.el (command-line-1): Kill emacs if the last frame is
4376         deleted while evaluating the command-line arguments.
4378 2006-11-05  Richard Stallman  <rms@gnu.org>
4380         * startup.el (init-file-had-error): Add doc string.
4381         (fancy-splash-text, fancy-splash-head, fancy-splash-tail):
4382         Use fixed-width font for keyboard key descriptions.
4384         * cus-edit.el (custom-save-all): Error if saving in .emacs
4385         and it had an error when loaded.
4387         * dired-aux.el (dired-copy-file-recursive): Catch errors
4388         from recursive copies in the loop, around the recursive call.
4390 2006-11-05  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
4392         * battery.el (battery-linux-proc-acpi): Search an ac_adapter in
4393         `/proc/acpi/ac_adapter/*'.  Ditto for the thermometers in
4394         `/proc/acpi/thermal_zone/*'.
4395         (battery-search-for-one-match-in-files): New.  Search a regexp in
4396         the content of some files.
4398 2006-11-05  Martin Rudalics  <rudalics@gmx.at>
4400         * window.el (mouse-autoselect-window-now): Remove variable.
4401         (mouse-autoselect-window-state): New variable.
4402         (mouse-autoselect-window-start, mouse-autoselect-window-cancel)
4403         (mouse-autoselect-window-select, handle-select-window):
4404         Rewritten to make mouse-autoselect-window-timer a one-shot timer.
4405         Suspend delayed autoselection during menu or popup dialog.
4407         * info-look.el (info-lookup-guess-custom-symbol): New function
4408         for retrieving symbol at point in custom buffers.
4409         (top level) <info-lookup-maybe-add-help>: Add backquote and
4410         comma to ignored characters in regexps of help specifications
4411         for emacs-lisp-mode and lisp-interaction-mode.  This permits
4412         looking up symbols in `...' and after a comma.  Add help
4413         specifications for custom-mode and help-mode.
4415 2006-11-04  Eli Zaretskii  <eliz@gnu.org>
4417         * mail/rmail.el (rmail-redecode-body): New optional argument RAW.
4418         Don't encode body if RAW is non-nil, or if the old encoding is
4419         identical to the new encoding, or if the body contains only
4420         eight-bit-* characters.
4422 2006-11-04  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
4424         * faces.el (faces-sample-overlay, describe-face): Revert last changes.
4425         (faces-sample-overlay): Remove variable.
4426         (describe-face): Insert sample text in the face being described.
4428 2006-11-04  Martin Rudalics  <rudalics@gmx.at>
4430         * whitespace.el (whitespace-indent-regexp): Make this match any
4431         multiples of eight spaces near the beginning of a line.
4432         (whitespace-buffer): Use `remove-overlays' instead of
4433         `whitespace-unhighlight-the-space' and `overlay-recenter' to
4434         speed up overlay handling.
4435         (whitespace-buffer-leading, whitespace-buffer-trailing):
4436         Make these functions highlight the text removed by
4437         `whitespace-buffer-leading-cleanup' and
4438         `whitespace-buffer-trailing-cleanup' respectively.
4439         (whitespace-buffer-search): Use `with-local-quit'.
4440         Move `format' out of loop to speed up scanning larger buffers.
4441         (whitespace-unhighlight-the-space): Remove `remove-hook' since
4442         that function is never added to a hook.
4443         (whitespace-spacetab-regexp, whitespace-ateol-regexp)
4444         (whitespace-buffer-leading-cleanup)
4445         (whitespace-refresh-rescan-list): Fix docstrings.
4447 2006-11-03  Ken Manheimer  <ken.manheimer@gmail.com>
4449         * allout.el (allout-during-yank-processing): Cue for inhibiting
4450         aberrance processing during yanks.
4451         (allout-doublecheck-at-and-shallower): Reduce the limit to reduce
4452         the amount of yanked topics that can be aberrant.
4453         (allout-do-doublecheck): Encapsulate this multiply-used recipe in
4454         a function, and supplement with inihibition of doublechecking
4455         during yanks.
4456         (allout-beginning-of-line, allout-next-heading)
4457         (allout-previous-heading, allout-goto-prefix-doublechecked)
4458         (allout-back-to-current-heading, allout-next-visible-heading)
4459         (allout-next-sibling): Use new allout-do-doublecheck function.
4460         (allout-next-sibling): Ensure we made progress when returning
4461         other than nil.
4462         (allout-rebullet-heading): Preserve text property annotations
4463         indicating the text was hidden, if it was.
4464         (allout-kill-line): Remove any added was-hidden annotations.
4465         (allout-kill-topic): Remove any added was-hidden annotations.
4466         (allout-annotate-hidden): Inhibit adding was-hidden text
4467         properties to the undo list.
4468         (allout-deannotate-hidden): New function to remove was-hidden
4469         annotation.
4470         (allout-hide-by-annotation): Use new allout-deannotate-hidden.
4471         (allout-remove-exposure-annotation): Replace by
4472         allout-deannotate-hidden.
4473         (allout-yank-processing): Signal that yank processing is happening
4474         with allout-during-yank-processing.  Also, wrap
4475         allout-unprotected's closer to the text changes, for easier
4476         debugging.  We need to inhibit-field-text-motion explicitly, in
4477         lieu of the encompassing allout-unprotected.
4478         (outlineify-sticky): Adjust criteria for triggering new outline
4479         decorations to presence or absence of any topics, not just a topic
4480         at the beginning of the buffer.
4482 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
4484         * bs.el (bs--show-all, bs--redisplay):
4485         * cus-edit.el (custom-unlispify-menu-entries)
4486         (custom-unlispify-tag-names, custom-prompt-variable):
4487         * expand.el (expand-pos):
4488         * speedbar.el (speedbar-generic-list-tag-p):
4489         * wid-edit.el (widget-image-enable):
4490         * emacs-lisp/checkdoc.el (checkdoc-rogue-space-check-engine):
4491         * emacs-lisp/find-func.el (find-function-noselect)
4492         (find-function, find-variable-noselect, find-variable)
4493         (find-definition-noselect, find-face-definition):
4494         * mail/rmail-spam-filter.el (rsf-scanning-messages-now):
4495         * net/eudc-vars.el (eudc-expansion-overwrites-query):
4496         * progmodes/ada-xref.el (ada-find-in-ali):
4497         * textmodes/flyspell.el (flyspell-check-tex-math-command):
4498         * textmodes/org.el (org-copy-subtree):
4499         * textmodes/table.el (table--row-column-insertion-point-p):
4500         Use "non-nil" in docstrings.
4502 2006-11-03  Mark Davies  <mark@mcs.vuw.ac.nz>
4504         * sort.el (sort-columns): Set the field separator to tab; on
4505         NetBSD, sort complains if "\n" is used as field separator.
4507 2006-11-03  NIIMI Satoshi  <sa2c@sa2c.net>
4509         * emacs-lisp/pp.el (pp-eval-last-sexp): Evaluate target sexp.
4511 2006-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4513         * server.el (server-auth-key): Remove.  Replace by a process-property.
4514         (server-start): Don't remove the file of the previous process, but
4515         instead clear out the place for the new file.
4516         (server-start): Set the :auth-key property.
4517         (server-process-filter): Use the :auth-key property.
4519 2006-11-02  Carsten Dominik  <dominik@science.uva.nl>
4521         * textmodes/org.el (org-mode-map): No longer copy
4522         `outline-mode-map' explicitly - this is already done by
4523         `define-derived-mode'.
4525 2006-11-02  Juanma Barranquero  <lekktu@gmail.com>
4527         * server.el (server-visit-files): Use `when'.
4528         (server-process-filter): When authentication fails, send error
4529         message to client.  Wrap `process-send-region' in `ignore-errors'
4530         instead of `condition-case', and remove misleading comment.
4532 2006-11-01  Juri Linkov  <juri@jurta.org>
4534         * simple.el (yank): Doc fix.
4536 2006-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4538         * server.el: Try and fit within 80 columns.
4539         (server-start): Make the auth file unreadable by other users.
4541 2006-10-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
4543         * battery.el (battery-linux-proc-acpi): Prevent range error when
4544         `full-capacity' is 0.
4546 2006-10-31  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
4548         * faces.el (faces-sample-overlay): New defvar.
4549         (faces-sample-overlay): New function to show face sample text.
4550         (describe-face): Use it.
4552 2006-10-31  Stephen Leake  <stephen_leake@stephe-leake.org>
4554         * progmodes/ada-stmt.el: Change maintainer, apply
4555         whitespace-cleanup, checkdoc.
4556         (ada-func-or-proc-name): Add doc string.
4558         * progmodes/ada-prj.el (ada-prj-new): Change maintainer, apply
4559         whitespace-cleanup, checkdoc.  Minor improvements to many doc
4560         strings and comments.
4561         (ada-prj-display-page): Change buffer name to more accurately
4562         reflect function.
4564         * progmodes/ada-xref.el: Change maintainer, apply
4565         whitespace-cleanup, checkdoc.  Minor improvements to many doc
4566         strings and comments.  Don't look for `gvd' or `ddd' debuggers.
4567         (ada-compile-current): Don't add newlines to commands.
4569 2006-10-31  Juanma Barranquero  <lekktu@gmail.com>
4571         * server.el: Add support for TCP sockets.
4572         (server-use-tcp, server-host, server-auth-dir): New options.
4573         (server-auth-key): New variable.
4574         (server-ensure-safe-dir): Create nonexistent parent dirs.
4575         Ignore Unix-style file modes on Windows.
4576         (server-start): Crete a TCP or Unix socket according to the value
4577         of `server-use-tcp'.  For TCP sockets, create the id/auth file in
4578         `server-auth-dir' directory.
4579         (server-process-filter): Delete process if authentication
4580         fails (which never happens for Unix sockets).
4582 2006-10-30  David Kastrup  <dak@gnu.org>
4584         * subr.el (add-to-list): Don't continue checking if a match has
4585         been found.
4587 2006-10-30  Chong Yidong  <cyd@stupidchicken.com>
4589         * tutorial.el: Move defvars to avoid bytecomp warnings.
4590         (tutorial--find-changed-keys): Check if viper-current-state is
4591         bound before using it.
4592         (help-with-tutorial): Check if viper-tutorial is defined before
4593         using it.
4595 2006-10-30  Lennart Borgman  <lennart.borgman.073@student.lu.se>
4597         * help-fns.el (help-with-tutorial): Move to tutorial.el.
4599         * tutorial.el: New file.
4600         (help-with-tutorial): Move here from help-fns.el. Added help for
4601         rebound keys.  Fixed resume of tutorial.
4602         (tutorial--describe-nonstandard-key, tutorial--sort-keys)
4603         (tutorial--find-changed-keys, tutorial--display-changes)
4604         (tutorial--saved-dir, tutorial--saved-file)
4605         (tutorial--save-tutorial): New functions to support the changes in
4606         help-with-tutorial.
4608 2006-10-30  Kenichi Handa  <handa@m17n.org>
4610         * files.el (revert-buffer): If a unibyte buffer is being reverted
4611         with a coding system for multibyte, set buffer multibyte before
4612         calling insert-file-contents.
4614 2006-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4616         * server.el (server-select-display): Use a dummy buffer to detect when
4617         the frame is later used.
4618         (server-select-display): New function.
4619         (server-process-filter): Use it to detect unused temp frames.
4621 2006-10-29  Stephen Leake  <stephen_leake@stephe-leake.org>
4623         * progmodes/ada-mode.el: Change maintainer, apply
4624         whitespace-clean, checkdoc.  Minor improvements to many doc strings.
4625         (ada-mode-version): New function.
4626         (ada-create-menu): Menu operations are available for all supported
4627         compilers.
4629 2006-10-29  Lars Hansen  <larsh@soem.dk>
4631         * net/tramp.el (with-parsed-tramp-file-name): Correct debug spec.
4632         Highlight as keyword.
4633         (tramp-do-copy-or-rename-file): Correct data for 'file-already-exists.
4634         Don't call tramp-method-out-of-band-p for local files.
4635         (tramp-touch): Quote file name.
4637 2006-10-28  Glenn Morris  <rgm@gnu.org>
4639         * calendar/calendar.el (cal-html-cursor-month)
4640         (cal-html-cursor-year): Add autoloads for this new package.
4641         (calendar-mode-map): Bind cal-html-cursor-month, cal-html-cursor-year.
4643 2006-10-28  Anna M. Bigatti  <bigatti@dima.unige.it>
4645         * calendar/cal-html.el: New file.
4647 2006-10-28  Chong Yidong  <cyd@stupidchicken.com>
4649         * emacs-lisp/authors.el (authors-aliases): Update.
4651 2006-10-27  Chong Yidong  <cyd@stupidchicken.com>
4653         * version.el (emacs-version): Bump version number to 22.0.90.
4655 2006-10-26  John W. Eaton  <jwe@octave.org>
4657         * progmodes/octave-inf.el (inferior-octave-has-built-in-variables):
4658         New defvar.
4659         (inferior-octave-resync-dirs): Check to see whether Octave has
4660         built-in variables and set inferior-octave-has-built-in-variables.
4661         Check inferior-octave-has-built-in-variables to decide whether to
4662         send commands that set built-in variables or call functions to
4663         change Octave's behavior.
4664         Send "disp (pwd ())" to Octave instead of just "pwd".
4665         (inferior-octave-startup): Send "more off" to Octave instead of
4666         "page_screen_output = 0".
4668 2006-10-26  Chong Yidong  <cyd@stupidchicken.com>
4670         * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the
4671         pattern normally.
4673 2006-10-26  Nick Roberts  <nickrob@snap.net.nz>
4675         * bindings.el (mode-line-mode-menu): Remove bindings for global
4676         minor modes (line/column number) as they are on the menubar.
4678 2006-10-25  Juanma Barranquero  <lekktu@gmail.com>
4680         * term/w32-win.el (x-handle-name-switch): Doc fix.
4681         (w32-standard-fontset-spec): Fix typo in docstring.
4683         * midnight.el (midnight-buffer-display-time): Doc fix.
4684         (clean-buffer-list-kill-never-buffer-names): Add "*server*".
4686 2006-10-23  Michael Kifer  <kifer@cs.stonybrook.edu>
4688         * viper-cmd.el (viper-prefix-arg-com): Define gg as G0.
4690         * viper-ex.el (ex-read): Quote file argument.
4692         * ediff-diff.el (ediff-same-file-contents): Expand file names.
4694         * ediff-mult.el (ediff-append-custom-diff): Quote shell file arguments.
4696 2006-10-22  Martin Rudalics  <rudalics@gmx.at>
4698         * textmodes/flyspell.el (flyspell-check-region-doublons):
4699         Fix last fix.
4701 2006-10-23  Nick Roberts  <nickrob@snap.net.nz>
4703         * bindings.el (mode-line-mode-menu): List global minor modes
4704         before local ones.
4706 2006-10-23  Kim F. Storm  <storm@cua.dk>
4708         * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'.
4709         (sit-for): If last command was a prefix arg, add the read-ahead
4710         event to unread-command-events as (t . EVENT) so it will be added
4711         to this-command-keys by read-key-sequence.
4713 2006-10-22  Martin Rudalics  <rudalics@gmx.at>
4715         * textmodes/flyspell.el (flyspell-word): Skip past all previous
4716         whitespace when checking doublons.
4717         (flyspell-check-region-doublons): Fix doublon regexp.
4718         (flyspell-highlight-incorrect-region): Highlight doublons using
4719         flyspell-duplicate face.
4721         * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom.
4723 2006-10-22  John Wiegley  <johnw@newartisans.com>
4725         * progmodes/python.el (python-use-skeletons): python-mode was
4726         auto-inserting templates (for those with abbrev-mode on), not only
4727         by default -- *but without a configuration variable to disable
4728         it*.  This rendered python-mode completely useless for me, so I
4729         have added `python-use-skeletons', which is now off by default.
4731 2006-10-22  Chong Yidong  <cyd@stupidchicken.com>
4733         * progmodes/cperl-mode.el (cperl-mode): Don't assume
4734         font-lock-multiline is auto-local (it's not).
4735         (cperl-windowed-init): Ensure that cperl-font-lock-multiline is
4736         initialized before calling cperl-init-faces.
4738 2006-10-22  Nick Roberts  <nickrob@snap.net.nz>
4740         * progmodes/gdb-ui.el (gdb-info-stack-custom): Don't try to give
4741         gdb-stack-position a value when there is no fringe.
4743         * bindings.el (mode-line-mode-menu): Disable auto-revert-tail-mode
4744         indicator if not visiting a file.
4746 2006-10-20  David Kastrup  <dak@gnu.org>
4748         * window.el (kill-buffer-and-window): Fix a bug where an aborted
4749         operation would still cause some window to collapse later.
4751 2006-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4753         * vc.el (vc-switch-backend): Try to be more careful with unwanted
4754         side-effect due to mixing various backends's file properties.
4756         * vc-svn.el (vc-svn-parse-status): Remove unused arg `localp'.
4757         Add arg `filename' instead.  Don't set vc-backend if `filename' is set.
4758         Return `filename's status if applicable.  Update callers.
4760 2006-10-19  Kenichi Handa  <handa@m17n.org>
4762         * international/kkc.el (kkc-region): When a key sequence is not
4763         defined, append (this-single-command-raw-keys) to
4764         unread-input-method-events.
4766 2006-10-19  Juanma Barranquero  <lekktu@gmail.com>
4768         * progmodes/ada-mode.el (ada-in-string-p): Doc fix.
4770 2006-10-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4772         * version.el (emacs-version): Use mac-carbon-version-string.
4774         * term/macterm.el (res-geometry): Apply 2006-10-18 change for x-win.el.
4776 2006-10-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4778         * select.el (ccl-check-utf-8, string-utf-8-p): New functions (by
4779         Kenichi Handa).
4780         (xselect-convert-to-string): Decline requests for UTF8_STRING if
4781         the selection is not UTF-8.
4783 2006-10-18  Juanma Barranquero  <lekktu@gmail.com>
4785         * progmodes/ada-mode.el (ada-83-string-keywords)
4786         (ada-last-which-function-line ada-no-auto-case, ada-indent-region)
4787         (ada-which-compiler, ada-align-modes, ada-adjust-case-buffer)
4788         (ada-looking-at-semi-private, ada-get-body-name):
4789         Fix typos in docstrings.
4790         (ada-create-case-exception, ada-create-case-exception-substring):
4791         Fix typos in error messages.
4792         (ada-goto-matching-end, ada-narrow-to-defun): Doc fixes.
4794 2006-10-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4796         * term/x-win.el (res-geometry): Don't set geometry from Xresources
4797         to default-frame-alist if default-frame-alist already contains
4798         width/height.
4800 2006-10-18  Richard Stallman  <rms@gnu.org>
4802         * emacs-lisp/pp.el (pp-eval-expression): Use `X' to read value.
4803         Non-interactive arg is the value, not the expression.
4805         * simple.el (read-expression-map): Just set it, no defvar.
4807         * subr.el (insert-for-yank-1): If last inserted char has
4808         properties, mark them as rear-nonsticky.
4810         * recentf.el (recentf-mode): Doc fix.
4812         * facemenu.el (facemenu-add-new-face): Defend against symbol
4813         that isn't a face name.
4815         * dired-aux.el (dired-do-copy): Doc fix.
4817 2006-10-18  Chong Yidong  <cyd@stupidchicken.com>
4819         * simple.el (line-move-1): Ignore fields when moving to the
4820         beginning of line to avoid getting point stuck.
4822 2006-10-18  Martin Rudalics  <rudalics@gmx.at>
4824         * textmodes/flyspell.el (flyspell-word-search-backward):
4825         Set inhibit-point-motion-hooks to avoid looping due to intangibile
4826         text.
4828 2006-10-16  Richard Stallman  <rms@gnu.org>
4830         * help-fns.el (describe-function-1): Special case optimization
4831         for self-insert-command.
4833 2006-10-16  Kim F. Storm  <storm@cua.dk>
4835         * ido.el (ido-reread-directory): Work in `dir' mode too.
4837 2006-10-15  Martin Rudalics  <rudalics@gmx.at>
4839         * textmodes/table.el: Require 'regexp-opt.
4841 2006-10-15  Lennart Borgman  <lennart.borgman.073@student.lu.se>
4843         * progmodes/flymake.el (flymake-get-project-include-dirs-imp):
4844         Use shell-quote-argument.
4846         * shell.el (explicit-bash-args): Likewise.
4848         * progmodes/ada-xref.el (ada-find-in-src-path): Likewise.
4849         Use grep -E rather than egrep.
4851 2006-10-15  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
4853         * ido.el (ido-exhibit): Allow `-', `_', and trailing `$' in user id.
4855 2006-10-15  Kim F. Storm  <storm@cua.dk>
4857         * filesets.el (filesets-run-cmd--repl-fn): Use shell-quote-argument.
4859 2006-10-14  Lennart Borgman  <lennart.borgman.073@student.lu.se>
4861         * filesets.el (filesets-cmd-shell-command): Quote buffer-file-name
4862         to protect whitespace and metacharacters from the shell.
4864 2006-10-13  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
4866         * apropos.el (apropos-pattern-quoted): Fix a typo in a doc string.
4868 2006-10-13  Eli Zaretskii  <eliz@gnu.org>
4870         * subr.el (start-process-shell-command): Doc fix.
4872 2006-10-13  Andrea Russo  <rastandy@salug.it>  (tiny change)
4874         * info-look.el <maxima-mode, inferior-maxima-mode>: Allow [0-9] in
4875         the regexp for Maxima symbols.
4877 2006-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4879         * vc-hooks.el (vc-ignore-dir-regexp): Make it into a defcustom.
4880         (vc-find-root): Don't walk higher up than ~.
4882 2006-10-12  Chong Yidong  <cyd@stupidchicken.com>
4884         * international/utf-8.el (utf-translate-cjk-load-tables):
4885         Avoid clobbering last-coding-system-used during load.
4887 2006-10-12  Carsten Dominik  <dominik@science.uva.nl>
4889         * textmodes/reftex-global.el (reftex-create-tags-file):
4890         Quote file arguments.
4892 2006-10-12  Richard Stallman  <rms@gnu.org>
4894         * files.el (file-name-history): Add defvar.
4895         (save-some-buffers-action-alist): Improve description strings.
4897 2006-10-12  Andreas Schwab  <schwab@suse.de>
4899         * files.el (auto-mode-alist): Match change log file name also with
4900         a dash before a numeric extension.
4902 2006-10-11  Ilya Zakharevich  <ilyaz@cpan.org>
4904         * progmodes/cperl-mode.el: Merge from upstream, upto version 5.22.
4905         After 5.0:
4906         (cperl-add-tags-recurse-noxs-fullpath): New function (for -batch mode).
4908         After 5.1: Major edit.  Summary of most visible changes:
4910         - Multiple <<HERE per line allowed.
4911         - Handles multiline subroutine declaration headers (with comments).
4912           (The exception is `cperl-etags' - but it is not used in the rest
4913           of the mode.)
4914         - Fontifies multiline my/our declarations (even with comments,
4915           and with legacy `font-lock').
4916         - Major speedup of syntaxification, both immediate and postponed
4917           (3.5x to 15x [for different CPUs and versions of Emacs] on the
4918           huge real-life document I tested).
4919         - New bindings, edits to imenu.
4920         - "_" is made into word-char during fontification/syntaxification;
4921           some attempts to recognize non-word "_" during other operations too.
4922         - Detect bug in Emacs with `looking-at' inside `narrow' and bulk out.
4923         - autoload some more perldoc-related stuff
4924         - New convenience features: ISpell POD/HEREDOCs, narrow-to-HEREDOC.
4925         - Attempt to incorporate XEmacs edits which reached me.
4927         Fine-grained changelog:
4928         (cperl-hook-after-change): New configuration variable.
4929         (cperl-vc-sccs-header): Likewise.
4930         (cperl-vc-sccs-header): Likewise.
4931         (cperl-vc-header-alist): Default via two preceding variables.
4932         (cperl-invalid-face): Remove double quoting under XEmacs
4933                 (still needed under 21.2).
4934         (cperl-tips): Update URLs for resources.
4935         (cperl-problems): Likewise.
4936         (cperl-praise): Mention new features.
4937         New C-c key bindings: for `cperl-find-bad-style',
4938         `cperl-pod-spell', `cperl-here-doc-spell', `cperl-narrow-to-here-doc',
4939         `cperl-perdoc', and `cperl-perldoc-at-point'.
4940         CPerl Mode menu changes:        "Fix style by spaces", "Imenu on Perl Info"
4941         moved, new submenu of Tools with Ispell entries and narrowing.
4942         (cperl-after-sub-regexp): New defsubst.
4943         (cperl-imenu--function-name-regexp-perl): Use `cperl-after-sub-regexp'.
4944                 Allows heads up to head4.
4945                 Allow "package;".
4946         (defun-prompt-regexp): Use `cperl-after-sub-regexp'.
4947         (paren-backwards-message): ??? Something for XEmacs???
4948         (cperl-mode): Never auto-switch abbrev-mode off.
4949                 Try to allow '_' be non-word char.
4950                 Do not use `font-lock-unfontify-region-function' on XEmacs.
4951                 Reset syntax cache on mode start.
4952                 Support multiline facification (even on legacy `font-lock').
4953         (cperl-facemenu-add-face-function): ??? Some contributed code ???
4954         (cperl-after-change-function): Since `font-lock' and `lazy-lock'
4955                 refuse to inform us whether the fontification is due to lazy
4956                 calling or due to edit to a buffer, install our own hook
4957                 (controlled by `cperl-hook-after-change').
4958         (cperl-electric-pod): =cut may have been recognized as start.
4959         (cperl-block-p): Move, updatedfor attributes.
4960         (cperl-calculate-indent): Try to allow '_' be non-word char
4961                 Support subs with attributes.
4962         (cperl-where-am-i): Queit (?) a warning.
4963         (cperl-cached-syntax-table)     New function.
4964         (cperl-forward-re): Use `cperl-cached-syntax-table'.
4965         (cperl-unwind-to-safe): Recognize `syntax-type' property
4966                 changing in a middle of line.
4967         (cperl-find-sub-attrs): New function.
4968         (cperl-find-pods-heres): Allow many <<EOP per line.
4969                 Allow subs with attributes.
4970                 Major speedups (3.5x..15x on a real-life test file nph-proxy.pl).
4971                 Recognize "extproc " (OS/2) case-folded and only at start.
4972                 /x on s///x with empty replacement was not recognized.
4973                 Better comments.
4974         (cperl-after-block-p): Remarks on diff with `cperl-block-p'.
4975                 Allow subs with attributes, labels.
4976                 Do not confuse "else::foo" with "else".
4977                 Minor optimizations...
4978         (cperl-after-expr-p): Try to allow '_' be non-word char.
4979         (cperl-fill-paragraph): Try to detect a major bug in Emacs
4980                 with `looking-at' inside `narrow' and bulk out if found.
4981         (cperl-imenu--create-perl-index): Updates for new
4982                 `cperl-imenu--function-name-regexp-perl'.
4983         (cperl-outline-level): Likewise.
4984         (cperl-init-faces): Allow multiline subroutine headers
4985                 and my/our declarations, and ones with comments.
4986                 Allow subroutine attributes.
4987         (cperl-imenu-on-info): Better docstring.
4988         (cperl-etags): Rudimentary support for attributes.
4989                 Support for packages and "package;".
4990         (cperl-add-tags-recurse-noxs): Better (?) docstring.
4991         (cperl-add-tags-recurse-noxs-fullpath): Likewise.
4992         (cperl-tags-hier-init): Misprint for `fboundp' fixed.
4993         (cperl-not-bad-style-regexp): Try to allow '_' be non-word char.
4994         (cperl-perldoc): Add autoload.
4995         (cperl-perldoc-at-point): Likewise.
4996         (cperl-here-doc-spell): New function.
4997         (cperl-pod-spell): Likewise.
4998         (cperl-map-pods-heres): Likewise.
4999         (cperl-get-here-doc-region): Likewise.
5000         (cperl-font-lock-fontify-region-function): Likewise (backward
5001                 compatibility for legacy `font-lock').
5002         (cperl-font-lock-unfontify-region-function): Fix style.
5003         (cperl-fontify-syntaxically): Recognize and optimize away deferred
5004                 calls with no-change.  Governed by `cperl-hook-after-change'.
5005         (cperl-fontify-update): Recognize that syntaxification region
5006                 can be larger than fontification one.
5007                 XXXX we leave `cperl-postpone' property, so this is quadratic...
5008         (cperl-fontify-update-bad): Temporary placeholder until
5009                 it is clear how to implement `cperl-fontify-update'.
5010         (cperl-time-fontification): New function.
5011         (attrib-group): New text attribute.
5012         (multiline): New value: `syntax-type' text attribute.
5014         After 5.2:
5015         (cperl-emulate-lazy-lock): New function.
5016         (cperl-fontify-syntaxically): Would skip large regions.
5017         Add `cperl-time-fontification', `cperl-emulate-lazy-lock' to menu.
5018         Some globals were declared, but uninitialized.
5020         After 5.3, 5.4:
5021         (cperl-facemenu-add-face-function): Add docs, fix U<>.
5022         Copyright message updated.
5023         (cperl-init-faces): Work around a bug in `font-lock'. May slow
5024                         facification down a bit.
5025                 Misprint for my|our|local for old `font-lock'
5026                         "our" was not fontified same as "my|local".
5027                 Highlight variables after "my" etc even in
5028                         a middle of an expression.
5029                 Do not facify multiple variables after my etc
5030                         unless parentheses are present.
5032         After 5.5, 5.6
5033         (cperl-fontify-syntaxically): after-change hook could reset.
5034         (cperl-syntax-done-to) to a middle of line; unwind to BOL.
5036         After 5.7:
5037         (cperl-init-faces): Allow highlighting of local ($/).
5038         (cperl-problems-old-emaxen): New variable (for the use of DOCSTRING).
5039         (cperl-problems): Remove fixed problems.
5040         (cperl-find-pods-heres): Recognize #-comments in m##x too.
5041                 Recognize charclasses (unless delimiter is \).
5042         (cperl-fontify-syntaxically): Unwinding to safe was done in wrong order.
5043         (cperl-regexp-scan): Update docs.
5044         (cperl-beautify-regexp-piece): Use information got from regexp scan.
5046         After 5.8:
5047         Major user visible changes:
5048         Recognition and fontification of character classes in RExen.
5049         Variable indentation of RExen according to groups.
5051         (cperl-find-pods-heres): Recognize POSIX classes in REx charclasses.
5052                 Fontify REx charclasses in variable-name face.
5053                 Fontify POSIX charclasses in "type" face.
5054                 Fontify unmatched "]" in function-name face.
5055                 Mark first-char of HERE-doc as `front-sticky'.
5056                 Reset `front-sticky' property when needed.
5057         (cperl-calculate-indent): Indents //x -RExen accordning to parens level.
5058         (cperl-to-comment-or-eol): Recognize ends of `syntax-type' constructs.
5059         (cperl-backward-to-noncomment): Recognize stringy `syntax-type'
5060                 constructs.  Support `narrow'ed buffers.
5061         (cperl-praise): Remove a reservation.
5062         (cperl-make-indent): New function.
5063         (cperl-indent-for-comment): Use `cperl-make-indent'.
5064         (cperl-indent-line): Likewise.
5065         (cperl-lineup): Likewise.
5066         (cperl-beautify-regexp-piece): Likewise.
5067         (cperl-contract-level): Likewise.
5068         (cperl-toggle-set-debug-unwind): New function.
5069                 New menu entry for this.
5070         (fill-paragraph-function): Use when `boundp'.
5071         (cperl-calculate-indent): Take into account groups when indenting RExen.
5072         (cperl-to-comment-or-eol): Recognize # which end a string.
5073         (cperl-modify-syntax-type): Make only syntax-table property non-sticky.
5074         (cperl-fill-paragraph): Return t: needed for `fill-paragraph-function'.
5075         (cperl-fontify-syntaxically): More clear debugging message.
5076         (cperl-pod2man-build-command): Check (XEmacs) `Man-filter-list'.
5077         (cperl-init-faces): More complicated highlight even on XEmacs (new).
5078         Merge cosmetic changes from XEmacs.
5080         After 5.9:
5081         (cperl-1+): Move to before the first use.
5082         (cperl-1-): Likewise.
5084         After 5.10:
5086         This code may lock Emacs hard!!!  Use at your own risk!
5088         (cperl-font-locking): New internal variable.
5089         (cperl-beginning-of-property): New function.
5090         (cperl-calculate-indent): Use `cperl-beginning-of-property'
5091         instead of `previous-single-property-change'.
5092         (cperl-unwind-to-safe): Likewise.
5093         (cperl-after-expr-p): Likewise.
5094         (cperl-get-here-doc-region): Likewise.
5095         (cperl-font-lock-fontify-region-function): Likewise.
5096         (cperl-to-comment-or-eol): Do not call `cperl-update-syntaxification'
5097                         recursively.
5098                 Bound `next-single-property-change' via `point-max'.
5099         (cperl-unwind-to-safe): Bound likewise
5100         (cperl-font-lock-fontify-region-function): Likewise.
5101         (cperl-find-pods-heres): Mark as recursive for `cperl-to-comment-or-eol'
5102                 Initialization of `cperl-font-lock-multiline-start' could be
5103                 missed if the "main" fontification did not run due to the
5104                 keyword being already fontified.
5105         (cperl-pod-spell): Return t from do-one-chunk function.
5106         (cperl-map-pods-heres): Stop when the worker returns nil.
5107                 Call `cperl-update-syntaxification'.
5108         (cperl-get-here-doc-region): Call `cperl-update-syntaxification'.
5109         (cperl-get-here-doc-delim): Remove unused function.
5111         After 5.11:
5113         The possible lockup of Emacs (introduced in 5.10) fixed.
5115         (cperl-unwind-to-safe): `cperl-beginning-of-property' won't return nil.
5116         (cperl-syntaxify-for-menu): New customization variable.
5117         (cperl-select-this-pod-or-here-doc): New function.
5118         (cperl-get-here-doc-region): Extra argument.
5119                 Do not adjust pos by 1.
5121         New menu entries
5122                 (Perl/Tools): Selection of current POD or HERE-DOC section.
5123                 (Debugging CPerl:) backtrace on fontification.
5125         After 5.12:
5126         (cperl-cached-syntax-table): Use `car-safe'.
5127         (cperl-forward-re): Remove spurious argument SET-ST.
5128                 Add documentation.
5129         (cperl-forward-group-in-re): New function.
5130         (cperl-find-pods-heres): Find and highlight (?{}) blocks in RExen
5131         (XXXX Temporary (?) hack is to syntax-mark them as comment).
5133         After 5.13:
5134         (cperl-string-syntax-table): Make { and } not-grouping
5135           (Sometimes they ARE grouping in RExen, but matching them would only
5136            confuse in many situations when they are not)
5137         (beginning-of-buffer): Replace two occurences with goto-char...
5138         (cperl-calculate-indent): `char-after' could be nil...
5139         (cperl-find-pods-heres): REx can start after "[" too.
5140                 Hightlight (??{}) in RExen too.
5141         (cperl-maybe-white-and-comment-rex): New constant
5142         (cperl-white-and-comment-rex): Likewise.
5143                 XXXX Not very efficient, but hard to make
5144                 better while keeping 1 group.
5146         After 5.13:
5147         (cperl-find-pods-heres): $foo << identifier() is not a HERE-DOC.
5148                 Likewise for 1 << identifier.
5150         After 5.14:
5151         (cperl-find-pods-heres): Different logic for $foo .= <<EOF etc.
5152                 Error-less condition-case could fail.
5153         (cperl-font-lock-fontify-region-function): Likewise.
5154         (cperl-init-faces): Likewise.
5156         After 5.15:
5157         (cperl-find-pods-heres): Support property REx-part2.
5158         (cperl-calculate-indent): Likewise.
5159                 Don't special-case REx with non-empty 1st line.
5160         (cperl-find-pods-heres): In RExen, highlight non-literal backslashes.
5161                 Invert highlighting of charclasses:
5162                         now the envelop is highlighted.
5163                 Highlight many others 0-length builtins.
5164         (cperl-praise): Mention indenting and highlight in RExen.
5166         After 5.15:
5167         (cperl-find-pods-heres): Highlight capturing parens in REx.
5169         After 5.16:
5170         (cperl-find-pods-heres): Highlight '|' for alternation
5171         Initialize `font-lock-warning-face' if not present.
5172         (cperl-find-pods-heres): Use `font-lock-warning-face' instead of
5173                          `font-lock-function-name-face'.
5174         (cperl-look-at-leading-count): Likewise.
5175         (cperl-find-pods-heres): Localize `font-lock-variable-name-face',
5176                         `font-lock-keyword-face' (needed for
5177                         batch processing), etc...
5178                 Use `font-lock-builtin-face' for builtin in REx
5179                         Now `font-lock-variable-name-face'
5180                         is used for interpolated variables
5181                 Use "talking aliases" for faces inside REx
5182                 Highlight parts of REx (except in charclasses)
5183                         according to the syntax and/or semantic
5184                 Syntax-mark a {}-part of (?{}) as "comment"
5185                         (it was the ()-part)
5186                 Better logic to distinguish what is what in REx
5187         (cperl-tips-faces): Document REx highlighting
5188         (cperl-praise): Mention REx syntax highlight etc.
5190         After 5.17:
5191         (cperl-find-sub-attrs): Would not always manage to print error message.
5192         (cperl-find-pods-heres): Localize `font-lock-constant-face'.
5194         After 5.18:
5195         (cperl-find-pods-heres): Misprint in REx for parsing REx.
5196                 Very minor optimization.
5197                 `my-cperl-REx-modifiers-face' got quoted.
5198                 Recognize "print $foo <<END" as HERE-doc.
5199                 Put `REx-interpolated' text attribute if needed.
5200         (cperl-invert-if-unless-modifiers): New function.
5201         (cperl-backward-to-start-of-expr): Likewise.
5202         (cperl-forward-to-end-of-expr): Likewise.
5203         (cperl-invert-if-unless): Works in "the opposite way" too.
5204                 Cursor position on return is on the switch-word.
5205                 Indents comments better.
5206         (REx-interpolated): New text attribute.
5207         (cperl-next-interpolated-REx): New function.
5208         (cperl-next-interpolated-REx-0): Likewise.
5209         (cperl-next-interpolated-REx-1): Likewise.
5210         "\C-c\C-x", "\C-c\C-y", "\C-c\C-v":     New keybinding for these functions.
5211         Perl/Regexp menu: 3 new entries for `cperl-next-interpolated-REx'.
5212         (cperl-praise): Mention finded interpolated RExen.
5214         After 5.19:
5215         (cperl-init-faces): Highlight %$foo, @$foo too.
5216         (cperl-short-docs): Better docs for system, exec.
5217         (cperl-find-pods-heres): Better detect << after print {FH} <<EOF etc.
5218                 Would not find HERE-doc ended by EOF without NL.
5219         (cperl-short-docs): Correct not-doubled \-escapes.
5220         start block: Put some `defvar' for stuff gone from XEmacs.
5222         After 5.20:
5223         initial comment: Extend copyright, fix email address.
5224         (cperl-indent-comment-at-column-0): New customization variable.
5225         (cperl-comment-indent): Indentation after $#a would increasy by 1.
5226         (cperl-mode): Make `defun-prompt-regexp' grok BEGIN/END etc.
5227         (cperl-find-pods-heres): Mark CODE of s///e as `syntax-type' `multiline'
5228         (cperl-at-end-of-expr): Would fail if @BAR=12 follows after ";".
5229         (cperl-init-faces): If `cperl-highlight-variables-indiscriminately'
5230                         highlight $ in $foo too (UNTESTED).
5231         (cperl-set-style): Docstring missed some available styles.
5232         toplevel: Menubar/Perl/Indent-Styles had FSF, now K&R.
5233                 Change "Current" to "Memorize Current".
5234         (cperl-indent-wrt-brace): New customization variable; the default is
5235                 as for pre-5.2 version.
5236         (cperl-styles-entries): Keep `cperl-extra-newline-before-brace-multiline'.
5237         (cperl-style-alist): Likewise.
5238         (cperl-fix-line-spacing): Support `cperl-merge-trailing-else' being nil,
5239                 and `cperl-extra-newline-before-brace' etc
5240                 being t
5241         (cperl-indent-exp): Plans B and C to find continuation blocks even
5242                 if `cperl-extra-newline-before-brace' is t.
5244         After 5.21:
5245         Improve some docstrings concerning indentation.
5246         (cperl-indent-rules-alist): New variable.
5247         (cperl-sniff-for-indent): New function name
5248                 (separated from `cperl-calculate-indent').
5249         (cperl-calculate-indent): Separate the sniffer and the indenter;
5250                 uses `cperl-sniff-for-indent' now.
5251         (cperl-comment-indent): Test for `cperl-indent-comment-at-column-0'
5252                 was inverted;
5253                 Support `comment-column' = 0.
5255 2006-10-11  Martin Rudalics  <rudalics@gmx.at>
5257         * dnd.el (dnd-handle-one-url): Fix typo in doc-string.
5258         * help-at-pt.el (scan-buf-move-to-region): Likewise.
5259         * longlines.el (longlines-window-change-function): Likewise.
5260         * simple.el (undo-ask-before-discard): Likewise.
5261         * wid-edit.el (widget-field-prompt-internal)
5262         (widget-documentation-link-p): Likewise.
5264 2006-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5266         * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars
5267         for a keyword.
5269 2006-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5271         * newcomment.el (comment-valid-prefix-p): Make the check
5272         more thorough.  From an idea by Martin Rudalics <rudalics@gmx.at>.
5273         (comment-indent-new-line): Adjust call.
5275 2006-10-09  Ken Manheimer  <ken.manheimer@gmail.com>
5277         * allout.el (allout-back-to-current-heading): Base on lower-level
5278         routines to get proper disqualification of aberrant topics.
5280 2006-10-09  Richard Stallman  <rms@gnu.org>
5282         * textmodes/two-column.el (2C-two-columns): Doc fix.
5284 2006-10-09  Kim F. Storm  <storm@cua.dk>
5286         * shell.el (explicit-csh-args, explicit-bash-args): Add comment
5287         about implicit use.
5289 2006-10-08  Richard Stallman  <rms@gnu.org>
5291         * textmodes/two-column.el (2C-two-columns): Doc fix.
5293 2006-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5295         * files.el: Mark `buffer-read-only' as safe-local-variable.
5297 2006-10-08  Nick Roberts  <nickrob@snap.net.nz>
5299         * progmodes/gdb-ui.el (gdb-speedbar-expand-node):
5300         Burp if GUD buffer has been killed.
5302 2006-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5304         * completion.el (add-completions-from-c-buffer):
5305         Don't presume an error's second element is a string.
5306         Use looking-at rather than buffer-substring + member.
5308 2006-10-07  Eli Zaretskii  <eliz@gnu.org>
5310         * mail/rmail.el (rmail-redecode-body): If the old encoding is
5311         `undecided', call find-coding-systems-region to find a proper
5312         non-trivial encoding.
5313         (rmail-mime-charset-pattern): Allow a TAB between "Content-Type"
5314         and "text/plain".
5316 2006-10-07  Kevin Ryde  <user42@zip.com.au>
5318         * textmodes/reftex-vars.el (defgroup reftex): Update home page
5319         url-link.
5321         * strokes.el (defgroup strokes): Remove invalid url-link.
5323 2006-10-07  Magnus Henoch  <mange@freemail.hu>
5325         * autoinsert.el (auto-insert-alist): Doc fix.
5327 2006-10-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
5329         * mouse-sel.el (mouse-insert-selection-internal):
5330         Use insert-for-yank, so that yank handlers are run.
5332 2006-10-07  Kim F. Storm  <storm@cua.dk>
5334         * ido.el (ido-file-extension-aux): Fix comparison.
5336 2006-10-06  Kim F. Storm  <storm@cua.dk>
5338         * ido.el (ido-wide-find-dirs-or-files): Use shell-quote-argument.
5340 2006-10-05  Juanma Barranquero  <lekktu@gmail.com>
5342         * emacs-lisp/advice.el (ad-remove-advice, ad-parse-arglist)
5343         (ad-make-mapped-call): Use `let', not `let*'.
5345 2006-10-05  Chong Yidong  <cyd@stupidchicken.com>
5347         * international/mule-cmds.el (coding-system-change-eol-conversion):
5348         Ensure the coding system is initialized before calling
5349         coding-system-eol-type.
5351 2006-10-04  Carsten Dominik  <dominik@science.uva.nl>
5353         * textmodes/org.el (org-rm-props, org-activate-plain-links)
5354         (org-activate-angle-links, org-activate-dates)
5355         (org-activate-target-links, org-activate-camels)
5356         (org-activate-tags): Add `rear-nonsticky' text property to avoid
5357         textproperty keymaps from being active beyond the end of a line.
5358         (org-unfontify-region): Also remove `rear-nonsticky' property.
5360 2006-10-04  Kenichi Handa  <handa@m17n.org>
5362         * international/code-pages.el (next): Table fixed.
5364 2006-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5366         * progmodes/sh-script.el (sh-prev-thing): Remove (forward-char 1) now
5367         that it's been made unnecessary by removing narrowing.
5369 2006-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5371         * progmodes/sh-script.el (sh-prev-thing): Massage to untangle the
5372         control flow a bit, simplify another bit, and add comments.
5374 2006-10-03  David Kastrup  <dak@gnu.org>
5376         * help.el (describe-mode): For clicks on mode-line, use "@"
5377         interactive argument to get the major mode of the click instead of
5378         the current buffer.
5380         * isearch.el (isearch-mouse-2): Use new semantics of `key-binding'
5381         in order to better redirect mouse-2 clicks.  Also allow default
5382         bindings to apply.
5384 2006-10-03  Kim F. Storm  <storm@cua.dk>
5386         * emacs-lisp/cl.el (pushnew-internal): Remove defvar.
5387         (pushnew): Fix last change.
5389 2006-10-03  Denis St\e,A|\e(Bnkel  <dstuenkel@googlemail.com>  (tiny change)
5391         * ibuf-ext.el (eval, view-and-eval) <define-ibuffer-op>:
5392         Use the interactive spec of `eval-expression'.
5394 2006-10-02  Michael Welsh Duggan  <md5i@cs.cmu.edu>
5396         * progmodes/sh-script.el (sh-prev-thing): Fix last change.
5398 2006-10-02  MIYOSHI Masanori  <miyoshi@meadowy.org>  (tiny change)
5400         * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
5401         2006-09-28 commit.
5403 2006-10-02  Kenichi Handa  <handa@m17n.org>
5405         * international/code-pages.el (iso-8859-6): Table fixed.
5407 2006-10-01  Chris Moore  <christopher.ian.moore@gmail.com>
5409         * dired.el (dired-build-subdir-alist): Fix previous change.
5411 2006-10-01  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>
5413         * simple.el (undo-elt-crosses-region): Fix the inequalities.
5415 2006-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5417         * emacs-lisp/find-func.el (find-function-regexp): Don't match
5418         "define-button-type".
5420         * pcvs.el (cvs-update-header): Fix handling of extra newlines so that
5421         they don't keep accumulating.
5423 2006-10-01  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
5425         * ffap.el (ffap-rfc-path): Change the address of the RFC
5426         repository to ftp.rfc-editor.org, as ds.internic.net seems to be gone.
5428 2006-10-01  Stephen Berman  <Stephen.Berman@gmx.net>
5430         * allout.el (allout-expose-topic): Rectify implementation of "+"
5431         spec, so that bodies are not exposed with headlines.
5433 2006-10-01  Ken Manheimer  <ken.manheimer@gmail.com>
5435         * allout.el (allout-current-depth): Do aberrent check only at or
5436         below doublecheck depth.
5437         (allout-chart-subtree): Make it explicit that LEVELS being nil
5438         means unlimited depth.  Drop undocumented support for LEVELS value
5439         t meaning unlimited depth.  (This is consistent with
5440         allout-chart-to-reveal, but contrary to allout-show-children,
5441         which needs to use nil to default to depth of 1.)
5442         (allout-goto-prefix-doublechecked): Wrap long docstring line.
5443         (allout-chart-to-reveal): Be explicit in docstring about meaning
5444         of nil LEVELS, and drop support for LEVELS value t.
5445         (allout-show-children): Translate the level spec used by this
5446         routine to that used by allout-chart-subtree and
5447         allout-chart-to-reveal.
5448         (allout-show-to-offshoot): Retry once when stuck, after opening
5449         subtree - improvements in discontinuity handling likely will
5450         enable progress.
5452 2006-09-30  Chong Yidong  <cyd@stupidchicken.com>
5454         * wid-edit.el (widget-button-click-moves-point): New variable.
5455         (widget-button-click): If widget-button-click-moves-point is
5456         non-nil, set point after performing the button action
5458         * cus-edit.el (custom-mode): Set widget-button-click-moves-point.
5460 2006-09-30  Martin Rudalics  <rudalics@gmx.at>
5462         * files.el (find-file-existing): Modify to not allow wildcards.
5464 2006-09-30  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
5466         * simple.el (undo-more): When undo information for the region is
5467         exhausted, say "No further undo information FOR REGION".
5469 2006-09-30  Michael Welsh Duggan  <md5i@cs.cmu.edu>
5471         * progmodes/sh-script.el (sh-prev-thing):
5472         Take `sh-leading-keywords' into account.
5474 2006-09-29  Glenn Morris  <rgm@gnu.org>
5476         * custom.el (defcustom): Doc fix.
5478         * calendar/calendar.el (european-calendar-style):
5479         Call european-calendar or american-calendar as needed when set.
5480         (diary-view-entries, list-calendar-holidays): Move autoloads
5481         before use.
5483 2006-09-29  Juri Linkov  <juri@jurta.org>
5485         * progmodes/cperl-mode.el (cperl-after-expr-p): Don't move point
5486         to nil if there is no previous property change.
5488 2006-09-29  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
5490         * cus-edit.el (custom-save-all): Switch to emacs-lisp mode before
5491         saving anything to be sure that `forward-sexp' behaves correctly.
5493 2006-09-29  Chong Yidong  <cyd@stupidchicken.com>
5495         * simple.el (line-move-finish): Ignore field boundaries if the
5496         initial and final points have the same `field' property.
5498 2006-09-29  Kim F. Storm  <storm@cua.dk>
5500         * ido.el (ido-file-internal): Only bind minibuffer-completing-file-name
5501         to t while calling ido-read-internal.
5503 2006-09-29  Carsten Dominik  <dominik@science.uva.nl>
5505         * textmodes/org.el (org-file-remote-p): Get regexp from list.
5506         (org-archive-subtree): Remove erraneous `]' from character list.
5508 2006-09-28  Jonathan Yavner  <jyavner@member.fsf.org>
5510         * ses.el (ses-in-print-area, ses-goto-data, ses-load)
5511         (ses-reconstruct-all): Make undo of "insert row" work by keeping
5512         markers for data-area and parameters-area.
5514 2006-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5516         * progmodes/make-mode.el (makefile-mode): Don't disable jit-lock.
5518         * font-lock.el (font-lock-after-change-function): Refontify next line
5519         as well if end is at BOL.
5520         (font-lock-extend-jit-lock-region-after-change): Be more careful to
5521         only extend the region as much as needed.
5523 2006-09-28  Richard Stallman  <rms@gnu.org>
5525         * comint.el (comint-mode): Bind font-lock-defaults non-nil.
5527         * subr.el (insert-for-yank-1): Handle `font-lock-face' specially.
5529         * international/mule.el (after-insert-file-set-coding):
5530         If VISIT, don't let set-buffer-multibyte make undo info.
5532 2006-09-28  Osamu Yamane  <yamane@green.ocn.ne.jp>  (tiny change)
5534         * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
5535         lines in base64-encoded authentication response.
5537 2006-09-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
5539         * progmode/ebnf2ps.el: Doc fix. Implement arrow spacing and scaling.
5540         (ebnf-version): New version 4.3.
5541         (ebnf-arrow-extra-width, ebnf-arrow-scale): New options.
5542         (ebnf-prologue): Adjust PostScript programming.
5543         (ebnf-begin-file, ebnf-insert-ebnf-prologue, ebnf-terminal-dimension1)
5544         (ebnf-repeat-dimension, ebnf-except-dimension): Adjust code.
5546 2006-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5548         * jit-lock.el (jit-lock-force-redisplay): Rename from
5549         jit-lock-fontify-again, and undo the mistaken change I've just done.
5551         * jit-lock.el (jit-lock-fontify-now): Don't fontify the empty text.
5552         (jit-lock-fontify-again): Don't refontify text that's not displayed.
5554 2006-09-26  Kenichi Handa  <handa@m17n.org>
5556         * startup.el (display-splash-screen): Allow a prefix argument.
5558 2006-09-25  Jason Rumney  <jasonr@gnu.org>
5560         * subr.el (shell-quote-argument): Use DOS logic for Windows
5561         shells with DOS semantics.
5563 2006-09-24  Richard Stallman  <rms@gnu.org>
5565         * progmodes/compile.el (compilation-goto-locus-delete-o): New fn.
5566         (compilation-goto-locus): Use compilation-goto-locus-delete-o
5567         to delete the overlay.  Put it on pre-command-hook.
5569         * emacs-lisp/timer.el (timer-max-repeats): Doc fix.
5571         * startup.el (fancy-splash-screens, normal-splash-screen):
5572         Call the splash buffer *About GNU Emacs*.
5574         * simple.el (next-error-highlight, next-error-highlight-no-select):
5575         Default to 0.5.
5576         (yank-excluded-properties): Add `fontified'.
5578         * font-lock.el (font-lock-compile-keywords): Allow value of
5579         syntax-begin-function to enable paren-column-0 highlighting.
5581 2006-09-24  Chris Moore  <christopher.ian.moore@gmail.com>
5583         * dired.el (dired-build-subdir-alist): When file ends in colon,
5584         don't exit the loop, just disregard that file.
5586 2006-09-24  Chong Yidong  <cyd@stupidchicken.com>
5588         * simple.el (line-move-finish): Handle corner case for fields in
5589         continued lines.
5590         (line-move-1): Remove flawed test for that case.
5592 2006-09-24  Ken Manheimer  <ken.manheimer@gmail.com>
5594         * icomplete.el (icomplete-simple-completing-p): Use the correct
5595         name for the new variable, `icomplete-with-completion-tables'.
5596         (file local variables): Remove superfluous setting.
5598 2006-09-23  Jeff Miller  <jmiller@cablespeed.com>  (tiny change)
5600         * calendar/appt.el (appt-check): Fix typo for appointments just
5601         after midnight.
5603 2006-09-23  Chong Yidong  <cyd@stupidchicken.com>
5605         * help.el (describe-key-briefly, describe-key): Don't expect an
5606         extra up event if a down-event is generated by a popup menu.
5608 2006-09-23  Michal Nazarewicz  <mnazarewicz@gmail.com>  (tiny change)
5610         * textmodes/ispell.el (ispell-change-dictionary): Don't check the
5611         local dictionary when changing the global dictionary.
5613 2006-09-23  Ken Manheimer  <ken.manheimer@gmail.com>
5615         * icomplete.el (icomplete-with-completion-tables): List of
5616         specialized completion tables with which icomplete should
5617         operate.  Include the new `internal-complete-buffer', so icomplete
5618         works with interactive buffer-selection.
5619         (icomplete-simple-completing-p): Add acceptance of specialized
5620         completion tables listed in icomplete-with-completion-tables.
5622 2006-09-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5624         * frame.el (focus-follows-mouse): Set default to nil on Mac.
5626         * startup.el (command-line): Use `custom-reevaluate-setting' for
5627         `focus-follows-mouse'.
5629 2006-09-22  Richard Stallman  <rms@gnu.org>
5631         * cus-edit.el (custom-buffer-create-internal): In `emacs -q',
5632         explain why Save is not available.
5634 2006-09-22  Juanma Barranquero  <lekktu@gmail.com>
5636         * woman.el (woman0-so): Use `let*', not `let'.
5637         (woman-horizontal-line): Remove unbalanced parenthesis.
5639 2006-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5641         * woman.el: Make sure all the end-of-region markers we use have
5642         a non-nil insertion-type.
5643         (woman0-so): Move things around so we can use copy-marker.
5644         (woman0-roff-buffer, woman2-process-escapes-to-eol, woman2-roff-buffer):
5645         Adjust marker type.
5646         (woman2-process-escapes): Check marker type.
5647         (woman-horizontal-line): Dispense with the use of a marker.
5649 2006-09-22  Jay Belanger  <belanger@truman.edu>
5651         * calc/calc-lang.el: Add Greek letters to math-variable-table
5652         property of tex.
5654 2006-09-22  Chong Yidong  <cyd@stupidchicken.com>
5656         * files.el (save-some-buffers-action-alist): Display diff in view-mode.
5658 2006-09-22  Masatake YAMATO  <jet@gyve.org>
5660         * add-log.el (add-log-current-defun): Use `forward-sexp'
5661         instead of `forward-word' to pick c++::symbol.
5662         Reported by Guanpeng Xu <herberteuler@hotmail.com>.
5664 2006-09-22  Kenichi Handa  <handa@m17n.org>
5666         * bindings.el: Fix setting self-insert-command for multibyte
5667         characters in global-map.
5669 2006-09-21  David Kastrup  <dak@gnu.org>
5671         * mouse.el (mouse-posn-property): Fix typo for `event-start' in
5672         doc string.
5674 2006-09-21  Kenichi Handa  <handa@m17n.org>
5676         * language/european.el ("Latin-1"): Add windows-1252 to
5677         coding-priority.
5678         ("German"): Likewise.
5680 2006-09-21  Kim F. Storm  <storm@cua.dk>
5682         * emacs-lisp/cl-macs.el (member*): Use memql instead of complex code.
5683         Suggested by Miles Bader.
5685         * emacs-lisp/cl.el (pushnew): Rework 2006-09-10 change.  Use memql
5686         instead of add-to-list in the simple case.
5688 2006-09-20  Kenichi Handa  <handa@m17n.org>
5690         * isearch.el (isearch-process-search-char): Cancel the previous change.
5691         (isearch-search-string): New function.
5692         (isearch-search): Use isearch-search-string.
5693         (isearch-lazy-highlight-search): Likewise.
5695 2006-09-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
5697         * lpr.el (lpr-page-header-switches): Insert `*' at beginning of doc
5698         string to become an option.
5700 2006-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5702         * files.el (find-buffer-visiting): Don't get fooled by a nil inode.
5704 2006-09-20  Kim F. Storm  <storm@cua.dk>
5706         * simple.el (line-move-partial): Call pos-visible-in-window-p with
5707         position t instead of trying both window-end and window-end - 1.
5709 2006-09-20  Carsten Dominik  <dominik@science.uva.nl>
5711         * textmodes/org.el (org-scan-tags): Find end of subtrees also in
5712         hidden trees.
5714 2006-09-20  David Kastrup  <dak@gnu.org>
5716         * mouse.el (mouse-posn-property): Improve doc string.
5717         (mouse-on-link-p): Change buffers for function calls on links.
5719         * menu-bar.el (clipboard-yank): Bomb out in interactive use if
5720         buffer is read-only.
5722 2006-09-20  Ken Manheimer  <ken.manheimer@gmail.com>
5724         * allout.el (allout-unprotected): Let inhibit-read-only only when
5725         buffer-read-only isn't set.
5726         (allout-annotate-hidden): Enable topic annotation during copies even
5727         when the buffer is read-only, eg for topic copies.  Ensure that the loop
5728         advances, even when the span extends beyond the deletion region.
5729         (allout-toggle-subtree-encryption): Use allout-structure-added-hook
5730         rather than allout-exposure-changed-hook, as a stronger assertion.
5731         (allout-keybindings-list): Add bindings for
5732         allout-copy-line-as-kill and allout-copy-topic-as-kill.
5733         (allout-copy-line-as-kill, allout-copy-topic-as-kill):
5734         Copy wrappers for allout-kill-line and allout-kill-topic.
5735         (allout-listify-exposed): Position correctly to accumulate lines.
5737 2006-09-19  Chong Yidong  <cyd@stupidchicken.com>
5739         * simple.el (line-move-1): Escape field boundaries occurring
5740         exactly at point.  Update goal column if constrained to a field.
5741         (line-move-finish): Escape field boundaries occurring exactly at point.
5743 2006-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5745         * mouse.el (mouse-on-link-p): Tentatively fix last change.
5746         (mouse-drag-vertical-line): Remove unused var `wconfig'.
5748 2006-09-19  Kim F. Storm  <storm@cua.dk>
5750         * help.el (describe-key-briefly, describe-key): Simplify printing
5751         of descriptions by using format and %S.  Fix "is undefined"
5752         messages to say "at that spot" for mouse events.
5754         * simple.el (line-move-partial): Optimize.  Try window-line-height
5755         before posn-at-point to get vpos of current line.
5757 2006-09-18  Michael Kifer  <kifer@cs.stonybrook.edu>
5759         * viper.el: Bump up version/date of update to reflect the substantial
5760         changes done in August 2006.
5762         * viper-cmd (viper-next-line-at-bol): Make sure button-at, push-button
5763         are defined.
5765         * ediff-util.el (ediff-add-to-history): New function.
5767         * ediff.el: Use ediff-add-to-history instead of add-to-history.
5769 2006-09-18  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5771         * textmodes/conf-mode.el (conf-space-mode): Doc fix.
5772         Delete duplicate make-local-variable form.
5773         (conf-space-keywords): Add autoload cookie.
5774         Fix typo (`keywords', not `keyword').
5776 2006-09-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5778         * cus-start.el (all): Rename x-gtk-show-chooser-help-text to
5779         x-gtk-file-dialog-help-text.  Rename x-use-old-gtk-file-dialog
5780         to x-gtk-use-old-file-dialog
5782 2006-09-18  Richard Stallman  <rms@gnu.org>
5784         * wid-edit.el (widget-button-click): Handle non-mouse-motion events
5785         that might come in during mouse tracking.
5787 2006-09-18  Kim F. Storm  <storm@cua.dk>
5789         * simple.el (line-move-partial): Rework 2006-09-15 change to use
5790         new window-line-height function.  Further optimize by not calling
5791         pos-visible-in-window-p for window-end when window-line-height
5792         returns useful information.
5794 2006-09-16  Richard Stallman  <rms@gnu.org>
5796         * textmodes/conf-mode.el (conf-mode-map): Use conf-space-keywords cmd.
5797         (conf-space-mode): Don't handle prefix arg.
5798         Delete conf-space-keywords-override code.
5799         Use add-hook.
5800         (conf-space-keywords): New command.
5801         (conf-space-mode-internal): Be careful with imenu-generic-expression.
5802         Delete conf-space-keywords-override code.
5803         (conf-space-keywords-alist): Doc fix.
5804         (conf-space-font-lock-keywords): Doc fix.
5805         (conf-space-keywords-override): Var deleted.
5807 2006-09-16  Chong Yidong  <cyd@stupidchicken.com>
5809         * startup.el (fancy-splash-screens): Don't switch to the scratch
5810         buffer; it may not be the next buffer.
5812 2006-09-16  Romain Francoise  <romain@orebokech.com>
5814         * saveplace.el (load-save-place-alist-from-file): Use expanded name
5815         in both messages.
5817 2006-09-16  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>
5819         * progmodes/python.el (python-preoutput-filter):
5820         Fix arg order to string-match.
5822 2006-09-16  Richard Stallman  <rms@gnu.org>
5824         * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to
5825         font-lock-compile-keywords.
5827         * font-lock.el (font-lock-compile-keywords): Rename optional arg
5828         to SYNTACTIC-KEYWORDS and reverse the sense.  All callers changed.
5830 2006-09-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5832         * cus-start.el (all): Add x-gtk-show-chooser-help-text.
5834         * select.el (xselect-convert-to-string): If UTF8_STRING is requested
5835         and the data doesn't look like UTF8, send STRING instead.
5837 2006-09-16  Agust\e,Am\e(Bn Mart\e,Am\e(Bn  <agustin.martin@hispalinux.es>
5839         * textmodes/flyspell.el (flyspell-check-region-doublons):
5840         New function to detect duplicated words.
5841         (flyspell-large-region): Use it.
5843 2006-09-16  Chong Yidong  <cyd@stupidchicken.com>
5845         * simple.el (line-move-to-column): Revert 2006-08-03 change.
5847 2006-09-16  Eli Zaretskii  <eliz@gnu.org>
5849         * help.el (describe-prefix-bindings): Use let, not let*.
5851 2006-09-16  Ken Manheimer  <ken.manheimer@gmail.com>
5853         * allout.el (allout-regexp, allout-line-boundary-regexp)
5854         (allout-bob-regexp): Correct grouping and boundaries to fix
5855         backwards traversal.
5856         (allout-depth-specific-regexp, allout-depth-one-regexp):
5857         New versions that exploit \\{M\\} regexp syntax, to avoid geometric or
5858         worse time in allout-ascend.
5859         (allout-doublecheck-at-and-shallower): Identify depth threshold
5860         below which topics are checked for and disqualified by containment
5861         discontinuities.
5862         (allout-hotspot-key-handler): Correctly handle multiple-key
5863         strokes.  Remove some unused variables.
5864         (allout-mode-leaders): Clarify that mode-specific comment-start
5865         will be used.
5866         (set-allout-regexp): Correctly regexp-quote allout regexps to
5867         properly accept alternative header-leads and primary bullets with
5868         regexp-specific characters (eg, C "/*", mathematica "(*").
5869         Include new regular expressions among those configured.
5870         (allout-infer-header-lead-and-primary-bullet):
5871         Rename allout-infer-header-lead.
5872         (allout-recent-depth): Manifest as a variable as well as a function.
5873         (allout-prefix-data): Simplify into an inline instead of a macro,
5874         assuming current match data rather than being explicitly passed
5875         it.  Establish allout-recent-depth value as well as
5876         allout-recent-prefix-beginning and allout-recent-prefix-end.
5877         (allout-aberrant-container-p): True when an item's immediate
5878         offspring discontinuously contained.  Useful for disqualifying
5879         unintended topic prefixes, likely at low depths.
5880         (allout-goto-prefix-doublechecked): Elaborate version of
5881         allout-goto-prefix which disqualifies aberrant pseudo-items.
5882         (allout-pre-next-prefix): Layer on top of lower-level routines, to
5883         get disqualification of aberrant containers.
5884         (allout-end-of-prefix, allout-end-of-subtree): Disqualify aberrant
5885         containers.
5886         (allout-beginning-of-current-entry): Position at start of buffer
5887         when in container (depth 0) entry.
5888         (nullify-allout-prefix-data): Invalidate allout-recent-* prefix data.
5889         (allout-current-bullet): Strip text properties.
5890         (allout-get-prefix-bullet): Use right match groups.
5891         (allout-beginning-of-line, allout-next-heading):
5892         Disqualify aberrant containers.
5893         (allout-previous-heading): Disqualify aberrant containers, and
5894         change to regular (rather than inline) function, to allow
5895         self-recursion.
5896         (allout-get-invisibility-overlay): Increment so progress is made
5897         when the first overlay is not the sought one.
5898         (allout-end-of-prefix): Disqualify aberrant containers.
5899         (allout-end-of-line): Cycle something like allout-beginning-of-line.
5900         (allout-mode): Make allout-old-style-prefixes (ie, enabling use with
5901         outline.el outlines) functional again.  Change the primary bullet
5902         along with the header-lead - level 1 new-style bullets now work.
5903         Engage allout-before-change-handler in mainline Emacs, not just
5904         XEmacs, to do undo handling.
5905         (allout-before-change-handler): Expose undo changes occurring in
5906         hidden regions.  Use allout-get-invisibility-overlay instead of
5907         reimplementing it inline.
5908         (allout-chart-subtree): Use start rather than end of prefix in
5909         charts.  Use allout-recent-depth variable.
5910         (allout-chart-siblings): Disqualify aberrant topics.
5911         (allout-beginning-of-current-entry): Position correctly.
5912         (allout-ascend): Use new allout-depth-specific-regexp and
5913         allout-depth-one-regexp for linear instead of O(N^2) or worse
5914         behavior.
5915         (allout-ascend-to-depth): Depend on allout-ascend, rather than
5916         reimplementing an algorithm.
5917         (allout-up-current-level): Depend on allout-ascend, rather than
5918         reimplementing an algorithm.  Return to start-point if we fail.
5919         (allout-descend-to-depth): Use allout-recent-depth variable
5920         instead of function.
5921         (allout-next-sibling): On traversal of numerous intervening
5922         topics, resort to economical allout-next-sibling-leap.
5923         (allout-next-sibling-leap): Specialized version of
5924         allout-next-sibling that uses allout-ascend cleverly, to depend on
5925         a regexp search to leap large numbers of contained topics, rather
5926         than arbitrarily many one-by-one traversals.
5927         (allout-next-visible-heading): Disqualify aberrant topics.
5928         (allout-previous-visible-heading): Position consistently when
5929         interactive.
5930         (allout-forward-current-level): Base on allout-previous-sibling
5931         rather than (differently) reimplmenting the algorithm.  Remove some
5932         unused variables.
5933         (allout-solicit-alternate-bullet): Present default choice stripped
5934         of text properties.
5935         (allout-rebullet-heading): Use bullet stripped of text properties.
5936         Register changes using allout-exposure-change-hook.
5937         Disregard aberrant topics.
5938         (allout-shift-in): With universal-argument, make topic a peer of
5939         it's former offspring.  Simplify the code by separating out
5940         allout-shift-out functionality.
5941         (allout-shift-out): With universal-argument, make offspring peers
5942         of their former container, and its siblings.  Implement the
5943         functionality here, rather than inappropriately muddling the
5944         implementation of allout-shift-in.
5945         (allout-rebullet-topic): Respect additional argument for new
5946         parent-child separation function.
5947         (allout-yank-processing): Use allout-ascend directly.
5948         (allout-show-entry): Disqualify aberrant topics.
5949         (allout-show-children): Handle discontinuous children gracefully,
5950         extending the depth being revealed to expose them and posting a
5951         message indicating the situation.
5952         (allout-show-to-offshoot): Remove obsolete and incorrect comment.
5953         Leave cursor in correct position.
5954         (allout-hide-current-subtree): Use allout-ascend directly.
5955         Disqualify aberrant topics.
5956         (allout-kill-line, allout-kill-topic): Preserve exposure layout in
5957         a way that the yanks can restore it, as used to happen.
5958         (allout-yank-processing): Restore exposure layout as recorded by
5959         allout-kill-*, as used to happen.
5960         (allout-annotate-hidden, allout-hide-by-annotation): New routines
5961         for preseving and restoring exposure layout across kills.
5962         (allout-toggle-subtree-encryption): Run allout-exposure-change-hook.
5963         (allout-encrypt-string): Strip text properties.
5964         Rearranged order and outline-headings for some of the
5965         miscellaneous functions.
5966         (allout-resolve-xref): No need to quote the error name in the
5967         condition-case handler section.
5968         (allout-flatten): Classic recursive (and recursively intensive,
5969         without tail-recursion) list-flattener, needed by allout-shift-out
5970         when confronted with discontinuous children.
5972 2006-09-16  Jason Rumney  <jasonr@gnu.org>
5974         * dnd.el (dnd-open-remote-file-function): Use dnd-open-local-file
5975         on ms-windows.
5976         (dnd-open-unc-file): Remove.
5977         (dnd-open-local-file): Mention in doc string that it also handles
5978         remote files if the system natively supports unc file-names.
5980 2006-09-15  Kim F. Storm  <storm@cua.dk>
5982         * help.el (describe-key): Handle C-h k in *Help* buffer; collect
5983         all necessary information about the event before erasing *Help*.
5985         * simple.el (line-move-partial): Use window-line-visiblity to
5986         quickly check whether last line is partially visible, and only do
5987         the hard (and slow) part in that case.
5989 2006-09-15  Jay Belanger  <belanger@truman.edu>
5991         * COPYING: Replace "Library Public License" by "Lesser Public
5992         License" throughout.
5994 2006-09-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5996         * term/x-win.el (x-menu-bar-open): New function for F10.
5998 2006-09-15  Chong Yidong  <cyd@stupidchicken.com>
6000         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6001         Disallow filenames containing " -" to avoid confusion with libtool
6002         compilation messages.  Suggested by Stefan Monnier.
6004 2006-09-15  David Kastrup  <dak@gnu.org>
6006         * mouse-sel.el (mouse-sel-follow-link-p): Use event position
6007         instead of buffer position for `mouse-on-link-p'.
6009         * mouse.el (mouse-posn-property): New function looking up the
6010         properties at a click position in overlays and text properties in
6011         either buffer or strings.
6012         (mouse-on-link-p): Use `mouse-posn-property' to streamline lookup
6013         of both `follow-link' as well as `mouse-face' properties.
6014         (mouse-drag-track): Check `mouse-on-link-p' on event position, not
6015         buffer position.
6017         * help.el (describe-key-briefly): When reading a down-event on
6018         mode lines or scroll bar, swallow the following up event, too.
6019         Use the new mouse sensitity of `key-binding' for lookup.
6020         (describe-key): The same here.
6022 2006-09-15  Juanma Barranquero  <lekktu@gmail.com>
6024         * play/life.el (life-patterns): Add a few more interesting patterns.
6025         (life-setup): Force `show-trailing-whitespace' to nil.
6027 2006-09-14  Richard Stallman  <rms@gnu.org>
6029         * startup.el (fancy-splash-text): Change text to improve alignment.
6030         (fancy-splash-screens): Don't set non-standard tab width.
6031         Bind cursor-type temporarily, and make it easy to patch to
6032         preserve the splash buffer.
6033         (normal-splash-screen, fancy-splash-tail): Spell out "Meta-x".
6034         (fancy-splash-screens): Display echo-area message explicitly.
6035         Don't set fancy-splash-help-echo.
6037         * simple.el (line-number-mode): Group mode-line instead of
6038         editing-basics.
6039         (column-number-mode, size-indication-mode): Likewise.
6041         * faces.el (mode-line-faces): Group mode-line instead of modeline.
6043         * time.el (display-time): Group mode-line instead of modeline.
6045         * cus-edit.el (mode-line): Rename from modeline.  All uses changed.
6047 2006-09-14  Chong Yidong  <cyd@stupidchicken.com>
6049         * startup.el (fancy-splash-text): Move editing instructions to
6050         fancy-splash-head.
6051         (fancy-splash-head): Issue editing instructions.
6052         (fancy-splash-screens): Fixup whitespace.
6054 2006-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6056         * bindings.el (mode-line-buffer-identification-keymap):
6057         Remove duplicate line.
6059 2006-09-14  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
6061         * ido.el (ido-ignore-item-p): Allow any kind of functions in
6062         ignore lists.
6064 2006-09-14  Kim F. Storm  <storm@cua.dk>
6066         * jit-lock.el (jit-lock-fontify-again): New function.
6067         (jit-lock-fontify-now): Use it instead of lambda form.
6069 2006-09-13  Agustin Martin  <agustin.martin@hispalinux.es>
6071         * textmodes/flyspell.el (flyspell-word, flyspell-correct-word)
6072         (flyspell-auto-correct-word): Make ispell-filter local to these
6073         functions.  Check that ispell-filter has new stuff before calling
6074         ispell-parse-output.
6076 2006-09-13  Kim F. Storm  <storm@cua.dk>
6078         * simple.el (line-move-partial): Optimize.
6080 2006-09-13  Richard Stallman  <rms@gnu.org>
6082         * thingatpt.el (thing-at-point-bounds-of-url-at-point):
6083         Delete spurious backquote.
6085 2006-09-07  Ryan Yeske  <rcyeske@gmail.com>
6087         * net/rcirc.el (rcirc-print): Fix last change.
6089 2006-09-12  Jay Belanger  <belanger@truman.edu>
6091         * calc/calc.el (calc-dispatch): Remove unnecessary `sit-for'.
6093 2006-09-07  Ryan Yeske  <rcyeske@gmail.com>
6095         * net/rcirc.el (rcirc-scroll-show-maximum-output): Rename from
6096         rcirc-show-maximum-output.
6097         (rcirc-mode): Remove window-scroll-function hook.
6098         (rcirc-scroll-to-bottom): Remove function.
6099         (rcirc-print): Recenter so point stays at the bottom of the window
6100         if point was already there.
6102 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
6104         * comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
6105         not to "t".
6106         * progmodes/compile.el (compilation-start): Likewise.
6107         * progmodes/idlwave.el (idlwave-rescan-asynchronously):
6108         Don't use expand-file-name on invocation-directory, since this
6109         might mishandle special characters in invocation-directory.
6111 2006-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6113         * pcvs-defs.el: Remove * in defcustom's docstrings.
6115 2006-09-12  Nick Roberts  <nickrob@snap.net.nz>
6117         * progmodes/compile.el (compilation-directory-properties):
6118         Doc fix for help-echo.
6120 2006-09-12  Lars Hansen  <larsh@soem.dk>
6122         * desktop.el (desktop-read): Add comment.
6124 2006-09-12  Kim F. Storm  <storm@cua.dk>
6126         * simple.el (next-error-highlight, next-error-highlight-no-select):
6127         Fix spelling error.
6129         * subr.el (sit-for): Rework to use input-pending-p and cond.
6130         Return nil input is pending on entry also for SECONDS <= 0.
6131         (while-no-input): Use input-pending-p instead of sit-for.
6133 2006-09-11  Richard Stallman  <rms@gnu.org>
6135         * simple.el (next-error-highlight, next-error-highlight-no-select):
6136         Fix custom type and doc strings.
6138 2006-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6140         * diff-mode.el (diff-apply-hunk-to-backup-file): New var.
6141         (diff-apply-hunk): Use it to ask for confirmation.
6143 2006-09-11  Reiner Steib  <Reiner.Steib@gmx.de>
6145         * emacs-lisp/cl.el (pushnew): Add missing `,'.
6147 2006-09-11  David Kastrup  <dak@gnu.org>
6149         * help.el (string-key-binding, describe-key-briefly)
6150         (describe-key): Remove `string-key-binding' and its callers since
6151         `key-binding' already caters for the proper lookup now.
6153 2006-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6155         * progmodes/cfengine.el (cfengine-font-lock-syntactic-keywords): Newvar.
6156         (cfengine-mode): Use it.  Fix \ syntax to be like /.
6158         * bindings.el (mode-line-buffer-identification-keymap):
6159         Move initialization into declaration.
6161 2006-09-10  Kim F. Storm  <storm@cua.dk>
6163         * ido.el (ido-edit-input, ido-complete, ido-take-first-match)
6164         (ido-push-dir-first, ido-kill-buffer-at-head, ido-exhibit)
6165         (ido-delete-file-at-head): Pass head of ido-matches through ido-name
6166         in case of merged directories.  Reported by Micha\e,Ak\e(Bl Cadilhac.
6168 2006-09-10  Richard Stallman  <rms@gnu.org>
6170         * dired-aux.el: Handle errors in recursive copy usefully.
6171         (dired-create-files-failures): New variable.
6172         (dired-copy-file): Remove condition-case.
6173         (dired-copy-file-recursive): Check for errors on all file
6174         operations, and add them to dired-create-files-failures.
6175         Check file file-date-erorr here too.
6176         (dired-create-files): Check dired-create-files-failures
6177         and report those errors too.
6179         * emacs-lisp/cl.el (pushnew): Use add-to-list when convenient.
6181         * subr.el (add-to-list): New argument COMPARE-FN.
6183 2006-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
6185         * filecache.el (file-cache-add-directory)
6186         (file-cache-add-directory-list, file-cache-add-file)
6187         (file-cache-add-directory-using-find)
6188         (file-cache-add-directory-using-locate)
6189         (file-cache-add-directory-recursively): Add autoloads.
6191 2006-09-09  Richard Stallman  <rms@gnu.org>
6193         * textmodes/conf-mode.el (conf-space-mode):
6194         Use hack-local-variables-hook instead of calling hack-local-variables.
6195         (conf-space-keywords-override): New variable.
6196         (conf-space-mode-internal): New subroutine.  Reinit Font Lock mode.
6197         (conf-space-mode): Always make conf-space-keywords and
6198         conf-space-keywords-override local.
6199         Call conf-space-mode-internal directly as well as via hook.
6201 2006-09-09  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>  (tiny change)
6203         * progmodes/python.el (python-font-lock-keywords): Add `self' and other
6204         quasi-keywords.
6206 2006-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6208         * progmodes/python.el: Quieten the compiler about hippie-expand vars.
6209         (python-send-string): Be slightly more careful about adding \n.
6211         * startup.el (normal-splash-screen): Don't display the buffer if we'll
6212         kill it right away anyway.
6214 2006-09-09  Eli Zaretskii  <eliz@gnu.org>
6216         * international/codepage.el (cp850-decode-table): Fix a few codes.
6217         (cp858-decode-table): New variable.
6219 2006-09-09  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
6221         * net/ldap.el (ldap-search-internal): Doc fix.
6223 2006-09-09  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
6225         * play/life.el (life-display-generation): Test for input manually if
6226         `sleeptime' is negative or null.
6228         * lpr.el (lpr-page-header-switches): Page title switch is one of them.
6229         (print-region-1): Substitute `%s' with the page title.
6231 2006-09-09  Matt Hodges  <MPHodges@member.fsf.org>
6233         * locate.el (locate-current-search): New variable.
6234         (locate): Set buffer local value.  Use current buffer if it is
6235         in Locate mode.
6236         (locate-mode): Disable undo here.
6237         (locate-do-setup): Use locate-current-filter from buffer to be killed.
6238         (locate-update): Use locate-current-search and locate-current-filter.
6240 2006-09-08  David Kastrup  <dak@gnu.org>
6242         * desktop.el (desktop-read): When loading a desktop, disable
6243         saving it while the load progresses, and switch off a pending lazy
6244         load by calling `desktop-lazy-abort'.
6246 2006-08-27  Martin Rudalics  <rudalics@gmx.at>
6248         * window.el (mouse-autoselect-window-timer)
6249         (mouse-autoselect-window-position)
6250         (mouse-autoselect-window-window)
6251         (mouse-autoselect-window-now): New vars.
6252         (mouse-autoselect-window-cancel)
6253         (mouse-autoselect-window-select)
6254         (mouse-autoselect-window-start): New functions.
6255         (handle-select-window): Call `mouse-autoselect-window-start' when
6256         delayed window autoselection is enabled.
6258         * cus-start.el (mouse-autoselect-window): Handle delayed window
6259         autoselection.
6261         * emacs-lisp/eldoc.el: Add `handle-select-window' to the set of
6262         commands after which it is allowed to print in the echo area.
6264 2006-09-08  Richard Stallman  <rms@gnu.org>
6266         * textmodes/fill.el (adaptive-fill-regexp): Don't match `(1)' or `1.'
6268         * mail/rmail.el (rmail-get-new-mail): Say whether all msgs are spam.
6269         (rmail-convert-to-babyl-format): Don't record undo, leave list empty.
6271         * emacs-lisp/timer.el (timer-create, timer-activate): Doc fixes.
6272         (cancel-timer-internal): Add doc string.
6273         (cancel-function-timers): Doc fix.
6274         (with-timeout-handler, timer-event-last*): Add doc strings.
6276         * emacs-lisp/bindat.el (bindat-unpack): Doc fix.
6278         * files.el (risky-local-variable-p): Match ...-bindat-spec.
6280         * dired.el (dired-log-summary): Add doc string.
6282         * cus-edit.el (custom-menu-create): Bind deactivate-mark here.
6283         (custom-group-menu-create): Not here.
6285 2006-09-08  Carsten Dominik  <dominik@science.uva.nl>
6287         * textmodes/org.el (org-dblock-write:clocktable): Avoid infinite loop.
6289 2006-09-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6291         * term/mac-win.el (show-hide-font-panel): New HI command ID symbol.
6292         (mac-apple-event-map): Define its handler.
6294 2006-09-07  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
6296         * net/ldap.el (ldap-search-internal): Handle `auth' key.
6298 2006-09-07  Magnus Henoch  <mange@freemail.hu>
6300         * net/rcirc.el (rcirc-activity-string): Don't quote value in case
6301         clause.
6303 2006-09-07  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
6305         * info.el (Info-index): Bind completion-ignore-case.
6307 2006-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6309         * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
6310         previous commit.
6311         (inferior-prolog-guess-flavor): New fun left out of previous commit.
6312         (prolog-consult-region-and-go): Don't hard code "*prolog*" and don't
6313         burp in dedicated windows.
6314         (inferior-prolog-self-insert-command): New command.
6315         (inferior-prolog-mode-map): Use it.
6317 2006-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
6319         * international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
6321         * international/code-pages.el: Add cp858.
6323 2006-09-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6325         * dnd.el: Fix bootstrapping.
6327 2006-09-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6329         * dnd.el (dnd-protocol-alist): Add what url-handler-mode can handle.
6330         (dnd-open-remote-url): New function.
6331         (dnd-open-remote-file-function): Set to dnd-open-remote-url if
6332         not windows-nt.
6334 2006-09-07  Jason Rumney  <jasonr@gnu.org>
6336         * dnd.el (dnd-open-remote-file-function): New variable.
6337         (dnd-open-unc-file): New function.
6338         (dnd-open-file): Call dnd-open-remote-file-function if set.
6340 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
6342         * pgg-gpg.el (pgg-gpg-process-region): Encode passphrase with
6343         pgg-passphrase-coding-system rather than locale-coding-system.
6344         * pgg-def.el (pgg-passphrase-coding-system): New user option.
6346 2006-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6348         * progmodes/prolog.el: Remove * in docstrings.
6349         (prolog-program-name): Add SWI prolog.
6350         (prolog-mode-menu): New menu.
6351         (prolog-mode): Set comment-add.
6352         (prolog-indent-line): Simplify.  Use indent-line-to.
6353         (inferior-prolog-buffer): New var.
6354         (inferior-prolog-run, inferior-prolog-process): New funs.
6355         (run-prolog, switch-to-prolog): Rewrite, using them.
6356         (prolog-consult-region): Use inferior-prolog-buffer.
6357         (inferior-prolog-load-file): New function.
6358         (prolog-mode-map): Add bindings for load-file and switch-to-prolog.
6360         * textmodes/fill.el (fill-single-word-nobreak-p): Allow breaking before
6361         last word, if it's not the end of the paragraph.
6363         * files.el (abbreviate-file-name): Don't mistakenly match newlines in
6364         file name.
6366 2006-09-06  Ralf Angeli  <angeli@caeruleus.net>
6368         * frame.el (display-mm-dimensions-alist): New defcustom.
6369         (display-mm-height, display-mm-width): Use it.
6371 2006-09-06  Simon Josefsson  <jas@extundo.com>
6373         * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
6375 2006-09-06  Nick Roberts  <nickrob@snap.net.nz>
6377         * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
6378         (gdb-var-list-children-regexp-1): Tweak regexps to catch full
6379         string values.
6381 2006-09-06  Kim F. Storm  <storm@cua.dk>
6383         * simple.el (line-move-partial): New function to do vscrolling for
6384         partially visible images / tall lines.  Rewrite based on code
6385         previously in line-move.  Simplify backwards vscrolling.
6386         (line-move): Use it.  Simplify.
6388 2006-09-05  Kim F. Storm  <storm@cua.dk>
6390         * emulation/cua-base.el (cua--pre-command-handler-1): Rewrite.
6392 2006-09-05  Chong Yidong  <cyd@stupidchicken.com>
6394         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6395         Process the `gcc-include' after the `gnu' rule.
6397 2006-09-05  Kim F. Storm  <storm@cua.dk>
6399         * ido.el (ido-visit-buffer): Use buffer name if buffer arg is a buffer.
6401 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
6403         * pgg.el (pgg-clear-string): Alias to clear-string for backward
6404         compatibility.
6406         * pgg-gpg.el (pgg-gpg-process-region): Avoid display blinking with
6407         inhibit-redisplay; encode passphrase with locale-coding-system.
6409 2006-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
6411         * term/xterm.el (terminal-init-xterm): Add more C-M- bindings.
6413 2006-09-05  Nick Roberts  <nickrob@snap.net.nz>
6415         * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
6416         (gdb-var-list-children-regexp): Make type field optional.
6418         * progmodes/gud.el (gud-speedbar-buttons): Allow for no type
6419         e.g public, protected in C++.
6421 2006-09-04  John Paul Wallington  <jpw@pobox.com>
6423         * simple.el (completion-show-help): New defcustom.
6424         (completion-setup-function): Heed it.
6426 2006-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
6428         * term/xterm.el (terminal-init-xterm): Add C-M- bindings.
6430 2006-09-04  Richard Stallman  <rms@gnu.org>
6432         * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix.
6433         (rsf-min-region-to-spam-list): Doc fix.
6434         (rsf-add-content-type-field): Doc fix.
6436         * simple.el (kill-region): Explicitly test there is a region.
6438 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
6440         * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for
6441         sendmail in several common directories.
6443         * mail/sendmail.el (sendmail-program): Moved here from paths.el.
6445         * paths.el (sendmail-program): Removed.
6447 2006-09-04  Daiki Ueno  <ueno@unixuser.org>
6449         * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki
6450         Das.  http://article.gmane.org/gmane.emacs.gnus.general/49947
6451         http://article.gmane.org/gmane.emacs.gnus.general/50457
6453 2006-09-03  Chong Yidong  <cyd@stupidchicken.com>
6455         * cus-edit.el (custom-group-menu-create): Avoid deactivating the
6456         mark after running the menu filter.
6458 2006-09-03  Juri Linkov  <juri@jurta.org>
6460         * international/quail.el (quail-defrule-internal): Add a check
6461         if a key is a vector.
6463 2006-09-02  Juri Linkov  <juri@jurta.org>
6465         * man.el (Man-topic-history): New variable.
6466         (man): Use it.
6468         * woman.el (woman-topic-history): Change defvar to defvaralias
6469         for symbol `Man-topic-history'.
6471         * shell.el (shell-filter-ctrl-a-ctrl-b): Check if
6472         `comint-last-output-start' is a marker by using `markerp' and
6473         check if it has a position by using `marker-position', and use
6474         this position for `goto-char'.
6476         * international/quail.el (quail-defrule-internal): Add missing
6477         `error' call for null key.
6479 2006-09-02  Ryan Yeske  <rcyeske@gmail.com>
6481         * rcirc.el (rcirc-keywords): New variable.
6482         (rcirc-bright-nicks, rcirc-dim-nicks): New variables.
6483         (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove
6484         variables.
6485         (rcirc-responses-no-activity): New function.
6486         (rcirc-handler-generic): Check for responses in above.
6487         (rcirc-process-command): Add ?: character to arguments of raw
6488         server commands.
6489         (rcirc-format-response-string): Use `rcirc-bright-nicks' and
6490         `rcirc-dim-nicks'.
6491         (rcirc-gray-toggle): Remove unused variable.
6492         (rcirc-print): Remove some tracking logic, which is moved into
6493         markup functions.
6494         (rcirc-activity-types): Was `rcirc-activity-type', now a list of
6495         types.
6496         (rcirc-activity-string): Look for 'keyword in activity-types.
6497         (rcirc-window-configuration-change): Don't erase overlay-arrow
6498         unnecessarily.
6499         (rcirc-add-or-remove): New function.
6500         (rcirc-cmd-ignore): Use it.
6501         (rcirc-message-leader): Remove unused function.
6502         (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands.
6503         (rcirc-add-face): New function.
6504         (rcirc-facify): Use rcirc-add-face.
6505         (rcirc-url-regexp): Add parens.
6506         (rcirc-map-regexp): Remove function.
6507         (rcirc-mangle-regexp): Remove function.
6508         (rcirc-markup-text-functions): New variable.
6509         (rcirc-markup-text): New function (replaces `rcirc-mangle-text').
6510         (rcirc-markup-body-text, rcirc-markup-attributes)
6511         (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords)
6512         (rcirc-markup-bright-nicks): New markup handler functions.
6513         (rcirc-nick-in-message-full-line): New face.
6514         (rcirc-track-nick): Rename from `rcirc-mode-line-nick'.
6515         (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces.
6517 2006-09-02  Martin Rudalics  <rudalics@gmx.at>
6519         * cus-start.el (hscroll-margin, hscroll-step)
6520         (mode-line-in-non-selected-windows, mouse-autoselect-window)
6521         (x-use-underline-position-properties): Change version to "22.1"
6522         since they will appear there for the first time.
6524 2006-09-01  Chong Yidong  <cyd@stupidchicken.com>
6526         * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick.
6528 2006-08-31  Richard Stallman  <rms@gnu.org>
6530         * cus-edit.el (custom-save-variables): Slight cleanup.
6531         (Custom-no-edit): Renamed from custom-no-edit.
6532         (Custom-newline): Renamed from custom-newline.
6533         (custom-mode-map): Use new names.
6535         * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual
6536         about customization, rather than M-x customize, in the doc string
6537         made for the defcustom.
6539         * emacs-lisp/trace.el (trace-function-background): Doc fix.
6541 2006-08-31  Romain Francoise  <romain@orebokech.com>
6543         * dired-x.el (dired-guess-shell-alist-default): Update.
6545 2006-08-31  Michael Mauger  <mmaug@yahoo.com>
6547         * custom.el (custom-theme-set-variables): Autoload packages before
6548         sorting the variables.
6550 2006-08-30  Michael Kifer  <kifer@cs.stonybrook.edu>
6552         * viper-cmd.el (viper-special-read-and-insert-char): Convert events to
6553         chars if XEmacs.
6554         (viper-after-change-undo-hook): Check if undo-in-progress is bound.
6556 2006-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6558         * progmodes/python.el (python-eldoc-function): Re-enable quit while
6559         waiting for process.
6561 2006-08-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6563         * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese
6564         results in ASCII-only string, encode original one directly.
6566 2006-08-29  Romain Francoise  <romain@orebokech.com>
6568         * startup.el (normal-splash-screen, fancy-splash-screens):
6569         Make buffer read-only and arrange to enter view mode if necessary.
6571 2006-08-29  Chong Yidong  <cyd@stupidchicken.com>
6573         * hl-line.el (hl-line): New face.
6574         (hl-line-face): Use it.
6576         * image-mode.el (image-mode): Fix last fix.
6577         Suggested by Kim F. Storm.
6579 2006-08-29  Michael Albinus  <michael.albinus@gmx.de>
6581         Sync with Tramp 2.0.54.
6583         * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead
6584         of `=', because `tramp-get-remote-gid' might not always return an
6585         integer when expected.
6586         (tramp-register-file-name-handlers): `partial-completion-mode' is
6587         unknown to XEmacs.
6588         (tramp-time-diff): Don't use `floor', it might fail for large
6589         differences.
6590         (tramp-handle-make-auto-save-file-name): For Emacs 21, set
6591         `tramp-auto-save-directory' if unset in order to guarantee unique
6592         auto-save file names.
6594 2006-08-28  Chong Yidong  <cyd@stupidchicken.com>
6596         * image-mode.el (image-mode): Display image as text on a terminal.
6598 2006-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6600         * progmodes/python.el (python-send-command): Simplify.
6601         (run-python): Don't generate a new buffer unless `new' was specified.
6602         Make sure we send `import emacs' to the proper process.
6604         * progmodes/python.el (python-send-command): Don't wait for the command
6605         to terminate.  Don't fiddle with compilation-parsing-end.
6607 2006-08-28  Chong Yidong  <cyd@stupidchicken.com>
6609         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6610         Insert commentary after first line summary.
6612         * woman.el (woman-follow): New function, based on `man-follow'.
6613         (woman-mode-map): Use it.
6615         * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update
6616         since ibuffer-do-sort-by-recency does not define a sorter.
6618 2006-08-28  Kim F. Storm  <storm@cua.dk>
6620         * find-dired.el (find-dired): Use shell-quote-argument to properly
6621         escape ( and ) args.  Also use it on {} and ; args in default
6622         value of find-ls-option string.
6623         (find-grep-dired): Use shell-quote-argument on {} and ; args.
6625 2006-08-27  Michael Olson  <mwolson@gnu.org>
6627         * emacs-lisp/tq.el: Small grammar fix in comments.
6628         (tq-enqueue): Check for existence of queue rather than the
6629         head queue item's question, which was a no-op.
6630         (tq-filter, tq-process-buffer): Make sure the process buffer
6631         exists before making it the current buffer.
6633 2006-08-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6635         * term/mac-win.el (mac-apple-event-map): Rename hicommand to hi-command.
6636         (mac-dnd-drop-data): Apply 2006-08-22 change for x-dnd-drop-data.
6637         (special-event-map): Apply 2006-08-16 change for x-win.el.
6639 2006-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6641         * progmodes/python.el (python-send-receive): Wait in the
6642         process's buffer so as to check the right buffer-local variables.
6644 2006-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6646         * emacs-lisp/checkdoc.el: Remove * in defcustoms.
6647         (defgroup checkdoc): Move to beginning.
6649         * progmodes/python.el (python-preoutput-skip-next-prompt): New var.
6650         (python-preoutput-continuation): Remove.
6651         (python-preoutput-filter): Simplify correspondingly.
6652         Remove handling of _emacs_ok.  Make sure we skip _emacs_out's prompts.
6653         Loop around to catch embedded _emacs_out output.
6654         (run-python): Send the import&print command on a single line.
6655         (python-send-command): Send command&print on a single line.
6656         (python-send-string): Only add double \n if needed.
6657         (python-send-receive): Loop until the result comes.
6658         (python-mode-running): Defvar it.
6659         (python-setup-brm): Remove unused var `menu'.
6660         Only bind py-mode-map and `features' around brm-init.
6661         (python-calculate-indentation): Remove unused var `point'.
6662         (python-beginning-of-defun): Remove unused var `def-line'.
6664 2006-08-25  Richard Stallman  <rms@gnu.org>
6666         * kmacro.el (kmacro-repeat-on-last-key): Doc fix.
6668 2006-08-25  Michael Kifer  <kifer@cs.stonybrook.edu>
6670         * viper.el (viper-set-hooks): Use frame bindings for
6671         viper-vi-state-cursor-color.
6672         (viper-non-hook-settings): Don't set default
6673         mode-line-buffer-identification.
6675         * viper-util.el (viper-set-cursor-color-according-to-state): New fun.
6676         (viper-set-cursor-color-according-to-state)
6677         (viper-get-saved-cursor-color-in-replace-mode)
6678         (viper-get-saved-cursor-color-in-insert-mode): Make conditional on
6679         viper-emacs-state-cursor-color.
6681         * viper-cmd.el (viper-envelop-ESC-key): Bug fix.
6682         (viper-undo): Use point if undo-beg-posn is nil.
6683         (viper-insert-state-post-command-sentinel, viper-change-state-to-emacs)
6684         (viper-after-change-undo-hook): Don't use
6685         viper-emacs-state-cursor-color by default.
6686         (viper-undo): More sensible positioning after undo.
6688         * viper-ex.el (ex-splice-args-in-1-letr-cmd): Get rid of caddr.
6689         (viper-emacs-state-cursor-color): Default to nil, since this feature
6690         doesn't work well yet.
6692         * ediff-mult.el (ediff-intersect-directories)
6693         (ediff-get-directory-files-under-revision, ediff-dir-diff-copy-file):
6694         always expand filenames.
6696 2006-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6698         * tumme.el: Remove * in defcustoms's docstrings.
6700 2006-08-24  Chong Yidong  <cyd@stupidchicken.com>
6702         * emacs-lisp/timer.el (timer-set-idle-time, run-with-idle-timer):
6703         Accept internal time format for SECS arg.
6704         (timer-relative-time): Doc fix.
6706         * jit-lock.el: "Stealth fontification by requeuing timers" patch,
6707         adapted from Martin Rudalics.
6708         (jit-lock-stealth-repeat-timer, jit-lock-stealth-buffers): New vars.
6709         (jit-lock-mode): Create jit-lock-stealth-repeat-timer.
6710         (jit-lock-stealth-fontify): Reschedule as a idle timer instead of
6711         using sit-for.
6713 2006-08-24  Francesc Rocher  <francesc.rocher@gmail.com>
6715         * cus-start.el (all): Add `overline-margin' and
6716         `x-underline-at-descent-line'.
6718 2006-08-24  Kim F. Storm  <storm@cua.dk>
6720         * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
6721         to mean "use find -exec"; nil now unambiguously means auto-detect.
6722         (grep-compute-defaults): Set grep-find-use-xargs to `exec' if not `gnu'.
6723         Use shell-quote-argument to build grep-find-command and
6724         grep-find-template.
6725         (rgrep): Use shell-quote-argument to properly quote arguments to find.
6726         Reported by Tom Seddon.
6728 2006-08-23  Chong Yidong  <cyd@stupidchicken.com>
6730         * startup.el (fancy-splash-head): Give instructions for dismissing
6731         the splash screen for default startup too.
6732         (display-startup-echo-area-message, fancy-splash-screens)
6733         (use-fancy-splash-screens-p): New arg hide-on-input.  If nil, show
6734         all splash text at once and keep the splash buffer around.
6735         (command-line-1): Give display-startup-echo-area-message a t arg.
6737 2006-08-23  Carsten Dominik  <dominik@science.uva.nl>
6739         * textmodes/org.el (org-follow-gnus-link): Make sure the dedicated
6740         gnus frame is selected.
6742 2006-08-23  Nick Roberts  <nickrob@snap.net.nz>
6744         * progmodes/gdb-ui.el (gdb-starting): Reset gdb-signalled to nil.
6746 2006-08-22  Kim F. Storm  <storm@cua.dk>
6748         * ido.el (ido-set-matches-1): Fix full matching for subdirs.
6749         Add suffix matching for subdirs.
6751 2006-08-22  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
6753         * x-dnd.el (x-dnd-drop-data): Don't call goto-char if
6754         mouse-yank-at-point is non-nil.
6756 2006-08-22  Nick Roberts  <nickrob@snap.net.nz>
6758         * progmodes/gdb-ui.el (gdb-frame-memory-buffer): Make frame
6759         a bit wider and remove fringes to fit initial output on line.
6761 2006-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6763         * frame.el (blink-cursor-end): Only ignore the error we care about.
6764         (blink-cursor-mode): Use blink-cursor-end to simplify the code.
6766 2006-08-21  Richard Stallman  <rms@gnu.org>
6768         * whitespace.el (whitespace-cleanup): Doc fix.
6770 2006-08-20  Ryan Yeske  <rcyeske@gmail.com>
6772         * net/rcirc.el (rcirc-show-maximum-output): New var.
6773         (rcirc-buffer-process): If no buffer argument is supplied, use
6774         current-buffer.
6775         (rcirc-complete-nick): Complete to the last completed nick first.
6776         (rcirc-mode): Preserve the value of `rcirc-urls' across
6777         connections.  Setup scroll function.
6778         (rcirc-scroll-to-bottom): New function.
6779         (rcirc-print): Use nick syntax around regexp work.
6780         Notice dim-nicks speaking only if they say our nick.
6781         (rcirc-update-activity-string): Do not show the modeline indicator
6782         if there are no live rcirc processes.
6783         (rcirc-cmd-ignore): Ignore case.
6784         (rcirc-browse-url-at-point): Fix off-by-one error.
6786 2006-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6788         * progmodes/python.el: Remove * in defcustom docstrings.
6789         (run-python, python-proc, python-try-complete): Use derived-mode-p.
6790         (python-mode): Set tab-width and indent-tabs-mode.
6792 2006-08-20  Dave Love  <fx@gnu.org>
6794         * progmodes/python.el: Update to Dave Love's latest version.
6795         (python-font-lock-keywords, python-mode): Don't use
6796         font-lock-syntax-table, but match symbol elements explicitly instead.
6797         (python-mode-map): Add help, and a few more key bindings.
6798         (python-skip-comments/blanks): Move out of comments as well.
6799         (python-continuation-line-p): Behave better with unbalanced parens.
6800         (python-blank-line-p): New fun.
6801         (python-open-block-statement-p): Don't use a heuristic.
6802         (python-outdent-p): Better handle blocks-in-the-same-line.
6803         (python-calculate-indentation): Misc improvements.
6804         (python-comment-indent): Remove.
6805         (python-block-pairs): New var.
6806         (python-first-word): New fun.
6807         (python-indentation-levels): Handle more common cases.
6808         (python-indent-line-1): Add `leave' argument.
6809         (python-indent-region): New fun.
6810         (python-skip-out): New fun.
6811         (python-beginning-of-statement, python-end-of-statement): Use it.
6812         (python-next-statement): Return correct count even at eob.
6813         (python-end-of-block): Fix paren-typo.
6814         (python-imenu-create-index): Add module variables.
6815         (run-python): Add `new' arg.
6816         Check we're at a prompt before returning.
6817         (python-send-command): Move to end of buffer.
6818         Wait for prompt to return.
6819         (python-set-proc): New fun.
6820         (python-imports): New var.
6821         (python-describe-symbol): Use it.  Adjust to new interface of `ehelp'.
6822         (python-eldoc-function): Try to move out of arg list.
6823         (python-outline-level): Offset by 1.
6824         (python-find-imports): New fun.
6825         (python-symbol-completions): Use python-imports.
6826         (python-module-path, ffap-alist): Add support for ffap.
6827         (python-skeletons, python-mode-abbrev-table, def-python-skeleton)
6828         (python-insert-*, python-default-template, python-expand-template):
6829         Add templates/skeletons.
6830         (python-setup-brm): Support for Bicycle Repair Man.
6831         (python-abbrev-syntax-table): New var.
6832         (python-abbrev-pc-hook, python-pea-hook): New funs.
6834 2006-08-20  Chong Yidong  <cyd@stupidchicken.com>
6836         * frame.el (blink-cursor-start): Set timer first.
6837         (blink-cursor-end): Ignore timer cancelling errors.
6838         Suggested by Ken Manheimer.
6840 2006-08-20  Juanma Barranquero  <lekktu@gmail.com>
6842         * newcomment.el (comment-box): Call `comment-normalize-vars'.
6843         Add autoload cookie.
6845 2006-08-20  Richard Stallman  <rms@gnu.org>
6847         * simple.el (line-number-at-pos): Doc fix.
6849         * emacs-lisp/timer.el (run-with-idle-timer): Pass t to
6850         timer-activate-when-idle, so timer can run before Emacs becomes
6851         non-idle again.
6853 2006-08-18  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
6855         * whitespace.el (whitespace-cleanup-internal): New optional arg
6856         REGION-ONLY.  If it's non-nil, modify the message to the user
6857         accordingly.
6858         (whitespace-cleanup-region): Call whitespace-cleanup-internal with
6859         a non-nil argument.
6861 2006-08-18  Gustav H\e,Ae\e(Bllberg  <gustav@gmail.com>  (tiny change)
6863         * rect.el (spaces-string): Simplify and add doc string.
6865 2006-08-17  Romain Francoise  <romain@orebokech.com>
6867         * progmodes/gdb-ui.el (gdb-edit-locals-value): Balance parens.
6869 2006-08-17  Richard Stallman  <rms@gnu.org>
6871         * compare-w.el (compare-windows): lambda's take an arg and pass
6872         it to compare-windows-skip-whitespace.
6874 2006-08-17  Martin Rudalics  <rudalics@gmx.at>
6876         * jit-lock.el (jit-lock-fontify-now): Protect the modified status of
6877         the right buffer.
6879 2006-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6881         * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
6882         removed files.
6884 2006-08-17  Nick Roberts  <nickrob@snap.net.nz>
6886         * progmodes/gdb-ui.el (gdb-locals-watch-map)
6887         (gdb-locals-watch-map-1): Suppress keymap first.
6888         (gdb-edit-locals-map-1): New variable.
6889         (gdb-edit-locals-value): New function.
6890         (gdb-stack-list-locals-handler): Use them.
6892 2006-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6894         * mouse.el (global-map): Allow yanking with mouse-2 at a spot whose
6895         cursor would normally be drawn in the fringe.
6897         * font-lock.el (font-lock-extend-region-wholelines): Fix up typo.
6898         Reported by Martin Rudalics <rudalics@gmx.at>.
6900 2006-08-16  Richard Stallman  <rms@gnu.org>
6902         * term/x-win.el (x-clipboard-yank): Specify * in interactive spec.
6903         (special-event-map): Process drag-n-drop events this way.
6905         * simple.el (move-beginning-of-line): Test whether fields
6906         would prevent motion back to line's first visible character.
6907         If so, stop where the fields would stop the motion.
6909         * newcomment.el (comment-indent): Fully update INDENT
6910         before checking to see if it will change the text.
6912         * cus-edit.el (custom-newline): New function.
6913         (custom-mode-map): Bind newline to custom-newline.
6915         * compare-w.el (compare-windows): Factor compare-ignore-whitespace
6916         into ignore-whitespace.
6917         Check each buffer for its skip-function.
6918         Handle compare-windows-skip-whitespace special-case test
6919         by returning t from default skip function.
6921 2006-08-15  Carsten Dominik  <dominik@science.uva.nl>
6923         * textmodes/org.el (org-clock-special-range)
6924         (org-clock-update-time-maybe): New functions.
6925         (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
6926         not only a-z.
6927         (org-agenda-get-blocks): Allow multiple blocks per headline.
6928         (org-timestamp-change): Call `org-clock-update-time-maybe'.
6929         (org-export-html-title-format)
6930         (org-export-html-toplevel-hlevel): New options.
6931         (org-export-language-setup): Add support for Czech.
6932         (org-mode, org-insert-todo-heading, org-find-visible)
6933         (org-find-invisible, org-invisible-p, org-invisible-p2)
6934         (org-back-to-heading, org-on-heading-p, org-up-heading-all)
6935         (org-show-subtree, org-show-entry, org-make-options-regexp):
6936         Remove compatibility support for old outline-mode.
6937         (org-check-occur-regexp): Funtion removed.
6938         (org-on-heading-p, org-back-to-heading): Made defalias.
6939         (org-set-local): New defsubst.
6940         (org-set-regexps-and-options, org-mode)
6941         (org-set-font-lock-defaults, org-edit-agenda-file-list)
6942         (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
6943         (org-remember-apply-template, org-table-edit-field)
6944         (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
6945         (org-set-autofill-regexps): Use `org-set-local'.
6946         (org-table-eval-formula): Fix bug with parsing of display flags.
6948 2006-08-15  Nick Roberts  <nickrob@snap.net.nz>
6950         * progmodes/gdb-ui.el (gdb-info-stack-custom): Indicate selected
6951         frame with fringe arrow.  Suggested by Simon Marshall
6952         <simon.marshall@misys.com>.
6953         (gdb-stack-position): New variable.
6954         (gdb-starting, gdb-exited): Reset gdb-stack-position to nil.
6955         (gdb-frames-mode): Set gdb-stack-position to nil.
6956         Add to overlay-arrow-variable-list
6957         (gdb-reset): Delete gdb-stack-position from above list.
6959 2006-08-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6961         * term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
6962         read only.
6964 2006-08-13  Romain Francoise  <romain@orebokech.com>
6966         * cus-theme.el (customize-create-theme)
6967         (custom-theme-visit-theme): End `y-or-n-p' prompt with a space.
6969         * filesets.el (filesets-add-buffer): Ditto.
6971         * pcvs.el (cvs-change-cvsroot): Ditto.
6973 2006-08-13  Nick Roberts  <nickrob@snap.net.nz>
6975         * progmodes/gdb-ui.el (gdb-frame-separate-io-buffer)
6976         (gdb-use-separate-io-buffer, menu): Avoid using `inferior' in text.
6977         (gdb-memory-mode, gdb-locals-watch-map): Don't quote lambda
6978         expressions.
6979         (gdb-info-breakpoints-custom): Use gdb-breakpoint-regexp.
6980         Only search till end of line.
6981         Add face to function names in case of no filename.
6982         Add face to variable names of watchpoints.
6984 2006-08-12  Robert Thorpe  <rthorpe@realworldtech.com>  (tiny change)
6986         * cus-start.el <indent-tabs-mode>: Move to the `indent'
6987         customization group.
6989 2006-08-12  Ken Manheimer  <ken.manheimer@gmail.com>
6991         * allout.el (allout-prior-bindings, allout-added-bindings):
6992         Remove, after long deprecation.
6993         (allout-beginning-of-line-cycles, allout-end-of-line-cycles):
6994         Add customization vars controlling allout-beginning-of-line and
6995         allout-end-of-line conveniences.
6996         (allout-header-prefix, allout-use-mode-specific-leader)
6997         (allout-use-mode-specific-leader, allout-mode-leaders):
6998         Revise docstrings.
6999         (allout-infer-header-lead): Change to be an alias for
7000         allout-infer-header-lead-and-primary-bullet.
7001         (allout-infer-header-lead-and-primary-bullet): New version of
7002         allout-infer-header-lead which assigns the primary bullet to the
7003         same as the header lead, when its being changed.
7004         (allout-infer-body-reindent): Apply regexp-quote instead of
7005         unconditionally prepending "\\", so that all literal
7006         allout-header-prefix and allout-primary-bullet strings are
7007         properly handled.
7008         (allout-add-resumptions): Add optional qualifier for extending or
7009         appending to existing values, rather than replacing them.
7010         (allout-view-change-hook): Clarify docstring.
7011         (allout-exposure-change-hook): Take explicit arguments, via
7012         run-hook-with-args.
7013         (allout-structure-added-hook)
7014         (allout-structure-deleted-hook)
7015         (allout-structure-shifted-hook): New hooks analogous to
7016         allout-exposure-change-hook for other kinds of structural outline
7017         edits.
7018         (allout-encryption-plaintext-sanitization-regexps): New encryption
7019         customization variable, by which cooperating modes can provde
7020         massage of the plaintext without actually being passed it.
7021         (allout-encryption-ciphertext-rejection-regexps)
7022         (allout-encryption-ciphertext-rejection-ceiling): New encryption
7023         customization variables, by which cooperating modes can prohibit
7024         rare but possible ciphertext patterns from fouling their
7025         operation, with actually being passed the ciphertext.
7026         (allout-mode): Run activation and deactivation hooks after the
7027         minor-mode variable has been toggled, to clarify the mode
7028         disposition.  The new encryption ciphertext rejection variable is
7029         used to ensure that the ciphertext does not contain text that
7030         would be recognized as outline structural elements by allout.
7031         Substite allout-beginning-of-line and allout-end-of-line for
7032         conventionall beginning-of-line and end-of-line bindings.
7033         If allout-old-style-prefixes is non-nil, don't nullify it on mode
7034         activation!
7035         (allout-beginning-of-line): Respect `allout-beginning-of-line-cycles'.
7036         (allout-end-of-line): Respect `allout-end-of-line-cycles'.
7037         (allout-chart-subtree): Implement new mode, charting only the
7038         visible items in the subtree, when new 'visible' parameter is non-nil.
7039         (allout-end-of-subtree): Properly handle the last item in the buffer.
7040         (allout-pre-command-business, allout-command-counter):
7041         Increment an advertised counter so that cooperating enhancements can
7042         track revisions of items.
7043         (allout-open-topic): Run allout-structure-added-hook with suitable
7044         arguments.
7045         (allout-shift-in): Run allout-structure-shifted-hook with suitable
7046         arguments.
7047         (allout-shift-out): Fix doubling for negative args and ensure call
7048         of allout-structure-shifted-hook by solely using allout-shift-in.
7049         (allout-kill-line, allout-kill-topic):
7050         Run allout-structure-deleted-hook with suitable arguments.
7051         (allout-yank-processing): Run allout-structure-added-hook with
7052         proper arguments.
7053         (allout-yank): Enclose activity in allout-unprotected.
7054         (allout-flag-region): Run allout-exposure-change-hook with
7055         suitable arguments, instead of making the callee infer the arguments.
7056         (allout-encrypt-string):
7057         Support allout-encryption-plaintext-sanitization-regexps,
7058         allout-encryption-ciphertext-rejection-regexps, and
7059         allout-encryption-ciphertext-rejection-ceiling.  Indicate correct
7060         en/de cryption mode in symmetric encryption failure message.
7061         (allout-obtain-passphrase): Use copy-sequence to get a distinct
7062         copy of the passphrase, and don't zero it or we'll corrupt the
7063         stashed copy.
7064         (allout-create-encryption-passphrase-verifier)
7065         (allout-verify-passphrase): Respect the new signature for
7066         allout-encrypt-string.
7067         (allout-get-configvar-values): Convenience for getting a
7068         configuration variable value and handling its absence gracefully.
7070 2006-08-11  Romain Francoise  <romain@orebokech.com>
7072         * obsolete/zone-mode.el: Delete.
7074 2006-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7076         * textmodes/dns-mode.el (dns-mode): Use before-save-hook.
7078 2006-08-11  Thien-Thi Nguyen  <ttn@gnu.org>
7080         * emacs-lisp/bindat.el (bindat-ip-to-string):
7081         Use `format-network-address' if possible.
7083 2006-08-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7085         * x-dnd.el (x-dnd-init-frame): Call x-register-dnd-atom.
7087 2006-08-10  Chong Yidong  <cyd@stupidchicken.com>
7089         * emacs-lisp/edebug.el (edebug-recursive-edit): Don't save and
7090         restore unread-command-events here.
7091         (edebug-display): Do it here, to detect sit-for interruptions.
7093 2006-08-10  Romain Francoise  <romain@orebokech.com>
7095         * textmodes/dns-mode.el: Alias `zone-mode' to `dns-mode'.
7096         (dns-mode-soa-auto-increment-serial): New user option.
7097         (dns-mode-soa-maybe-increment-serial): New function.
7098         (dns-mode): Add the latter to `write-contents-functions'.
7100         * obsolete/zone-mode.el: Move to obsolete/ from net/.
7101         Delete autoload cookies.
7103 2006-08-10  John Wiegley  <johnw@newartisans.com>
7105         * eshell/em-glob.el (eshell-glob-chars-list)
7106         (eshell-glob-translate-alist): Add support for [^g] in character globs.
7108 2006-08-10  Richard Stallman  <rms@gnu.org>
7110         * facemenu.el (facemenu-add-face): Pass frame to facemenu-active-faces.
7111         (facemenu-set-face): Doc fix.
7112         (facemenu-listed-faces): Doc fix.
7114 2006-08-09  Chong Yidong  <cyd@stupidchicken.com>
7116         * avoid.el (mouse-avoidance-animating-pointer): New var.
7117         (mouse-avoidance-nudge-mouse): Use it.
7118         (mouse-avoidance-banish): Rename from mouse-avoidance-banish-hook.
7119         (mouse-avoidance-exile): Rename from mouse-avoidance-exile-hook
7120         (mouse-avoidance-fancy): Rename from mouse-avoidance-fancy-hook.
7121         Don't activate if currently animating.  All callers changed.
7123 2006-08-09  John Wiegley  <johnw@newartisans.com>
7125         * calendar/timeclock.el (timeclock-use-elapsed): Added a new
7126         variable, which causes timeclock to report elapsed time worked,
7127         instead of just work remaining.
7129 2006-08-09  Kenichi Handa  <handa@m17n.org>
7131         * international/latexenc.el (latexenc-find-file-coding-system):
7132         Fix for the case that the 2nd element of arg-list is a cons.
7134 2006-08-08  Chong Yidong  <cyd@stupidchicken.com>
7136         * info.el (Info-fontify-node): Handle preceding `in' for note
7137         reference hiding rules.
7139 2006-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7141         * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't
7142         mistake a closing " for an opening one.
7144 2006-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
7146         * term/xterm.el (terminal-init-xterm): Add more key bindings.
7148 2006-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7150         * complete.el (PC-do-completion): Filter out completions matching
7151         completion-ignored-extensions before checking whether there are
7152         multiple completions.
7153         Don't use `list' unnecessarily when building completion tables.
7155 2006-08-06  Richard Stallman  <rms@gnu.org>
7157         * help.el (describe-mode): Make minor mode list more concise.
7159 2006-08-05  Chong Yidong  <cyd@stupidchicken.com>
7161         * bindings.el: Give mode-line-format, mode-line-modes, and
7162         mode-line-position `standard-value' properties.
7164 2006-08-05  Eli Zaretskii  <eliz@gnu.org>
7166         * buff-menu.el (list-buffers-noselect): For Info buffers, use
7167         "(file)node" instead of the file name.
7169 2006-08-05  Richard Stallman  <rms@gnu.org>
7171         * faces.el (escape-glyph): Doc fix.
7173 2006-08-04  Kenichi Handa  <handa@m17n.org>
7175         * international/mule-diag.el (describe-font): Improve docstring
7176         and error message.  Use frame-parameter (not frame-parameters).
7178 2006-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7180         * progmodes/gud.el (gdb-script-font-lock-syntactic-keywords):
7181         Correctly mark the end-of-docstring char.
7183 2006-08-03  Chong Yidong  <cyd@stupidchicken.com>
7185         * simple.el (line-move-to-column): Constrain move-to-column to
7186         current field.
7188 2006-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7190         * font-lock.el (font-lock-beg, font-lock-end)
7191         (font-lock-extend-region-functions): New vars.
7192         (font-lock-extend-region-multiline)
7193         (font-lock-extend-region-wholelines): New functions.
7194         (font-lock-default-fontify-region): Use them.
7195         (font-lock-extend-jit-lock-region-after-change): Only round up
7196         if font-lock-default-fontify-region will do it as well.
7198         * font-lock.el (font-lock-extend-after-change-region-function):
7199         Rename from font-lock-extend-region-function.
7200         (font-lock-extend-region): Remove by inlining at call sites.
7201         (font-lock-after-change-function): Don't needlessly round up to a whole
7202         number of lines.
7203         (font-lock-extend-jit-lock-region-after-change): Be more careful about
7204         the boundary conditions and the interactions between the various ways
7205         to extend the region.
7207 2006-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7209         * jit-lock.el (jit-lock-fontify-now): Preserve the buffer's
7210         modification status when forcing the second redisplay.
7212 2006-08-03  Kim F. Storm  <storm@cua.dk>
7214         * edmacro.el (edmacro-fix-menu-commands): Ignore switch-frame.
7216 2006-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7218         * pcvs-util.el (cvs-get-buffer-create): Obey `noreuse' even if `name'
7219         doesn't look like a file name.
7221         * complete.el (PC-expand-many-files): Avoid signalling an error when
7222         the current directory doesn't exist.  Reported by Micha\e,Ak\e(Bl Cadilhac.
7224 2006-08-02  Andreas Schwab  <schwab@suse.de>
7226         * bindings.el (mode-line-format): Simplify reference to vc-mode.
7228 2006-08-02  Nick Roberts  <nickrob@snap.net.nz>
7230         * bindings.el (map): Make mode-line-buffer-identification-keymap
7231         before defining propertized-buffer-identification.
7233 2006-08-01  Richard Stallman  <rms@gnu.org>
7235         * bindings.el (mode-line-format): Adjust spacing around vc-mode.
7237 2006-08-02  Nick Roberts  <nickrob@snap.net.nz>
7239         * progmodes/gdb-ui.el (gdb-find-source-frame): Make nil the
7240         default value.
7241         (gdb-find-source-frame): New function.
7242         (menu): Add to menu bar.
7244 2006-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7246         * font-core.el (font-lock-extend-region-function)
7247         (font-lock-extend-region): Move to font-lock.el.
7249         * font-lock.el (font-lock-extend-region-function)
7250         (font-lock-extend-region): Move from font-core.el.  Simplify.
7252         * jit-lock.el (jit-lock-fontify-now): Cause a second redisplay
7253         if needed.
7254         (jit-lock-start, jit-lock-end): New dynamic scoped vars.
7255         (jit-lock-after-change-extend-region-functions): New hook.
7256         (jit-lock-after-change): Use it instead of hard-coding font-lock code.
7258         * font-lock.el (font-lock-extend-jit-lock-region-after-change): New fun.
7259         (font-lock-turn-on-thing-lock): Use it.
7261         * longlines.el (longlines-show-region): Make it work on read-only
7262         buffers as well.
7264 2006-08-01  Nick Roberts  <nickrob@snap.net.nz>
7266         * progmodes/gdb-ui.el (gdb-set-hollow): Check for gud-last-last-frame.
7268 2006-07-31  Richard Stallman  <rms@gnu.org>
7270         * progmodes/vhdl-mode.el (vhdl-speedbar-display-directory)
7271         (vhdl-speedbar-display-projects): Update old obsolete
7272         speedbar variable names.
7274 2006-07-31  Nick Roberts  <nickrob@snap.net.nz>
7276         * progmodes/gdb-ui.el (gdb-find-source-frame): New option.
7277         (gdb-stopped): Use it.
7279         * t-mouse.el (t-mouse-mode): Use set-process-query-on-exit-flag.
7281 2006-07-29  Chong Yidong  <cyd@stupidchicken.com>
7283         * loadhist.el (unload-feature): Handle new `(t . SYMBOL)' format
7284         for load-history elements.
7286 2006-07-29  Eli Zaretskii  <eliz@gnu.org>
7288         * files.el (convert-standard-filename): For Cygwin, replace
7289         characters not allowed in Windows file names.
7290         (make-auto-save-file-name): Add Cygwin to the list of systems
7291         where the auto-save file name needs to be run through
7292         convert-standard-filename.
7294 2006-07-29  Lennart Borgman  <lennart.borgman.073@student.lu.se>
7296         * window.el (bw-get-tree): Don't integerp subtree if it's nil.
7298 2006-07-28  Richard Stallman  <rms@gnu.org>
7300         * bindings.el (mode-line-frame-identification)
7301         (propertized-buffer-identification): Centralize the code
7302         to initialize the variable.
7304         * progmodes/grep.el (grep-default-command): Catch errors from
7305         wildcard-to-regexp.
7307 2006-07-29  Kim F. Storm  <storm@cua.dk>
7309         * progmodes/grep.el (grep-tag-default): New function.
7310         (grep-default-command, grep-read-regexp): Use it.
7311         (grep-read-files): Use car of grep-files-history or grep-files-aliases
7312         as default if nothing else applies.
7314 2006-07-28  Bill Atkins  <atkinw@rpi.edu>  (tiny change)
7316         * wdired.el (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
7317         Throw error if buffer is not in Dired and Wdired mode, respectively.
7319 2006-07-28  Chong Yidong  <cyd@stupidchicken.com>
7321         * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so that
7322         self-insert-command keys don't activate buttons.
7323         (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
7325 2006-07-29  Nick Roberts  <nickrob@snap.net.nz>
7327         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Use different
7328         faces for enable character.
7330 2006-07-28  Nick Roberts  <nickrob@snap.net.nz>
7332         * Makefile.in (recompile): Update comment to reflect change
7333         on 2004-04-21.
7335 2006-07-27  Richard Stallman  <rms@gnu.org>
7337         * cus-edit.el (customize-package-emacs-version-alist): Doc fix.
7338         (customize-package-emacs-version): Change msg when pkg has no entry.
7339         (custom-no-edit): On a button, do like widget-button-press.
7341 2006-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
7343         * term/xterm.el (terminal-init-xterm): Fix bindings for C-tab,
7344         S-tab and C-S-tab.
7346 2006-07-28  Nick Roberts  <nickrob@snap.net.nz>
7348         * progmodes/which-func.el (which-function): Fix documentation/
7349         comment typo.
7351 2006-07-26  Richard Stallman  <rms@gnu.org>
7353         * textmodes/ispell.el (ispell-word): If we replace the word,
7354         move point to the end.  Insert before deleting.
7356 2006-07-26  Chong Yidong  <cyd@stupidchicken.com>
7358         * subr.el (sit-for): Use new SECONDS arg of read-event instead of
7359         a timer.
7361 2006-07-26  Mathias Dahl  <mathias.dahl@gmail.com>
7363         * tumme.el (tumme-backward-image): Add prefix argument.  Add error
7364         when at first image.
7365         (tumme-forward-image): Add prefix argument.  Add error when at last
7366         image.
7368 2006-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7370         * tabify.el (tabify-regexp): Use more specific regexps.
7371         (tabify): Avoid modifying the buffer unnecessarily.
7373 2006-07-25  Mathias Dahl  <mathias.dahl@gmail.com>
7375         * tumme.el (tumme-track-original-file): Add `buffer-live-p' check.
7376         (tumme-format-properties-string): Handle empty `buf'.
7377         (tumme-get-comment): Change variable names inside `let'.
7378         Add missing `let' variable that cause font-lock problems.
7379         (tumme-write-comments): Change variable names inside `let'.
7380         Add missing `let' variable that cause font-lock problems.
7381         (tumme-forward-image): Rename from `tumme-forward-char'.
7382         (tumme-backward-image): Rename from `tumme-backward-char'.
7384 2006-07-25  Masatake YAMATO  <jet@gyve.org>
7386         * progmodes/ld-script.el (ld-script-keywords)
7387         (ld-script-font-lock-keywords, ld-script-builtins): Update keywords
7388         and add comments.
7390 2006-07-25  Nick Roberts  <nickrob@snap.net.nz>
7392         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
7393         (gdb-resync, gdb-prompt, gdb-starting, gdb-exited, gdb-stopped)
7394         (gdb-set-gud-minor-mode-existing-buffers-1): Use different faces
7395         for status indicator.
7397 2006-07-24  Richard Stallman  <rms@gnu.org>
7399         * xml.el (xml-parse-file): Clean up, and use with-temp-buffer.
7401         * subr.el (dolist, dotimes): Use interned symbols for locals.
7402         (--dotimes-limit--, --dolist-tail--): New defvars.
7403         (looking-back): Doc fix.
7405         * replace.el (replace-match-string-symbols): Handle dotted lists.
7407 2006-07-24  Mathias Dahl  <mathias.dahl@gmail.com>
7409         * tumme.el (tumme-write-tags): Add.
7410         (tumme-write-comments): Add.
7411         (tumme-tag-files): Change to use `tumme-write-tags'.
7412         (tumme-tag-thumbnail): Change to use `tumme-write-tags'.
7413         (tumme-dired-comment-files): Change to use `tumme-write-comments'.
7414         (tumme-save-information-from-widgets): Change to use
7415         `tumme-write-comments' and `tumme-write-tags'.
7416         (tumme-comment-thumbnail): Change to use `tumme-write-comments'.
7417         (tumme-write-tag): Remove.
7418         (tumme-write-comment): Remove.
7419         (tumme-display-previous-thumbnail-original): Remove empty line.
7420         (tumme-widget-list): Add punctuation.
7422 2006-07-24  Mathias Dahl  <mathias.dahl@gmail.com>
7424         * tumme.el (tumme-line-up): Add an extra check for end of buffer.
7426 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7428         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7429         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org>
7430         and andreas@altroot.de (Andreas V\e,Av\e(Bgele).
7432 2006-07-23  Thien-Thi Nguyen  <ttn@gnu.org>
7434         * mouse.el (mouse-on-link-p): Doc fix.
7436 2006-07-23  Nick Roberts  <nickrob@snap.net.nz>
7438         * emacs-lisp/find-func.el (find-function-search-for-symbol):
7439         Handle "C-h f `".
7441 2006-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
7443         * ibuffer.el (ibuffer-formats): Use left alignment for the mode
7444         column.
7446 2006-07-22  Matt Hodges  <MPHodges@member.fsf.org>
7448         * textmodes/table.el: Add move-beginning-of-line and
7449         move-end-of-line to Point Motion Only Group.
7451 2006-07-22  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
7453         * progmodes/delphi.el (delphi-fill-comment): Use save-restriction.
7455 2006-07-22  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
7457         * startup.el (user-mail-address): Initialize from the `EMAIL'
7458         environment variable first.  Document this.
7459         (command-line): Ditto.
7461 2006-07-22  Nick Roberts  <nickrob@snap.net.nz>
7463         * help-mode.el (help-function-def, help-variable-def)
7464         (help-face-def): Print a message in the minibuffer.
7466 2006-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
7468         * term/xterm.el (terminal-init-xterm): Fix key bindings
7469         syntax.  Bind S-return, C-M-., C-TAB, S-TAB and C-S-TAB.
7471 2006-07-21  Eli Zaretskii  <eliz@gnu.org>
7473         * dos-w32.el (find-buffer-file-type-coding-system): Support calls
7474         where `(nth 1 command)' is a cons cell.  Doc fix.
7476         * textmodes/po.el (po-find-charset): Doc fix.
7478 2006-07-21  Ken Manheimer  <ken.manheimer@gmail.com>
7480         * allout.el (allout-unprotected, allout-e-o-prefix-p)
7481         (allout-beginning-of-current-line, allout-end-of-current-line)
7482         (allout-next-visible-heading, allout-open-topic)
7483         (allout-kill-topic, allout-yank-processing, allout-resolve-xref)
7484         (allout-flag-current-subtree, allout-show-to-offshoot)
7485         (allout-hide-current-entry, allout-show-current-branches)
7486         (allout-hide-region-body, allout-old-expose-topic)
7487         (allout-listify-exposed, allout-latex-verbatim-quote-curr-line)
7488         (allout-mark-topic, allout-adjust-file-variable): Enclose scopes
7489         containing `beginning-of-line' and `end-of-line' with
7490         `inhibit-field-text-motion' t.
7492 2006-07-21  Eli Zaretskii  <eliz@gnu.org>
7494         * frame.el (focus-follows-mouse): Document that it doesn't have
7495         any effect on MS-Windows.
7497 2006-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7499         * progmodes/sh-script.el (sh-quoted-subshell): Further fix last change.
7501 2006-07-20  Jay Belanger  <belanger@truman.edu>
7503         * calc.el (calc-previous-alg-entry): Remove variable.
7505         * calc-aent.el (calc-alg-entry-history, calc-quick-calc-history):
7506         New variables.
7507         (calc-alg-entry): Use `calc-alg-entry-history'.
7508         (calc-do-quick-calc): Use `calc-quick-calc-history'.
7509         Remove reference to `calc-previous-alg-entry'.
7510         (calcAlg-edit, calcAlg-enter): Remove reference to
7511         `calc-previous-alg-entry'.
7512         (calcAlg-previous): Use `previous-history-element' instead of
7513         `calc-previous-alg-entry'.
7514         (calc-do-alg-entry): Use history when calling `read-from-minibuffer'.
7515         Change keybinding for `calcAlg-plus-minus', add keybindings for
7516         `previous-history-element' and `next-history-element'.
7518         * calc-rewr.el (calc-match): Remove reference to
7519         `calc-previous-alg-entry'.
7521         * calc-sel.el (calc-selection-history): New variable.
7522         (calc-enter-selection, calc-sel-mult-both-sides)
7523         (calc-sel-add-both-sides): Use `calc-selection-history'.
7525         * calc-map.el (calc-get-operator-history): New variable.
7526         (calc-get-operator): Use `calc-get-operator-history'.
7528         * calcalg3.el (calc-curve-fit-history): New variable.
7529         (calc-curve-fit): Use `calc-curve-fit-history'.
7531 2006-07-20  Kenichi Handa  <handa@m17n.org>
7533         * international/mule-cmds.el (select-safe-coding-system): Fix the
7534         way of deciding eol-type of the coding system.
7536 2006-07-20  Alan Mackenzie  <acm@muc.de>
7538         * progmodes/cc-langs.el (c-emacs-variable-inits): New variable.
7539         (c-lang-setvar): New macro.
7540         (c-make-init-lang-vars-fun): Use the initialization forms in
7541         c-emacs-variable-inits in addition to those in c-lang-variable-inits.
7542         (comment-start, comment-end, comment-start-skip): Change these from
7543         c-lang-defvar's to c-lang-setvar's.
7545         * progmodes/cc-mode.el (c-make-emacs-variables-local): New macro,
7546         which calls make-local-variable on the elements of
7547         c-emacs-variable-inits.
7548         (c-init-language-vars-for): Call this new macro.
7550 2006-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7552         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
7553         Try to rule out false positives due to time stamps.
7554         (compilation-mode-font-lock-keywords): Remove rules made redundant
7555         because of the above change.  Add `segmentation fault' to the known and
7556         highlighted compilation termination messages.
7558 2006-07-19  Kim F. Storm  <storm@cua.dk>
7560         * progmodes/grep.el (grep-find-ignored-directories):
7561         Add .svn and _darcs to list.
7563 2006-07-19  Mathias Dahl  <mathias.dahl@gmail.com>
7565         * dired.el (dired-mode-map): Add key binding `C-te' for
7566         `tumme-dired-edit-comment-and-tags'.
7568         * tumme.el (tumme-display-thumbnail-original-image): Make sure
7569         image display buffer is displayed before call to
7570         `tumme-display-image.
7571         (tumme-dired-display-image): Make sure image display buffer is
7572         displayed before call to `tumme-display-image.
7573         (tumme-mouse-display-image): Make sure image display buffer is
7574         displayed before call to `tumme-display-image.
7575         (tumme-widget-list): Add.
7576         (tumme-dired-edit-comment-and-tags): Add.
7577         (tumme-save-information-from-widgets): Add.
7579 2006-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7581         * progmodes/sh-script.el (sh-quoted-subshell): Fix last change.
7583 2006-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7585         * progmodes/sh-script.el (sh-font-lock-keywords-1):
7586         Revert inadvertently installed patch hunk.
7588         * progmodes/compile.el (compilation-find-file): Handle the
7589         cases where the user selects a non-existent file.
7591 2006-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7593         * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
7595 2006-07-17  Chong Yidong  <cyd@stupidchicken.com>
7597         * subr.el (sit-for): Just sleep-for if noninteractive.
7599 2006-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7601         * emacs-lisp/autoload.el (make-autoload): Use new arg.
7603         * custom.el (custom-autoload): Add `noset' argument.
7604         (custom-push-theme): Don't autoload the variable, let callers do it.
7605         (custom-theme-set-variables): Autoload the variable if necessary.
7607         * cus-edit.el (custom-variable-state-set): If the variable was
7608         originally set outside custom, but to the same value as the default,
7609         consider it to be standard.
7611         * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
7612         file *before* telling Emacs to add the autoloads, in case it fails.
7614         * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
7615         Use `cond', push', and `dolist'.
7617 2006-07-17  Richard Stallman  <rms@gnu.org>
7619         * image-mode.el (tar-superior-buffer, archive-superior-buffer):
7620         Add defvars to silence warnings.
7622 2006-07-17  Chong Yidong  <cyd@stupidchicken.com>
7624         * progmodes/compile.el (compilation-mode-font-lock-keywords):
7625         Don't highlight "Compiling file" messages as error.
7627         * dired-aux.el (dired-compress-file): Confirm again if gzipped
7628         file already exists.
7630 2006-07-16  Thien-Thi Nguyen  <ttn@gnu.org>
7632         * find-file.el (ff-special-constructs): Doc fix.  Also, for C/C++
7633         entry, don't assign to free var; simply return the extracted filename.
7634         (ff-treat-as-special): Incorporate common preamble from callers.
7635         (ff-other-file-name, ff-find-the-other-file):
7636         Update call to ff-treat-as-special.
7638         * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
7640 2006-07-16  Mathias Dahl  <mathias.dahl@gmail.com>
7642         * tumme.el (tumme-get-comment): Fix bug.
7644 2006-07-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7646         * files.el: Remove spurious * in docstrings.
7648 2006-07-14  Ken Manheimer  <ken.manheimer@gmail.com>
7650         * allout.el (allout-run-unit-tests-on-load): Rectify docstring
7651         grammar.
7652         (allout-beginning-of-current-line): Beware beginning of buffer.
7653         Also, a comment is simplified.
7654         (allout-hotspot-key-handler): Only set allout-post-goto-bullet
7655         when appropriate.  (This fix enables use for other than
7656         bullet-hotspot operation.)
7657         (allout-hide-current-subtree): While escalating to sibling-close,
7658         make sure to situate on a topic.
7660 2006-07-14  Kim F. Storm  <storm@cua.dk>
7662         * emulation/cua-base.el (cua-delete-selection)
7663         (cua-toggle-set-mark): New defcustoms.
7664         (cua-rectangle-modifier-key): Add `alt' modifier.
7665         (cua-replace-region): Don't delete if cua-delete-selection is nil.
7666         (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
7667         Suggested by Klaus Zeitler <kzeitler@lucent.com>.
7669         * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
7671 2006-07-14  Ken Manheimer  <ken.manheimer@gmail.com>
7673         * allout.el: Require 'cl during byte-compilation/interactive load,
7674         for the `assert' macro.
7675         (allout-mode-deactivate-hook): New hook, run when allout mode
7676         deactivates.
7677         (allout-developer): New allout customization subgroup.
7678         (allout-run-unit-tests-on-load): New allout-developer
7679         customization variable, when true allout unit tests are run towards
7680         end of file load/eval.
7681         (allout-inhibit-auto-fill): Disable auto-fill activity even during
7682         auto-fill-mode.
7683         (allout-resumptions): Remove, to be replaced by...
7684         (allout-add-resumptions): Register variable settings to be
7685         reinstated by `allout-do-resumptions'.  The settings are made
7686         buffer-local, but the locality/globality of the suspended setting
7687         is restored on resumption.
7688         (allout-do-resumptions): Reinstate all settings suspended using
7689         `allout-add-resumptions'.
7690         (allout-test-resumptions): Unit tests (and intermediate variables)
7691         for resumptions.
7692         (allout-tests-globally-unbound, allout-tests-globally-true)
7693         (allout-tests-locally-true): Intermediate variables for
7694         resumptions unit tests.
7695         (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
7696         (allout-exposure-category): Replaces 'allout-overlay-category variable.
7697         (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
7698         instead of retired `allout-resumptions'.  For hook functions, use
7699         `local' parameter so hook settings are created and removed as
7700         buffer-local settings.  Revise (resumptions) setting
7701         auto-fill-function so it is set only if already active.  (The
7702         related fill-function settings are all made in either case, so
7703         that activating auto-fill-mode activity will have the custom
7704         allout-mode behaviors (hanging indent on topics, if configured for it).
7705         Remove all allout-exposure-category overlays on mode deactivation.
7706         (allout-hotspot-key-handler): New function extracted from
7707         `allout-pre-command-business', so the functionality can be used
7708         for other purposes, eg as a binding in an overlay.
7709         (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
7710         (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
7711         customization variable.
7712         (allout-run-unit-tests): Run the (currently quite small)
7713         repertoire of unit tests.  Called just before the provide iff user
7714         has customized `allout-run-unit-tests-on-load' non-nil.
7716 2006-07-14  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
7718         * emacs-lisp/authors.el (authors-aliases): Update.
7720 2006-07-14  Nick Roberts  <nickrob@snap.net.nz>
7722         * progmodes/gdb-ui.el (gdb-display-buffer): Check for
7723         gdb-source-window.  Add dedicated argument.
7724         (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
7725         (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
7726         (gdb-display-threads-buffer, gdb-display-memory-buffer)
7727         (gdb-display-locals-buffer): Use it.
7729         * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
7730         Set gdb-source-window.
7732 2006-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7734         * emacs-lisp/autoload.el (make-autoload): Remove special handling of
7735         minor modes, redundant with the custom-autoload line above.
7737 2006-07-12  Chong Yidong  <cyd@stupidchicken.com>
7739         * longlines.el (longlines-post-command-function): Handle open-line too.
7741 2006-07-12  Richard Stallman  <rms@gnu.org>
7743         * progmodes/grep.el (grep-last-buffer): Doc fix.
7745         * info.el (Info-try-follow-nearest-node): Doc fix.
7747         * emacs-lisp/edebug.el (edebug-instrument-function):
7748         Err if find-function-noselect gives no position.
7750         * emacs-lisp/find-func.el (find-function-search-for-symbol):
7751         If can't find definition, return nil for position.
7752         (find-function-do-it): Handle new return value
7753         of find-definition-noselect.
7754         (find-definition-noselect, find-variable-noselect): Doc fix.
7755         (find-function-noselect): Doc fix.
7757         * help-mode.el (help-variable-def): Handle find-variable-noselect
7758         returning no position.
7759         (help-function-def): Likewise for find-function-search-for-symbol.
7760         (help-face-def): Likewise.
7762         * help-fns.el (describe-variable): Handle find-variable-noselect
7763         returning no position.
7765         * files.el (locate-file-completion): Avoid duplicates in result.
7767         * cus-edit.el (custom-no-edit): New command.
7768         (custom-mode-map): Remap to custom-no-edit instead of
7769         using suppress-keymap.
7771 2006-07-12  Nick Roberts  <nickrob@snap.net.nz>
7773         * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
7774         (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
7775         (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
7777         * thumbs.el (thumbs-call-convert): Use shell-command-switch.
7779 2006-07-11  Kim F. Storm  <storm@cua.dk>
7781         * ido.el (ido-copy-current-file-name): Use buffer-name if
7782         buffer-file-name is nil.
7784 2006-07-11  Chong Yidong  <cyd@stupidchicken.com>
7786         * simple.el (undo-ask-before-discard): Set to nil.
7788         * vc.el (vc-exec-after): Don't delete process manually.
7789         (vc-print-log): Run log-view-mode in process sentinel inside
7790         inhibit-read-only.  Don't shrink window due to timing issues.
7792         * progmodes/ebrowse.el (ebrowse-display-member-buffer):
7793         Avoid using with-output-to-temp-buffer, which clobbers local vars.
7795 2006-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7797         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7798         Fix ambiguity introduced by last change.
7799         (compilation-find-file): Move save-excursion to where it may
7800         make sense.  Fix a left over `find-file'.
7802 2006-07-11  Robert J. Chassell  <bob@rattlesnake.com>
7804         * textmodes/texinfmt.el (texinfo-format-separate-node):
7805         Insert a string before point, which fits documentation, not after.
7806         (texinfo-multitable-item): In a multitable row, insert any
7807         additional needed @tabs and spaces.
7809 2006-07-11  Nick Roberts  <nickrob@snap.net.nz>
7811         * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
7812         (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
7813         (tumme-set-exif-data, tumme-get-exif-data): Use call-process
7814         instead of shell-command.
7815         (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
7816         (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
7817         (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
7818         (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
7819         (tumme-thumbnail-set-image-description, tumme-gallery-generate)
7820         (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
7822 2006-07-11  Kim F. Storm  <storm@cua.dk>
7824         * subr.el (sit-for): Doc fix.  Specify normal arg list using fn-form.
7825         Remove special case for seconds < 0.  Use (redisplay t) instead.
7827 2006-07-10  Chong Yidong  <cyd@stupidchicken.com>
7829         * progmodes/cc-awk.el (c-awk-escaped-nls*): Use eval-and-compile to
7830         avoid compilation error.
7832         * subr.el (sit-for): New function.
7834         * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
7836 2006-07-10  Richard Stallman  <rms@gnu.org>
7838         * ldefs-boot.el (edebug): Update page.
7840 2006-07-10  Kim F. Storm  <storm@cua.dk>
7842         * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
7843         to FOR-RELEASE and TODO.
7845 2006-07-10  Romain Francoise  <romain@orebokech.com>
7847         * emacs-lisp/authors.el (authors-aliases): Update.
7849 2006-07-10  Alan Mackenzie  <acm@muc.de>
7851         * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
7852         * cc-mode.el: Changes to eradicate eval-after-load.
7854 2006-07-09  Chong Yidong  <cyd@stupidchicken.com>
7856         * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
7857         on non-char events.
7859 2006-07-09  Romain Francoise  <romain@orebokech.com>
7861         * progmodes/compile.el (compilation-mode-font-lock-keywords):
7862         Don't highlight start/end markers as compilation messages.
7864         * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
7865         to t.
7867 2006-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7869         * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
7871 2006-07-08  Richard Stallman  <rms@gnu.org>
7873         * term/x-win.el (x-handle-display): Add doc string.
7875         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7877         * subr.el (def-edebug-spec): Move here.
7878         * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
7880         * imenu.el (imenu-choose-buffer-index): Doc fix.
7882 2006-07-08  Romain Francoise  <romain@orebokech.com>
7884         * term/x-win.el (x-display-name): Fix typo.
7886 2006-07-08  Eli Zaretskii  <eliz@gnu.org>
7888         * hexl.el (hexl-find-file): Doc fix.
7890         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
7892 2006-07-07  Chong Yidong  <cyd@stupidchicken.com>
7894         * term/x-win.el (x-display-name): Doc fix.
7896 2006-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7898         * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
7899         long prefixes.
7900         (fill-region-as-paragraph): Don't round up to a whole line.
7901         (fill-comment-paragraph): Don't include the code-before-the-comment
7902         when calling fill-region-as-paragraph.
7904         * international/mule.el (make-char): Remove redundancy.
7906         * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
7907         property may contain an anonymous function rather than a symbol.
7909         * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
7911         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
7912         Use shy regexp.  Fix incorrect backref to potentially unmatched group.
7914         * dirtrack.el (dirtrack-default-directory-function): Remove.
7915         (dirtrack-directory-function): Use file-name-as-directory.
7916         (dirtrack-windows-directory-function): Simplify.
7917         (dirtrack-forward-slash, dirtrack-backward-slash)
7918         (dirtrack-replace-slash): Remove.
7919         (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
7920         (dirtrack): Fix wrong parenthesizing; use match-string.
7922         * progmodes/octave-inf.el: Remove spurious * in docstrings.
7923         (inferior-octave-mode): Only change the buffer-local value of
7924         comint-dynamic-complete-functions.
7925         (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
7926         Move the initialization to the declaration.
7927         (inferior-octave-complete): Remove unused var `filter'.
7929         * shell.el (shell-mode): Only change the buffer-local value of
7930         comint-dynamic-complete-functions.
7932 2006-07-07  Carsten Dominik  <dominik@science.uva.nl>
7934         * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
7935         entry is skipped because it has been scheduled.
7936         (org-prepare-agenda-buffers): Don't mark buffers as modified when
7937         changing `:org-archived' and `:org-comment' properties.
7939 2006-07-06  Chong Yidong  <cyd@stupidchicken.com>
7941         * server.el (server-select-display): Don't make the temp frame
7942         minibuffer-only, in case it's not a temp frame.
7943         (server-process-filter): Don't delete the temp frame if it's the
7944         only one we have on that display.
7946         * files.el (find-alternate-file): Doc fix.
7948 2006-07-05  Richard Stallman  <rms@gnu.org>
7950         * files.el (abbreviate-file-name): Add save-match-data.
7952 2006-07-03  Richard Stallman  <rms@gnu.org>
7954         * faces.el (read-face-name): Doc fix.
7956 2006-07-05  Chong Yidong  <cyd@stupidchicken.com>
7958         * net/goto-addr.el (goto-address): Mark as safe for local evals.
7960 2006-07-05  Andre Spiegel  <spiegel@gnu.org>
7962         * vc.el (vc-diff-internal): Fix prev change.
7964 2006-07-05  Thien-Thi Nguyen  <ttn@gnu.org>
7966         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
7967         * play/dunnet.el (dun-load-d, dun-eval): Likewise.
7969 2006-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7971         * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
7972         fails if the symbol contains chars like ( or '.
7973         (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
7974         (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
7975         `short'.
7977 2006-07-04  Kenichi Handa  <handa@m17n.org>
7979         * international/mule-cmds.el (set-language-info): If LANG-ENV is
7980         the current one, don't call set-language-environment, but call one
7981         of set-language-environment-XXX to make INFO effective now.
7982         (set-language-environment): Call set-language-environment-XXX
7983         functions instead of doing the various setups directly.
7984         (set-language-environment-coding-systems): Delete argument eol-type.
7985         (set-language-environment-input-method)
7986         (set-language-environment-nonascii-translation)
7987         (set-language-environment-charset)
7988         (set-language-environment-fontset)
7989         (set-language-environment-unibyte): New functions.
7991 2006-07-03  Luc Teirlinck  <teirllm@auburn.edu>
7993         * locate.el (locate-update-when-revert): New option.
7994         (locate-update-path): New option (suggested by Michael Albinus).
7995         (locate-prompt-for-command): Whitespace change.
7996         (locate-update): No longer offer to update the locate database by
7997         default.  Implement the two new options.
7999 2006-07-04  Nick Roberts  <nickrob@snap.net.nz>
8001         * tooltip.el: Move comment about track-mouse...
8003         * progmodes/gud.el: ...to here.
8005 2006-07-03  Chong Yidong  <cyd@stupidchicken.com>
8007         * facemenu.el (facemenu-listed-faces): New var.
8008         (facemenu-unlisted-faces): Variable deleted.
8009         (facemenu-add-new-face): Use facemenu-listed-faces.
8011         * emulation/viper-init.el, calendar/calendar.el:
8012         * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
8014 2006-07-03  Carsten Dominik  <dominik@science.uva.nl>
8016         * textmodes/org.el (org-mode): Remove no invalid settings for
8017         calc embedded mode.
8018         (org-mode-p): New defsubst.
8019         (org-save-all-org-buffers): New function.
8020         (org-first-headline-recenter): Enclose outline-regexp in group
8021         delimiters.
8022         (org-set-tags): Keep single space after stars.
8024 2006-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8026         * window.el (set-window-text-height): Only set window-min-height to
8027         1 if that's the requested size.
8029         * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
8030         (diff-unified->context, diff-context->unified)
8031         (diff-reverse-direction): Make sure the end marker stays at the end.
8032         (diff-mode): Add the keymap table at the end of docstring.
8033         Use lexical-let rather than constructing a closure manually.
8035         * files.el (find-file-noselect-1): Remove unused var assignment.
8036         (hack-local-variables-confirm): Print lists of strings as lists of
8037         strings rather than lists of symbols.
8038         (abbreviate-file-name, hack-local-variables-prop-line):
8039         Use match-string.
8040         (hack-one-local-variable): Move `make-local-variable' nearer its use.
8041         (recover-session-finish): Use line-end-position.
8043 2006-07-02  Michael Albinus  <michael.albinus@gmx.de>
8045         * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
8047 2006-07-02  Daniel Pfeiffer  <occitan@esperanto.org>
8049         * progmodes/make-mode.el (makefile-macroassign-regex):
8050         Accept preceding keyword.
8051         (makefile-gmake-statements): Reorganize, now that makepp has
8052         "override" and also handle forgotten "override define".
8053         (makefile-makepp-statements): Add new "global", "override export"
8054         and "override global".
8056 2006-06-30  Juanma Barranquero  <lekktu@gmail.com>
8058         * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
8059         (ada-compile-mouse-goto-error, ada-deactivate-properties)
8060         (ada-no-auto-case): Fix typos in docstrings.
8062 2006-06-30  Nick Roberts  <nickrob@snap.net.nz>
8064         * info.el (Info-find-node-2): Search for makeinfo version more
8065         carefully.
8067 2006-06-29  Carsten Dominik  <dominik@science.uva.nl>
8069         * textmodes/org.el (org-prepare-agenda-buffers):
8070         Use `invisible-OK' argument for `org-end-of-subtree'.
8071         (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
8072         (org-beginning-of-item): Fix bug in regular expression for white line.
8073         (org-export-as-html): Enforce space after bullet in plain list items.
8074         (org-set-autofill-regexps): Require space after plain list bullet
8075         for paragraph-start.
8076         (org-ts-regexp3): New constant.
8077         (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
8078         (org-timestamp-up-day, org-timestamp-down-day)
8079         (org-timestamp-change): Work with inactive timestamps.
8080         (org-ts-regexp1): Don't allow brackets in time stamps.
8082 2006-06-29  Nick Roberts  <nickrob@snap.net.nz>
8084         * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
8085         for ignoring links.
8087         * faces.el (read-face-name): Use it.
8089 2006-06-28  Juri Linkov  <juri@jurta.org>
8091         * buff-menu.el (list-buffers-noselect): Compare Info file
8092         with the string "dir" to detect Info directory.
8094         * complete.el (partial-completion-mode): In lambda for
8095         `choose-completion-string-functions' use full function signature
8096         with 4 args, and move point to the end of the minibuffer only if arg
8097         `mini-p' is non-nil.
8099 2006-06-28  John Paul Wallington  <jpw@pobox.com>
8101         * ibuffer.el (ibuffer-mode): Doc fix.
8103 2006-06-28  Carsten Dominik  <dominik@science.uva.nl>
8105         * textmodes/org.el (org-context): New contexts :item-bullet,
8106         :latex-fragment, :latex-preview.
8107         (org-overlays-at, org-overlay-start, org-overlay-end):
8108         New compatibility functions.
8109         (org-inside-LaTeX-fragment-p): More accurate matching, using the
8110         exact regexp that will be used during export.
8111         (org-latex-regexps): New variable.
8112         (org-cdlatex-mode): Improve advice for `texmathp'.
8113         (turn-on-org-cdlatex): New function.
8115 2006-06-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8117         * term/mac-win.el (mac-handle-font-selection): Change keys of
8118         mac-atsu-font-table from strings to numbers.
8119         (mac-ts-caret-position): Use also when cursor-type is nil.
8120         (mac-ts-update-active-input-area): Add Mac OS Classic support.
8121         Relax condition for using overlay strings.
8122         Use mac-ts-caret-position face when cursor-type is nil.
8124 2006-06-26  Kim F. Storm  <storm@cua.dk>
8126         * help.el (view-emacs-news): Declare `res' in the right let* form.
8128 2006-06-25  Michael Albinus  <michael.albinus@gmx.de>
8130         * net/rcompile.el (remote-compile): Replace ange-ftp based
8131         implementation by Tramp functions.
8132         Suggested by Marc Abramowitz <msabramo@gmail.com>.
8134         * net/tramp.el (tramp-unload-tramp): Provide a doc string.
8136 2006-06-24  Yoshinori Koseki  <kose@meadowy.org>
8138         * international/fontset.el (setup-default-fontset): Fix a typo in
8139         the "Oriya-Akruti" registry name.
8141 2006-06-23  Lars Hansen  <larsh@soem.dk>
8143         * desktop.el (desktop-full-file-name): New function.
8144         (desktop-kill, desktop-save, desktop-remove, desktop-read)
8145         (desktop-revert): Use it.
8146         (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
8147         (desktop-after-read-hook): Add option list-buffers.
8148         (desktop-locals-to-save): Add tab-width.
8149         (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
8150         Fix docstring.
8152 2006-06-23  Carsten Dominik  <dominik@science.uva.nl>
8154         * textmodes/org.el (org-cdlatex-mode-map)
8155         (org-cdlatex-texmathp-advice-is-done): New variables.
8156         (org-cdlatex-mode): New minor mode.
8157         (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
8158         (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
8159         (org-export-with-archived-trees): New option.
8160         (org-open-file): Remove the call to `convert-standard-filename'.
8161         (org-archive-tag, org-agenda-skip-archived-trees)
8162         (org-cycle-open-archived-trees)
8163         (org-sparse-tree-open-archived-trees): New options.
8164         (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
8165         (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
8166         New functions.
8167         (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
8168         (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
8169         (org-mode-map): Add binding for `org-toggle-archive-tag'.
8170         (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
8171         Call `org-prepare-agenda-buffers'.
8172         (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
8173         (org-file-apps, org-file-apps-defaults-gnu)
8174         (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
8175         Handle remote files by forcing them to be opened in Emacs.
8177 2006-06-23  Andre Spiegel  <spiegel@gnu.org>
8179         * vc.el (vc-diff-knows-L): New variable.
8180         (vc-diff-internal): Use it to handle "diff" programs that don't
8181         understand -L.  This works automatically, no user action is necessary.
8183 2006-06-23  Daniel Brockman  <daniel@brockman.se>
8185         * net/rcirc.el (rcirc-default-user-full-name): Default to
8186         `rcirc-default-user-name' instead of `rcirc-user-name' (which no
8187         longer exists).
8188         (rcirc-process-list): Check `buffer-live-p' before attempting to
8189         switch to a buffer.
8191 2006-06-23  Ryan Yeske  <rcyeske@gmail.com>
8193         * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
8194         based on rcirc-coding-system-alist.
8196 2006-06-23  Martin Rudalics  <rudalics@gmx.at>
8198         * cus-edit.el (customize-apropos): A better error message.
8199         (top level) <debug-ignored-errors>: Extend and update the list of
8200         ignored error messages.
8202 2006-06-23  Michael Ernst  <mernst@alum.mit.edu>
8204         * complete.el (PC-do-completion): Retain capitalization of user
8205         input, when possible, even if completion-ignore-case is set.
8207 2006-06-23  Eli Zaretskii  <eliz@gnu.org>
8209         * generic-x.el (bat-generic-mode): Support .cmd files.
8211         * dos-w32.el (top level): Use find-file-not-found-functions
8212         instead of the obsolete find-file-not-found-hooks.
8214 2006-06-22  Kim F. Storm  <storm@cua.dk>
8216         * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
8217         to recognize mode name containing submodes, such as Grep/lw.
8219 2006-06-21  Kim F. Storm  <storm@cua.dk>
8221         * simple.el (line-move-1): Check for move-end-of-line instead of
8222         end-of-line when setting temporary-goal-column.
8224 2006-06-21  Miles Bader  <miles@gnu.org>
8226         * play/cookie1.el (cookie): Work properly when there's only one entry.
8228 2006-06-21  Nick Roberts  <nickrob@snap.net.nz>
8230         * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
8231         (gdb-frame-handler): Generalize frame regexp for templates.
8233 2006-06-20  Glenn Morris  <rgm@gnu.org>
8235         * calendar/appt.el (appt-display-format): Default value must be
8236         one of the customize options.
8238 2006-06-20  Dan Nicolaescu  <dann@ics.uci.edu>
8240         * term/xterm.el (terminal-init-xterm): Update key availability info.
8241         Bind C-return.
8243         * term.el (term-delete-lines, term-insert-lines): Clarify comments.
8245 2006-06-20  Chong Yidong  <cyd@stupidchicken.com>
8247         * files.el (hack-local-variables): Run `hack-local-variables-hook'
8248         whether or not a local variables list is defined.
8250         * msb.el (msb): Move `sit-for' hack here to handle both
8251         "mouse-down and drag" and "mouse-up and select" situations.
8252         (mouse-select-buffer): Move `sit-for' hack to `msb'.
8254 2006-06-20  Kenichi Handa  <handa@m17n.org>
8256         * international/characters.el (word-combining-categories):
8257         Add entries for 2-byte Han characters.
8259 2006-06-19  Richard Stallman  <rms@gnu.org>
8261         * bindings.el (mode-line-format): Save some mode line space.
8263         * files.el (find-file-noselect): Improve the question wording.
8264         (basic-save-buffer-2): Mask UMASK against 666.
8266         * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
8267         (mouse-drag-vertical-line): Call it.
8269         * cus-edit.el (customize-option, customize-option-other-window):
8270         Error if SYMBOL is nil.
8272 2006-06-19  Carsten Dominik  <dominik@science.uva.nl>
8274         * textmodes/org.el: Require noutline, also on XEmacs.
8275         (org-end-of-subtree): Return point.
8276         (org-dblock-start-re, org-dblock-end-re): New constants.
8277         (org-create-dblock, org-prepare-dblock, org-map-dblocks)
8278         (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
8279         (org-update-all-dblocks, org-find-dblock): New functions.
8280         (org-collect-clock-time-entries): New function.
8281         (org-html-handle-time-stamps): Never export CLOCK timeranges.
8282         (org-fixup-indentation): Modify to deal correctly with lines
8283         starting with TAB.  Only one argument DIFF now.
8284         (org-demote, org-promote): Call `org-fixup-indentation' with just
8285         one argument, DIFF.
8286         (org-mode): Don't mark buffer as modified when aligning tables.
8287         (org-clock-sum): Don't mark buffer modified when adding time sum
8288         properties.
8289         (org-export-as-html): Add support for a link validation function.
8290         (org-archive-all-done): New function.
8291         (org-archive-subtree): New prefix argument.  When set, archive all
8292         done subtrees in this buffer.
8293         (org-remove-clock-overlays)
8294         (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
8295         (org-inhibit-highlight-removal): New variable, for dynamic scoping.
8296         (org-put-clock-overlay): Don't swallow last headline character
8297         when displaying overlay.
8298         (org-store-link): Link to `image-mode' with just the file name.
8300 2006-06-18  Michael Kifer  <kifer@cs.stonybrook.edu>
8302         * viper-cmd.el (viper-special-read-and-insert-char):
8303         Use read-key-sequence.
8304         (viper-after-change-undo-hook): Misc enhancements.
8305         (viper-after-change-undo-hook): New hook.
8306         (viper-undo): Use viper-after-change-undo-hook.
8307         (viper-add-newline-at-eob-if-necessary): Widen before making changes.
8308         (viper-next-line-at-bol): If point is on a widget or a button, simulate
8309         clicking on that widget/button.
8311         * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
8313         * ediff-diff (ediff-test-patch-utility): Catch errors.
8314         (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
8315         (ediff-set-actual-diff-options): New function.
8316         (ediff-reset-diff-options, ediff-toggle-ignore-case):
8317         Use ediff-set-actual-diff-options.
8318         (ediff-extract-diffs): Catch errors.
8319         (ediff-whitespace): Add non-breakable space.
8320         (ediff-same-file-contents): Catch errors.
8322         * ediff-mult.el (ediff-collect-custom-diffs):
8323         Save coding-system-for-read.
8325         * ediff-vers.el (ediff-keep-tmp-versions): New variable.
8326         (ediff-vc-internal, ediff-vc-merge-internal):
8327         Use ediff-delete-version-file.
8328         (ediff-delete-version-file): New function.
8330         * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
8332         * ediff.el (ediff-directories, ediff-directory-revisions)
8333         (ediff-merge-directories, ediff-merge-directories-with-ancestor)
8334         (ediff-directories-internal, ediff-merge-directory-revisions)
8335         (ediff-merge-directory-revisions-with-ancestor)
8336         (ediff-directories3): Use read-directory-name.
8338 2006-06-18  Ralf Angeli  <angeli@caeruleus.net>
8340         * textmodes/tex-mode.el (tex-font-lock-match-suscript):
8341         Remove superfluous part of regexp for brace matching which is handled
8342         by `scan-lists' call.
8344 2006-06-16  Richard Stallman  <rms@gnu.org>
8346         * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
8348         * files.el (basic-save-buffer-2): For a new precious file,
8349         use the default modes in the return value.
8351         * facemenu.el (facemenu-color-alist): Doc fix.
8353         * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
8355 2006-06-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8357         * cus-start.el (all): Add mac-ts-script-language-on-focus.
8359         * term/mac-win.el (mac-text-encoding-ascii): New constant.
8360         (mac-utxt-to-string): Use it.
8361         (mac-ts-update-active-input-area): Use mac-ae-number.
8363 2006-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
8365         * term.el (term-handle-scroll, term-delete-lines)
8366         (term-insert-lines): Fix off by one errors.
8368 2006-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
8370         * net/tramp.el (tramp-touch): Use UTC to express time.
8372 2006-06-15  Chong Yidong  <cyd@stupidchicken.com>
8374         * mail/sendmail.el (mail-send): Search explicitly for
8375         mail-header-separator when checking for corrupted header lines.
8377 2006-06-15  Nick Roberts  <nickrob@snap.net.nz>
8379         * progmodes/gdb-ui.el (gdb-same-frame): New option.
8380         (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
8381         (gdb-init-1): Initialise them.
8382         (gdb-starting): Reset gdb-printing
8383         (gdb-starting): Save value of gud-overlay-arrow-position.
8384         (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
8385         (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
8386         Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
8387         (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
8389 2006-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8391         * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
8393 2006-06-13  Martin J. Reed  <mjreed@essex.ac.uk>  (tiny change)
8395         * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
8396         (ldap-search-internal): Keep error messages, and a regexp fix.
8398 2006-06-12  Thien-Thi Nguyen  <ttn@gnu.org>
8400         * files.el (hack-local-variables-confirm):
8401         Display string value using its printed representation.
8403 2006-06-11  Chong Yidong  <cyd@stupidchicken.com>
8405         * server.el (server-edit): No-op if no server buffers exist.
8407 2006-06-11  Robert J. Chassell  <bob@rattlesnake.com>
8409         * textmodes/page-ext.el (pages-directory-for-addresses):
8410         Including `pages-directory-address-mode' in the function results
8411         in the message "Buffer in which pages were found is deleted".
8413 2006-06-10  Carsten Dominik  <dominik@science.uva.nl>
8415         * textmodes/org.el (org-agenda-mode-map): Add bindings for
8416         clocking functions.
8418         (org-agenda-clock-in, org-check-running-clock)
8419         (org-clock-out-if-current, org-remove-clock-overlays)
8420         (org-put-clock-overlay): New functions.
8421         (org-clock-marker, org-clock-file-total-minutes)
8422         (org-clock-overlays): New variables.
8423         (org-clock-display, org-clock-sum, org-clock-cancel)
8424         (org-clock-out, org-clock-in): New commands.
8425         (org-export): New function.
8426         (org-emph-re): New constant.
8427         (org-set-emph-re, org-do-emphasis-faces): New functions.
8428         (org-emphasis-regexp-components, org-emphasis-alist): New options.
8429         (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
8430         (org-export-html-convert-emphasize): Use the configurable emphasis.
8431         (org-cleaned-string-for-export): Make multiline emphasis visible
8432         to the exporter.  New optional argument PARAMETERS.
8433         (org-export-as-html): Specify :emph-multiline parameter to
8434         `org-cleaned-string-for-export'.
8436 2006-06-10  Richard Stallman  <rms@gnu.org>
8438         * help.el (help-for-help-internal): Clean up help text.
8440 2006-06-10  Andreas Schwab  <schwab@suse.de>
8442         * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
8443         in doc string.
8445         * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
8447 2006-06-09  Karl Chen  <quarl@cs.berkeley.edu>
8449         * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
8450         spaces after the comment start.
8452 2006-06-09  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
8454         * play/pong.el (pong-init-buffer):
8455         Fill buffer with spaces instead of ^A.
8457         * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
8458         launched asynchronously, delete its process instead of being cool.
8459         (ispell-async-processp): Check for `delete-process' existence
8460         instead of `kill-process' one for consistency.
8462 2006-06-09  Nick Roberts  <nickrob@snap.net.nz>
8464         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
8465         (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
8466         in mode line at startup.
8468 2006-06-08  Kim F. Storm  <storm@cua.dk>
8470         * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
8471         (ido-init-completion-maps): Bind them to M-SPC and M-v.
8472         (ido-copy-current-file-name): Repeating C-w inserts whole file name.
8473         (ido-file-internal): Pass full file name to write-file.
8474         (ido-read-internal): Only pop stack elements automatically if they
8475         actually match an existing directory or file name.
8477 2006-06-07  Kenichi Handa  <handa@m17n.org>
8479         * international/mule.el (find-auto-coding): Don't handle the short
8480         name `char-trans'.
8482         * files.el (hack-local-variables-prop-line)
8483         (hack-local-variables): Cancel the previous change.
8485 2006-06-06  Jesper Harder  <harder@phys.au.dk>
8487         * ediff-diff.el (ediff-test-utility): Protect against file-error.
8489 2006-06-06  Chong Yidong  <cyd@stupidchicken.com>
8491         * diff-mode.el (diff-mode): Set buffer-read-only to t when
8492         diff-default-read-only is non-nil.
8493         (diff-hunk-kill, diff-file-kill, diff-split-hunk)
8494         (diff-refine-hunk): Set inhibit-read-only to t.
8496         * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
8497         modifying the *Diff* buffer.
8498         (diff-process-filter): New filter function for diff process that
8499         sets inhibit-read-only to t when modifying the *Diff* buffer.
8501 2006-06-06  Carsten Dominik  <dominik@science.uva.nl>
8503         * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
8504         insertion point and control the number of empty lines.
8505         (org-paste-subtree): Limit the number of empty lines at the end of
8506         the inserted tree.
8507         (org-agenda): Use buffer name of current file for narrowing.
8508         (org-export-as-xml): Command removed.
8509         (org-export-xml-type): Option removed.
8510         (org-mode-map): Call `org-export-as-xoxo' directly.
8511         (org-get-indentation): New optional argument LINE.
8512         (org-fix-indentation, org-remove-tabs): New functions.
8513         (org-export-as-ascii, org-ascii-level-start): Determine and apply
8514         correct indentation for headlines that are converted it items.
8515         (org-skip-comments): Remove table lines that contain narrowing
8516         cookies but no other non-empty fields.
8517         (org-set-tags): Allow groups of mutually exclusive tags.
8518         (org-cmp-time): Sort 24:21 before items without time.
8519         (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
8520         (org-open-at-point): Require double colon also for numbers.
8522 2006-06-06  Kim F. Storm  <storm@cua.dk>
8524         * ido.el (ido-default-file-method, ido-default-buffer-method):
8525         Make choice values consistent with corresponding command names.
8526         (ido-visit-buffer): Update accordingly.  Default to selected-window.
8528 2006-06-06  Nick Roberts  <nickrob@snap.net.nz>
8530         * progmodes/gud.el (gud-running): Fix doc string.
8531         (gud-menu-map): Use :visible instead fo :enable for debugger test.
8532         (gud-tooltip-modes): Add python-mode.
8533         (gud-tooltip-print-command): Add pdb.  Remove perldb.
8535 2006-06-05  Eli Zaretskii  <eliz@gnu.org>
8537         * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
8538         Quote $(EMACS).
8540 2006-06-05  Richard Stallman  <rms@gnu.org>
8542         * faces.el (defined-colors): Doc fix.
8544 2006-06-05  Thien-Thi Nguyen  <ttn@gnu.org>
8546         * vc.el (vc-process-filter): Inhibit undo info collection around
8547         call to insert.
8548         (vc-setup-buffer): Likewise for call to erase-buffer.
8549         (vc-do-command): Likewise for call to process-file.
8551 2006-06-05  Nick Roberts  <nickrob@snap.net.nz>
8553         * progmodes/gud.el (gud-menu-map): Use a conditional help echo
8554         for gud-go.
8555         (gud-common-init): Other debuggers may trigger error.
8557 2006-06-05  Kenichi Handa  <handa@m17n.org>
8559         * international/mule.el (find-auto-coding):
8560         Handle enable-character-translation in file header.
8562 2006-06-04  Kim F. Storm  <storm@cua.dk>
8564         * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
8565         (authors-fixed-entries): Fix spelling.
8566         (authors-canonical-file-name): Don't report error for wildcards.
8568         * help.el (view-emacs-news): Rewrite to support new NEWS,
8569         NEWS.major, and NEWS.1-17 file naming.  Add more intelligence,
8570         e.g. version 10 matches 1.10, and don't be confused by version 1.1
8571         being a prefix of 1.12 (etc).  A numeric prefix arg also works.
8573 2006-06-03  Vivek Dasmohapatra  <vivek@etla.org>
8575         * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
8576         exec constructs like `foo bar`.
8577         (sh-quoted-subshell): New helper function to search for a possibly
8578         nested subshell (like `` or $()) within a "" quoted string.
8579         (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
8580         (sh-apply-quoted-subshell): Flag quote characters inside a
8581         subshell, which is itself already in a quoted region, as
8582         punctuation, since this is the closest to what they actually are.
8583         (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
8584         sh-apply-quoted-subshell.
8585         (sh-font-lock-syntactic-face-function): Apply the new face for
8586         text inside `` instead of the old font-lock-string-face.
8588 2006-06-03  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8590         * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
8591         (mac-ae-number, mac-ae-frame, mac-ae-script-language)
8592         (mac-bytes-to-text-range, mac-ae-text-range-array)
8593         (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
8594         (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
8595         (mac-ts-unicode-for-key-event): New functions.
8596         (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
8597         (mac-handle-font-selection): Use mac-ae-number.
8598         (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
8599         New variables.
8600         (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
8601         (mac-ts-converted-text, mac-ts-selected-converted-text)
8602         (mac-ts-block-fill-text, mac-ts-outline-text)
8603         (mac-ts-selected-text, mac-ts-no-hilite): New faces.
8604         (mac-ts-hilite-style-faces): New constant.
8605         (mac-apple-event-map): Bind text input events.
8606         (mac-dispatch-apple-event): Use command-execute instead of
8607         call-interactively.
8608         (global-map): Don't bind mac-apple-event.
8609         (special-event-map): Bind mac-apple-event.
8611 2006-06-02  Eli Zaretskii  <eliz@gnu.org>
8613         * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
8614         file name.
8615         (emacs): Enclose the value of $(EMACS) in quotes.
8617 2006-06-02  Juri Linkov  <juri@jurta.org>
8619         * international/mule.el (sgml-html-meta-auto-coding-function):
8620         Remove the condition `(search-forward "<html" size t)'.
8621         Replace `\"' with `[\"']?' in `re-search-forward'.
8623 2006-06-02  Kenichi Handa  <handa@m17n.org>
8625         * files.el (hack-local-variables-prop-line): Ignore `char-trans'
8626         as well as `coding'.
8627         (hack-local-variables): Likewise.
8629         * international/mule.el (enable-character-translation):
8630         Put permanent-local and safe-local-variable properties.
8631         (find-auto-coding): Handle char-trans: tag.
8633 2006-06-02  Juri Linkov  <juri@jurta.org>
8635         * international/mule.el (sgml-html-meta-auto-coding-function):
8636         Limit the search by the end of the HTML header (if any).
8638 2006-06-01  Richard Stallman  <rms@gnu.org>
8640         * subr.el (with-current-buffer): Doc fix.
8642 2006-06-02  Masatake YAMATO  <jet@gyve.org>
8644         * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
8645         Almost rewrite.  Underlines over all lines of gcov output are too
8646         uncomfortable to read.  Suggested by Dan Nicolaescu.
8648 2006-06-01  Luc Teirlinck  <teirllm@auburn.edu>
8650         * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
8652         * shell.el (shell-mode): Use shell-mode-map in docstring.
8654         * comint.el (comint-send-input): Do not add help-echo and
8655         mouse-face to input if `comint-use-prompt-regexp' is non-nil.
8657 2006-06-01  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8659         * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
8661 2006-06-01  Nick Roberts  <nickrob@snap.net.nz>
8663         * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
8664         (gdb-stopped, gdb-info-stack-custom): If there is no source info
8665         look up the stack and pop up GUD buffer if necessary.
8666         (gdb-frames-select): Remove redundant call to gud-display-frame.
8667         (gdb-info-threads-custom): Keep point at start of buffer.
8668         (gdb-find-file-hook): Make it work for pre-GDB 6.4.
8670 2006-05-31  Juri Linkov  <juri@jurta.org>
8672         * replace.el (query-replace-read-from, query-replace-read-to):
8673         Bind `history-add-new-input' to nil.  Call `add-to-history'.
8675 2006-05-31  Takaaki Ota  <Takaaki.Ota@am.sony.com>
8677         * textmodes/table.el: Convert all HTML tags to lower case for
8678         XHTML compatibility.
8680 2006-05-31  Masatake YAMATO  <jet@gyve.org>
8682         * progmodes/compile.el:
8683         (compilation-error-regexp-alist-alist::gcov-called-line):
8684         Don't put face on `-' lines in gcov file.  Suggested by Dan Nicolaescu.
8686 2006-05-31  Nick Roberts  <nickrob@snap.net.nz>
8688         * progmodes/gud.el (gud-query-cmdline, gud-common-init):
8689         Revert inadvertent changes made with last commit.
8691 2006-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
8693         * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
8694         New functions.
8696         * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
8698 2006-05-30  Carsten Dominik  <dominik@science.uva.nl>
8700         * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
8701         only matches in the right place.
8702         (org-upcoming-deadline): New face.
8703         (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
8704         (org-export-ascii-underline): Rename constant `org-ascii-underline'
8705         and make it an option.
8706         (org-export-ascii-bullets): New option.
8707         (org-export-as-html): Many changes to emit valid XHTML.
8708         (org-par-open): New variable.
8709         (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
8710         (org-html-do-expand, org-section-number): Fix case in `replace-match'.
8711         (org-timeline): Pass `org-timeline-show-empty-dates' to
8712         `org-get-all-dates'.  Interpret empty dates returned by
8713         `org-get-all-dates'.
8714         (org-get-all-dates): New argument EMPTY.  Add dates without
8715         entries to the list, mark large ranges of empty dates.
8716         (org-point-in-group, org-context): New functions.
8718 2006-05-30  Nick Roberts  <nickrob@snap.net.nz>
8720         * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
8722         * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
8723         C-mouse-1.  Move gdb-mouse-until to mouse-3, gdb-mouse-jump
8724         to C-mouse-3 (for 2 button mice).
8725         (gdb-send): Do the right thing for C-d.
8727         * speedbar.el (speedbar-detach): Delete.
8728         (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
8729         it breaks things.
8730         (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
8732 2006-05-30  Daniel Pfeiffer  <occitan@esperanto.org>
8734         * files.el (auto-mode-alist): Add makepp suffix and optional mk on
8735         Makeppfile.
8737         * progmodes/compile.el (compilation-error-regexp-alist-alist):
8738         Add makepp diagnostic.
8740 2006-05-29  Richard Stallman  <rms@gnu.org>
8742         * window.el (fit-window-to-buffer): Doc fix.
8744         * help.el (temp-buffer-max-height): Doc fix.
8746         * subr.el (with-current-buffer): Doc fix.
8748 2006-05-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8750         * term/x-win.el: Bind F10 to menu-bar-start if available.
8752 2006-05-28  Dan Nicolaescu  <dann@ics.uci.edu>
8754         * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
8755         uses with a simple test.
8756         (term-set-escape-char, term-mode, term-check-kill-echo-list)
8757         (term-send-raw-string, term-send-raw, term-mouse-paste)
8758         (term-char-mode, term-line-mode, term-exec, term-sentinel)
8759         (term-handle-exit, term-read-input-ring)
8760         (term-previous-matching-input-string)
8761         (term-previous-matching-input-string-position)
8762         (term-previous-matching-input-from-input)
8763         (term-replace-by-expanded-history, term-send-input)
8764         (term-skip-prompt, term-bol, term-send-invisible)
8765         (term-kill-input, term-delchar-or-maybe-eof)
8766         (term-backward-matching-input, term-check-source)
8767         (term-proc-query, term-emulate-terminal)
8768         (term-handle-colors-array, term-process-pager, term-pager-line)
8769         (term-pager-bob, term-unwrap-line, term-word)
8770         (term-dynamic-complete-filename)
8771         (term-dynamic-complete-as-filename)
8772         (term-dynamic-simple-complete): Replace one arm ifs with whens or
8773         unlesses.
8775 2006-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8777         * files.el (hack-one-local-variable-eval-safep): Don't burp if used
8778         during bootstrapping.
8780         * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
8781         Basically undo the change of 2006-05-26: use extra arguments instead of
8782         dynamic scoping.
8783         (ewoc-locate): Remove unused var `footer'.
8785 2006-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8787         * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
8789         * emacs-lisp/autoload.el (no-update-autoloads): Declare.
8790         (generate-file-autoloads): Obey it.  Return whether autoloads were
8791         added at point or not.
8792         (update-file-autoloads): Use this new return value.
8793         Remove redundant test for the presence of an autoload cookie.
8795         * emacs-lisp/autoload.el (autoload-find-file): New fun.
8796         This one calls hack-local-variables.
8797         (generate-file-autoloads, update-file-autoloads): Use it.
8799         * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
8800         (bibtex-sort-entry-class): Add safe-local-variable predicate.
8801         (bibtex-sort-entry-class-alist): Don't set the global value.
8802         (bibtex-init-sort-entry-class-alist): New fun.
8803         (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
8804         bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
8805         of bibtex-init-sort-entry-class.
8807 2006-05-28  Richard Stallman  <rms@gnu.org>
8809         * subr.el (load-history-regexp): If FILE is relative, insist
8810         entire last name component must match it.
8811         (load-history-filename-element, load-history-regexp): Doc fixes.
8813 2006-05-29  Kim F. Storm  <storm@cua.dk>
8815         * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
8816         `pos' and `raw-data' for clarity, as eval forms may access these.
8818 2006-05-28  Kim F. Storm  <storm@cua.dk>
8820         * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
8822 2006-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8824         * progmodes/make-mode.el (makefile-browser-map)
8825         (makefile-mode-syntax-table): Move initialization inside declaration.
8826         (makefile-fill-paragraph): Use the default comment-filling code.
8828 2006-05-28  Chong Yidong  <cyd@stupidchicken.com>
8830         * replace.el (query-replace-defaults): New variable.
8831         (query-replace-read-from): Use `query-replace-defaults' for
8832         default value, instead of history list.
8833         (query-replace-read-to): Update `query-replace-defaults'.
8835 2006-05-27  Chong Yidong  <cyd@stupidchicken.com>
8837         * msb.el (mouse-select-buffer): Minor fix to make popup menu work
8838         with no X toolkit.
8840 2006-05-28  Nick Roberts  <nickrob@snap.net.nz>
8842         * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
8843         (tumme-show-all-from-dir): Add autoload.
8845 2006-05-27  Mathias Dahl  <mathias.dahl@gmail.com>
8847         * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
8848         (tumme-remove-tag): Fix bug.
8850 2006-05-27  Thien-Thi Nguyen  <ttn@gnu.org>
8852         * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
8853         FOOTER args.  Update unique caller.
8854         (ewoc-delete): Compute last node once before looping.
8855         (ewoc--node-branch): Merge into unique caller.
8856         (ewoc--node): Don't define constructor make-ewoc--node for this
8857         structure.
8858         (ewoc): Add member `hf-pp' to this structure.
8859         (ewoc--wrap): New func.
8860         (ewoc-create): Take additional arg NOSEP.  If nil, wrap node and
8861         header/footer pretty-printers.  Save header/footer pretty-printer.
8862         (ewoc-set-hf): Use ewoc's header/footer pretty-printer.  *
8864         * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
8866 2006-05-27  Mathias Dahl  <mathias.dahl@gmail.com>
8868         * dired.el (dired-mode-map): Change `tumme-tag-remove' to
8869         `tumme-delete-tag'.  Rename `Remove Image Tag' to `Delete Image
8870         Tag'.  Change "Compare directories..." to "Change Directories...".
8871         Move tumme commands to Operate, Regexp and Immediate menus.
8872         Change "Add Comment" to "Add Image Comment".  Change "Add Image
8873         Tag" to "Add Image Tags".
8875         * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
8876         (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
8877         `tumme-delete-tag'.
8879 2006-05-26  Luc Teirlinck  <teirllm@auburn.edu>
8881         * shell.el (shell-mode): Call shell-dirtrack-mode after
8882         list-buffers-directory is made a local variable, to avoid setting
8883         the default value.
8885 2006-05-26  Kevin Ryde  <user42@zip.com.au>
8887         * info.el (Info-index-next): Use where-is-internal to report
8888         actual binding of Info-index-next, rather than hard-coded `,'.
8890 2006-05-26  Eli Zaretskii  <eliz@gnu.org>
8892         * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
8893         and "Find Command in Manual" to here.
8895         * buff-menu.el (list-buffers-noselect): For Info buffers, use
8896         Info-current-file as the file name.
8898 2006-05-26  Jonathan Yavner  <jyavner@member.fsf.org>
8900         * ses.el (defadvice undo-more): Delete this defadvice.  The undo
8901         overrides will now be done a different way.
8902         (ses-set-parameter): Reapply this function for undo.
8903         (ses-set-header-row): Reconstruct header row during undo.
8904         (ses-widen): New function.
8905         (ses-goto-data, ses-reconstruct-all): Use new function.
8906         (ses-command-hook): Widen buffer during undo, before unupdating
8907         the cells.
8908         (ses-insert-row, ses-delete-row): Widen buffer during undo.
8909         (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
8910         (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
8911         formula hasn't been executed yet.
8913 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
8915         * comint.el (comint-kill-whole-line): Rename arg to count.
8916         Fix doc string.
8918 2006-05-26  Chong Yidong  <cyd@stupidchicken.com>
8920         * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
8921         to copy-file.
8923 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
8925         * simple.el (toggle-truncate-lines): Make arg optional for
8926         backward compatibility.
8928 2006-05-26  Thien-Thi Nguyen  <ttn@gnu.org>
8930         * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
8931         (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
8932         DLL arg.  Instead, use ewoc--current-dll.  Update all callers.
8933         (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
8934         (ewoc--adjust): Use ewoc--current-dll.
8935         (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
8937 2006-05-26  Carsten Dominik  <dominik@science.uva.nl>
8939         * textmodes/org.el (org-next-item, org-previous-item): Emit more
8940         compact error message.
8941         (org-tags-view): Refresh category table in each file.
8942         (org-table-justify-field-maybe): Remove superfluous arguments to
8943         `format'.
8944         (org-export-as-html): Insert "<p>" before postamble.
8945         (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
8947 2006-05-26  Kenichi Handa  <handa@m17n.org>
8949         * textmodes/po.el (po-find-charset): Pay attention to the case
8950         FILENAME is a cons (NAME . BUFFER).
8951         (po-find-file-coding-system-guts): Likewise.
8953         * arc-mode.el (archive-set-buffer-as-visiting-file):
8954         Call find-operation-coding-system with (FILENAME . BUFFER).
8956         * tar-mode.el (tar-extract): Call find-operation-coding-system
8957         with (FILENAME . BUFFER).
8959         * international/mule.el (decode-coding-inserted-region):
8960         Call find-operation-coding-system with (FILENAME . BUFFER).
8962 2006-05-25  Chong Yidong  <cyd@stupidchicken.com>
8964         * image-mode.el (image-toggle-display): Use buffer contents to
8965         generate image for a remote file.
8967 2006-05-25  Juri Linkov  <juri@jurta.org>
8969         * replace.el (query-replace-read-from, query-replace-read-to):
8970         Remove 8th arg KEEP-ALL in read-from-minibuffer.
8972 2006-05-25  Rajesh Vaidheeswarran  <rv@gnu.org>
8974         * whitespace.el (whitespace-cleanup): Change to cleanup
8975         region if one is active.
8976         * whitespace.el (whitespace-cleanup-internal): New internal method.
8978 2006-05-25  Mathias Dahl  <mathias.dahl@gmail.com>
8980         * dired.el (dired-mode-map): Add help-echo strings to tumme
8981         commands.  Bind `tumme-dired-display-image' to C-t i.
8983         * tumme.el (tumme-display-image): Change documentation string slightly.
8984         (tumme-dired-display-image): Add call to `display-buffer'.
8986 2006-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
8988         * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
8989         Signal error if RAW-DATA is a multibyte string.
8991 2006-05-24  Richard Stallman  <rms@gnu.org>
8993         * subr.el (with-local-quit): When handling `quit' signal,
8994         make a chance for quit-flag to cause a quit.
8996         * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
8997         (ad-disable-advice): Add autoloads.
8999         * subr.el (read-passwd): Copy PROMPT before changing its properties.
9001 2006-05-25  Mathias Dahl  <mathias.dahl@gmail.com>
9003         * dired.el (dired-mode-map): Change menu items for tumme as per
9004         suggestions in emacs-devel.
9006 2006-05-25  Nick Roberts  <nickrob@snap.net.nz>
9008         * dired.el (dired-mode-map): Fix breakage.
9010 2006-05-25  Mathias Dahl  <mathias.dahl@gmail.com>
9012         * tumme.el (tumme-display-dired-image): Rename to...
9013         (tumme-dired-display-image): ...this.
9014         (tumme-track-movement): Change default value to t.
9015         (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
9016         used from `tumme-next-line-and-display' and similar commands.
9018         * dired.el (dired-mode-map): Add Thumbnail submenu under the
9019         Immediate menu.  Add some tumme commands there.
9021 2006-05-24  Luc Teirlinck  <teirllm@auburn.edu>
9023         * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
9025 2006-05-24  Chong Yidong  <cyd@mit.edu>
9027         * menu-bar.el, international/mule-cmds.el: Remove tooltips for
9028         menu entries that open submenus.
9030 2006-05-24  Alan Mackenzie  <acm@muc.de>
9032         * startup.el (command-line): For names of preloaded files, don't
9033         append ".elc" (now done in Fload), and call file-truename on the
9034         lisp directory.
9036         * subr.el (eval-after-load): Fix the doc-string.  Allow FILE to
9037         match ANY loaded file with the right name, not just those in
9038         load-path.  Put a regexp matching the file name into
9039         after-load-alist, rather than the name itself.
9041         * subr.el (load-history-regexp, load-history-filename-element)
9042         (do-after-load-evaluation): New functions.
9044         * international/mule.el (load-with-code-conversion): Do the
9045         eval-after-load stuff by calling do-after-load-evaluation.
9047 2006-05-25  Nick Roberts  <nickrob@snap.net.nz>
9049         * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
9050         has not been killed.
9052 2006-05-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9054         * term/mac-win.el: Set idle timer to clean up expired Apple events.
9055         (mac-ae-get-url): Redispatch Apple event on unknown scheme.
9056         (mac-dispatch-apple-event): Resume Apple event if it is suspended.
9057         Optionally set error message in reply.
9059 2006-05-24  Carsten Dominik  <dominik@science.uva.nl>
9061         * textmodes/org.el (org-open-at-point): Use renamed variable
9062         `org-confirm-shell-link-function'.
9063         (org-confirm-shell-link-function): Rename from
9064         `org-confirm-shell-links'.
9065         (org-export-directory): New function.
9066         (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
9067         (org-export-icalendar): Use `org-export-directory'.
9068         (org-indent-item): Keep cursor position.
9069         (org-link-file-path-type): New option.
9070         (org-export-as-html): Fix bug with plain lists starting in
9071         column 0.
9072         (org-export-as-html): Remove deadline formatting, this happens
9073         now already in `org-html-handle-time-stamps'.
9074         (org-export-html-style): Deadline class removed.
9075         (org-insert-labeled-timestamps-at-point): New option.
9076         (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
9077         of `hide-sublevels 1', in case the first headline is not level 1.
9078         (org-overview, org-content): New fuction.
9079         (org-cycle-global-status, org-cycle-subtree-status): Make these
9080         variables buffer-local.
9081         (org-global-cycle): New command.
9082         (org-shifttab): Use `org-global-cycle'.
9083         (org-insert-heading, org-insert-item): Go to end of new
9084         headline/item after creating it.
9085         (org-export-visible): Rename from `org-export-copy-visible'.
9086         Now creates a temporary org-file and applies an exporting command
9087         to it.
9088         (org-table-eval-formula): Support for lisp forms.
9089         (org-agenda-todo-ignore-scheduled): New option.
9090         (org-agenda-get-todos): Use new option
9091         `org-agenda-todo-ignore-scheduled'.
9092         (org-export-html-inline-images): New value `maybe'.
9093         (org-export-as-html): Inlining of images dependent on link description.
9094         (org-archive-subtree): Check for end-of-buffer before trying
9095         `kill-line'.
9096         (org-agenda-follow-mode): New option.
9097         (org-export-with-tags, org-export-with-timestamps): New options.
9098         (org-html-handle-time-stamps): New function.
9099         (org-keyword-time-regexp): New variable.
9100         (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
9101         (org-agenda-todo-list-sublevels): New option.
9102         (org-html-level-start): When TITLE is nil, just close all levels.
9103         (org-parse-key-lines, org-parse-export-options): Remove functions,
9104         replaced by `org-infile-export-plist'.
9105         (org-combine-plists, org-infile-export-plist)
9106         (org-default-export-plist): New functions.
9107         (org-export-html-preamble, org-export-html-postamble)
9108         (org-export-html-auto-preamble, org-export-html-auto-postamble):
9109         New variables.
9110         (org-export-publishing-directory): New option.
9111         (org-export-as-html, org-export-as-ascii): Use the new property
9112         lists for settings.
9113         (org-export-copy-visible, org-export-as-xoxo):
9114         Respect `org-export-publishing-directory'.
9115         (org-link-search, org-store-link, org-file-apps): Support for
9116         links to BibTeX database entries..
9117         (org-get-current-options, org-set-regexps-and-options):
9118         Implement logging as a startup option.
9119         (org-store-link): Make sure context string is never empty
9120         (org-insert-link): Use relative path when possible.
9121         (org-at-item-checklet-p): New function.
9122         (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
9123         (org-shiftmetaup, org-shiftmetadown, org-metaleft)
9124         (org-metaright, org-metaup, org-metadown, org-shiftup)
9125         (org-shiftdown, org-shiftright, org-shiftleft)
9126         (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
9127         Dispatch using `call-interactively'.
9128         (org-call-with-arg): New defsubst.
9129         (org-tag-alist, org-use-fast-tag-selection): New options.
9130         (org-complete): Use `org-tag-alist'.
9131         (org-fast-tag-insert, org-fast-tag-selection): New functions.
9132         (org-next-item, org-previous-item): New commands.
9133         (org-beginning-of-item, org-end-of-item): Add (interactive) to
9134         make command.
9135         (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
9137 2006-05-23  Thien-Thi Nguyen  <ttn@gnu.org>
9139         * emacs-lisp/ewoc.el (ewoc-delete): New function.
9140         (ewoc-filter): Use `ewoc-delete'.
9142         * emacs-lisp/bindat.el (bindat-pack): Doc fix.
9144 2006-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9146         * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
9147         Signal more user-friendly error messages.
9149         * complete.el (PC-do-completion): Undo the addition of implicit
9150         wildcards if they did not lead to finding any match.
9151         (read-file-name-internal): Don't add the final > if the completion is
9152         not finished.
9154 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
9156         * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
9157         Quote safe-local-variable predicate.
9159 2006-05-22  Thien-Thi Nguyen  <ttn@gnu.org>
9161         * emacs-lisp/ewoc.el (ewoc-set-data): New function.
9163 2006-05-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9165         * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
9167         * progmodes/make-mode.el (makefile-special-targets-list)
9168         (makefile-macro-table, makefile-target-table): Mark as risky.
9169         (makefile-query-one-target-method): Make this the alias for the
9170         following variable.
9171         (makefile-query-one-target-method-function): Make this the real name.
9173         * textmodes/artist.el (artist-text-renderer): Make this the alias
9174         for the following variable.
9175         (artist-text-renderer-function): Make this the real name.
9177         * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
9178         the alias for the following variable.
9179         (flyspell-generic-check-word-predicate): Make this the real name.
9181         * textmodes/ispell.el (ispell-format-word): Make this the alias
9182         for the following variable.
9183         (ispell-format-word-function): Make this the real name.
9184         (ispell-message-text-end): Mark as risky.
9186         * skeleton.el (skeleton-transformation, skeleton-filter)
9187         (skeleton-pair-filter): Make these the aliases for the following
9188         variables.
9189         (skeleton-transformation-function, skeleton-filter-function)
9190         (skeleton-pair-filter-function): Make these the real names.
9192         * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
9193         and skeleton-pair-filter-function.
9195         * textmodes/sgml-mode.el (sgml-transformation): Make this the
9196         alias for the following variable.
9197         (sgml-transformation-function): Make this the real name.
9198         (sgml-tag-alist): Mark as risky.
9200 2006-05-21  Richard Stallman  <rms@gnu.org>
9202         * simple.el (kill-region): Interactively, pass point, then mark.
9204 2006-05-22  Thien-Thi Nguyen  <ttn@gnu.org>
9206         * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
9208 2006-05-21  Romain Francoise  <romain@orebokech.com>
9210         * dired-x.el (dired-mode-map): Don't bind M-g.
9212 2006-05-20  Richard Stallman  <rms@gnu.org>
9214         * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
9215         (dired-goto-file): Doc fix.
9217 2006-05-21  Kim F. Storm  <storm@cua.dk>
9219         * emulation/cua-base.el: Mention customizing cua-mode as alternative
9220         way to enable built-in cua-mode if user loads older CUA-mode package.
9222         * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
9223         if default-filename is specified.
9225 2006-05-20  Eli Zaretskii  <eliz@gnu.org>
9227         * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
9229         * info.el (info-apropos): Make sure current-file and current-node
9230         have non-nil values.  Speed up by using add-to-list instead of
9231         manual consing.
9233 2006-05-20  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
9235         * progmodes/make-mode.el (makefile-mode): Doc fix.
9237 2006-05-20  Eli Zaretskii  <eliz@gnu.org>
9239         * dired-aux.el (dired-do-shell-command): Doc fix.
9241 2006-05-20  Kevin Ryde  <user42@zip.com.au>
9243         * info-xref.el (info-xref-check-all-custom): Skip :tag part of
9244         ``(custom-manual :tag "Foo" "(foo)Node")''.
9246 2006-05-20  Karl Chen  <quarl@cs.berkeley.edu>
9248         * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
9249         value is an integer.
9251 2006-05-20  Eli Zaretskii  <eliz@gnu.org>
9253         * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
9254         "format".
9255         (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
9257 2006-05-20  Martin Rudalics  <rudalics@gmx.at>
9259         * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
9260         a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
9262 2006-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9264         * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
9265         regexp for keywords.
9267 2006-05-20  Masayuki FUJII  <boochang@m4.kcn.ne.jp>  (tiny change)
9269         * dnd.el (dnd-get-local-file-name): Specify LITERAL in
9270         replace-regexp-in-string.
9272         * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
9273         encode, and escape file name on conversion to URL.
9275 2006-05-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9277         * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
9278         Don't unescape URL.
9279         (dnd-get-local-file-name): Unescape URL on conversion to file name.
9281         * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
9282         on conversion to URLs.
9284         * net/browse-url.el (browse-url-file-url): Encode file name on
9285         conversion to URL.
9287         * term/mac-win.el (mac-ae-open-documents): Escape file name on
9288         conversion to URL.
9290 2006-05-19  Eli Zaretskii  <eliz@gnu.org>
9292         * progmodes/cc-styles.el (c-style-alist): Doc fix.
9294 2006-05-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9296         * term/mac-win.el (mac-bytes-to-digits): Remove function.
9297         (mac-handle-toolbar-switch-mode): Use coercion instead of it.
9299 2006-05-19  Glenn Morris  <rgm@gnu.org>
9301         * calendar/diary-lib.el (diary-bahai-date)
9302         (list-bahai-diary-entries, mark-bahai-diary-entries)
9303         (mark-bahai-calendar-date-pattern): Not interactive.
9304         (add-to-diary-list): New optional arg LITERAL.  Doc fix.
9305         (diary-entries-list): Change format of 4th element in each entry.
9306         (diary-list-entries): Use add-to-diary-list.
9307         (diary-goto-entry): Handle the case where the buffer visiting the
9308         diary has been killed.
9309         (fancy-diary-display): Add 'locator to button rather than 'marker.
9310         Only generate temp-face when there are marks to apply.
9311         (list-sexp-diary-entries): Pass literal to add-to-diary-list.
9312         (diary-fancy-date-pattern): New variable.
9313         (diary-time-regexp): Doc fix.
9314         (diary-anniversary, diary-time): New faces.
9315         (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
9316         diary-time-regexp.  Add font-lock-multiline property where needed.
9317         Use new faces diary-anniversary and diary-time.
9318         (diary-fancy-font-lock-fontify-region-function): New function, to
9319         handle multiline font-lock pattern in fancy diary.
9320         (fancy-diary-display-mode): Set font-lock-fontify-region-function.
9321         (diary-font-lock-keywords): Tweak time regexp.  Use new face
9322         diary-time.
9324 2006-05-19  Alexander Shopov  <ash@contact.bg>  (tiny change)
9326         * international/code-pages.el (mik): Table corrected.
9328 2006-05-18  Kim F. Storm  <storm@cua.dk>
9330         * progmodes/grep.el (grep-find): Don't check grep-find-command
9331         before running command (breaks non-interactive usage).
9333 2006-05-18  Thien-Thi Nguyen  <ttn@gnu.org>
9335         * emacs-lisp/ewoc.el (ewoc--adjust): New func.
9336         (ewoc--insert-new-node): Don't insert trailing newline.
9337         Instead, adjust successor nodes's start markers.
9338         (ewoc--refresh-node): Delete all text from current node's start
9339         marker to the next one's; adjust successor nodes's start markers.
9340         (ewoc--create): Doc fixes.
9341         (ewoc--refresh): Don't insert newline.
9342         (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
9343         * pcvs.el (cvs-make-cvs-buffer):
9344         Specify extra newline for ewoc's header and footer.
9345         (cvs-update-header): Update initial header recognition.
9346         Append newline to final header and footer values.
9347         * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
9349 2006-05-17  Richard Stallman  <rms@gnu.org>
9351         * files.el (file-name-extension): Doc fix.
9353 2006-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9355         * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
9356         we can explicitly enable/disable rather than toggle.
9357         (shell-mode): Use it.
9358         (shell-cd): Don't try to reproduce what `cd' does.
9360 2006-05-17  Kim F. Storm  <storm@cua.dk>
9362         * ido.el (ido-read-internal): Use only nondirectory part of
9363         default item.
9365 2006-05-17  Thien-Thi Nguyen  <ttn@gnu.org>
9367         * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
9368         (ewoc-nth): Doc fix.
9370         (ewoc-map, ewoc-invalidate): Compute PP before looping.
9372 2006-05-16  Eli Zaretskii  <eliz@gnu.org>
9374         * international/mule.el (auto-coding-alist): Add .lha to files
9375         read with no-conversion.
9377         * files.el (auto-mode-alist): Add .lha files to archive file
9378         extensions.
9380         * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
9381         Convert csize to integer when computing offsets within the
9382         compressed archive file.
9384 2006-05-16  Kim F. Storm  <storm@cua.dk>
9386         * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
9387         with read-from-minibuffer.
9389 2006-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
9391         * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
9392         (byte-compile-warnings): Fix safe-local-variable property.
9394 2006-05-16  Ken Manheimer  <ken.manheimer@gmail.com>
9396         * allout.el (allout-show-bodies, allout-old-style-prefixes)
9397         (allout-stylish-prefixes, allout-numbered-bullet)
9398         (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
9399         predicates to qualify `safe-local-variable' property, when
9400         available, else use equivalent lambda.
9401         (allout-current-topic-collapsed-p): Do the right thing regarding
9402         trailing blank lines.
9404 2006-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9406         * server.el (server-start): Only create a directory if needed.
9407         (server-edit, server-unload-hook): server-start => server-mode.
9408         (kill-emacs-hook): Cleanup upon exit.
9410 2006-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9412         * hexl.el (hexlify-buffer): Encode process arguments manually.
9414 2006-05-16  Nick Roberts  <nickrob@snap.net.nz>
9416         * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
9417         call to gdb-tooltip-print.
9419 2006-05-15  Romain Francoise  <romain@orebokech.com>
9421         * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
9422         systems, default to "tar" since those systems probably have GNU tar.
9424 2006-05-14  Lars Hansen  <larsh@soem.dk>
9426         * desktop.el (desktop-missing-file-warning): Fix docstring.
9427         (desktop-restore-file-buffer): Correct question asked on missing file.
9429 2006-05-14  Kim F. Storm  <storm@cua.dk>
9431         * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
9432         Add CUA move property.
9434 2006-05-13  Chong Yidong  <cyd@stupidchicken.com>
9436         * custom.el (custom-push-theme): Load the variable before checking
9437         its `standard-value'.
9439 2006-05-13  Lars Hansen  <larsh@soem.dk>
9441         * desktop.el (desktop-save): Use with-temp-buffer.
9443 2006-05-12  Glenn Morris  <rgm@gnu.org>
9445         * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
9446         * calendar/calendar.el (calendar-mode-map):
9447         * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
9448         * calendar/appt.el (appt-check, appt-make-list): Refer to
9449         diary-view-entries, diary-list-entries, diary-show-all-entries
9450         rather than obsolete aliases.
9452 2006-05-12  Chong Yidong  <cyd@stupidchicken.com>
9454         * simple.el (line-move-finish): Avoid calling point motion hooks
9455         while processing intangibility.
9457 2006-05-12  Dan Nicolaescu  <dann@ics.uci.edu>
9459         * term/xterm.el (terminal-init-xterm): Fix typo.
9461 2006-05-12  Ken Manheimer  <ken.manheimer@gmail.com>
9463         * allout.el (allout-view-change-hook): Mark as being deprecated,
9464         to be replaced by `allout-exposure-change-hook'.
9465         (allout-exposure-change-hook): New, replacing
9466         `allout-view-change-hook'.
9467         (allout-flag-region): Run new hook `allout-exposure-change-hook',
9468         in addition to `allout-view-change-hook'.
9469         (allout-show-bodies, allout-old-style-prefixes)
9470         (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
9471         lambda forms to prevent their showing up in variable help
9472         presentations as inscrutable byte-compiled code.
9473         (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
9474         Use string-or-null-p to qualify safe-local-variable values.
9475         (allout-reindent-bodies): Use memq to qualify matches against
9476         valid safe-local-variable values.  Also, quote the lambda as above.
9477         (allout-use-mode-specific-leader): Add missing candidate-value
9478         symbols, use memq, and quote the lambda.
9479         (allout-overlay-interior-modification-handler): Remove unused
9480         variables `msg' and 'opened'.
9481         (allout-hidden-p): Constrain invisibility consideration to allout's
9482         invisibility spec, disregarding invisibility for other reasons.
9484 2006-05-12  Reiner Steib  <Reiner.Steib@gmx.de>
9486         * files.el (version-control): Correct safe values.
9488 2006-05-12  Thien-Thi Nguyen  <ttn@gnu.org>
9490         * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
9492         (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
9493         (ewoc--insert-new-node): New func.
9494         Update callers of deleted funcs to use it, instead.
9496 2006-05-11  Glenn Morris  <rgm@gnu.org>
9498         * calendar/calendar.el (diary-show-all-entries): Do not refer to
9499         obsolete alias `show-all-diary-entries'.
9500         (make-diary-entry): Not interactive.
9501         (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
9502         (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
9503         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
9504         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
9505         (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
9506         (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
9508 2006-05-11  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
9510         * calendar/calendar.el (calendar-french-date-string)
9511         (calendar-mayan-date-string, calendar-chinese-date-string)
9512         (calendar-astro-date-string, calendar-iso-date-string)
9513         (calendar-islamic-date-string, calendar-bahai-date-string)
9514         (calendar-hebrew-date-string, calendar-coptic-date-string)
9515         (calendar-ethiopic-date-string, calendar-persian-date-string):
9516         These functions are not interactive.
9518 2006-05-11  Luc Teirlinck  <teirllm@auburn.edu>
9520         * files.el: Balance parentheses.
9522 2006-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
9524         * files.el, newcomment.el, outline.el, simple.el,
9525         * emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
9526         * progmodes/cc-vars.el, progmodes/compile.el:
9527         Move `safe-local-variable' declarations to the respective files.
9529         * help-fns.el (describe-variable): Don't print safe-var if it is
9530         byte-code.  Improve wording as suggested by Luc Teirlinck.
9532 2006-05-11  Nick Roberts  <nickrob@snap.net.nz>
9534         * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
9535         (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
9536         Use a token for pending-triggers to ensure gdb-var-update
9537         gets called once per user input again for pre-GDB 6.4.
9538         (gdb-var-delete): Match on more complex expressions.
9539         (gdb-var-list-children-handler, gdb-var-create-handler):
9540         Use a token for consistency.
9542 2006-05-11  Carsten Dominik  <dominik@science.uva.nl>
9544         * textmodes/org.el (org-read-date, org-goto-calendar)
9545         (org-agenda-goto-calendar):
9546         Bind `view-calendar-holidays-initially' to nil.
9548 2006-05-11  Thien-Thi Nguyen  <ttn@gnu.org>
9550         * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
9551         Update all callers to do it there, instead.
9553 2006-05-10  Glenn Morris  <rgm@gnu.org>
9555         * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
9556         prefix arg case, to avoid view-diary-entries-initially error.
9557         Reported by Stephen Berman <Stephen.Berman at gmx.net>.
9558         (calendar-date-is-legal-p): Handle dates with no day part.
9560 2006-05-11  Nick Roberts  <nickrob@snap.net.nz>
9562         * comint.el (comint-insert-input): Just make it when
9563         comint-use-prompt regexp is nil (default) and with the mouse.
9564         (comint-copy-old-input): Reinstate from 2004-06-23.
9565         (comint-mode-map): Bind C-c C-m to it.
9567 2006-05-10  J.D. Smith  <jdsmith@as.arizona.edu>
9569         * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
9570         Remove spurious move to point-max (new comint behavior fixes).
9572         * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
9573         compatibility function (Emacs 18/19).
9574         (idlwave-is-continuation-line): Always return point at start of
9575         previous non-blank continuation line.
9576         (keyword-parameters): Fix continued comment font-lock matcher.
9577         (idlwave-font-lock-fontify-region): Written, use as
9578         font-lock-fontify-region-function, to fix continued keyword
9579         fontification issues.
9581 2006-05-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9583         * term/mac-win.el (mac-font-panel-mode): Doc fix.
9584         (mac-service-selection, mac-service-open-file)
9585         (mac-service-open-selection, mac-service-mail-selection)
9586         (mac-service-mail-to, mac-service-insert-text): Rename from
9587         mac-services-*.  All uses changed.
9588         (mac-apple-event-map): Rename event symbol `services' to `service'.
9590 2006-05-10  Thien-Thi Nguyen  <ttn@gnu.org>
9592         * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
9593         (ewoc--node-enter-first, ewoc--node-enter-last)
9594         (ewoc--delete-node-internal): Merge funcs into unique callers.
9596 2006-05-09  Chong Yidong  <cyd@stupidchicken.com>
9598         * emacs-lisp/crm.el (completing-read-multiple): Properly handle
9599         return value of read-from-minibuffer for empty input.
9601 2006-05-09  Miles Bader  <miles@gnu.org>
9603         * comint.el (comint-insert-input): Remove redundant calls to setq
9604         and goto-char.
9606 2006-05-10  Nick Roberts  <nickrob@snap.net.nz>
9608         * comint.el (comint-insert-input): Make it work when
9609         comint-use-prompt-regexp is t.
9611 2006-05-10  Miles Bader  <miles@gnu.org>
9613         * subr.el (field-at-pos): New function.
9615         * comint.el (comint-insert-input): Use it.
9617 2006-05-09  Juri Linkov  <juri@jurta.org>
9619         * battery.el (battery-linux-proc-acpi): Also try
9620         `/proc/acpi/thermal_zone/THR2/temperature'.
9622         * files.el <safe-local-variable>: Remove `eval' and `let' binding
9623         for now unused lambda `string-or-null'.
9625         * add-log.el (change-log-default-name): Put `string-or-null-p'
9626         instead of lambda on `safe-local-variable' property.
9628         * diff-mode.el (diff-context->unified): Use `region-beginning' and
9629         `region-end' instead of `mark' and `point'.
9630         (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
9631         Operate on region in Transient Mark mode when the mark is active.
9632         Use `region-beginning' and `region-end' instead of `mark' and
9633         `point'.
9634         (diff-hunk-text, diff-goto-source): Doc fix.
9636         * startup.el (fancy-splash-screens, normal-splash-screen): Use
9637         face `mode-line-buffer-id' for mode-line buffer face instead of
9638         hard-coded `(:weight bold)'.
9640         * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
9641         buffer-undo-list to t (undo-ask is reproducible by visiting
9642         nested archives).
9644 2006-05-09  Kim F. Storm  <storm@cua.dk>
9646         * progmodes/grep.el (rgrep): Set default directory of *grep*
9647         buffer if we start M-x rgrep in the *grep* buffer and choose
9648         a different base directory.
9650 2006-05-09  Michael Albinus  <michael.albinus@gmx.de>
9652         * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
9653         completion also when ido is loaded.
9655 2006-05-09  Masatake YAMATO  <jet@gyve.org>
9657         * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
9658         "warning" and "import".
9659         (cpp-font-lock-keywords): Added "warning".
9661 2006-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
9663         * term/xterm.el (terminal-init-xterm): Add more key bindings.
9665 2006-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9667         * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
9668         pages at a time, if we signal the end, we should indeed reach that end.
9670 2006-05-08  David Reitter  <david.reitter@gmail.com>
9672         * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
9673         output during execution of the body.
9675 2006-05-08  Kim F. Storm  <storm@cua.dk>
9677         * progmodes/grep.el (lgrep, rgrep): Doc fixes.
9679 2006-05-08  Thien-Thi Nguyen  <ttn@gnu.org>
9681         * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
9682         Use with-current-buffer.
9684 2006-05-07  Kim F. Storm  <storm@cua.dk>
9686         * subr.el (add-to-history): Remove keep-dups arg.
9688         * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
9689         to nil around call to add-to-history.
9691 2006-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9693         * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
9694         than after a buffer modification.
9696 2006-05-08  Nick Roberts  <nickrob@snap.net.nz>
9698         * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
9699         call to...
9700         (gud-watch): ...here so speedbar is raised for already watched
9701         expressions.
9702         (gdb-speedbar-refresh): Delete function.
9703         (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
9704         Use speedbar-timer-fn instead of speedbar-refresh (reverting
9705         earlier change).
9706         (gdb-var-evaluate-expression-handler)
9707         (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
9709         * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
9710         Update localized contents for all buffers except ignored modes.
9712 2006-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9714         * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
9715         (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
9716         (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
9717         (mac-handle-font-panel-closed, mac-handle-font-selection):
9718         New functions.
9719         (mac-font-panel-mode): New minor mode.
9720         (mac-apple-event-map): Add bindings for toolbar toggle button and
9721         font panel.
9722         (menu-bar-showhide-menu): Add mac-font-panel-mode.
9724 2006-05-07  John Paul Wallington  <jpw@pobox.com>
9726         * ibuffer.el (ibuffer-compressed-file-name-regexp):
9727         Avoid `regexp-opt'; simplify regexp for readability.
9729 2006-05-06  Eli Zaretskii  <eliz@gnu.org>
9731         * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
9732         * files.el (buffer-stale-function):
9733         * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
9734         * autorevert.el (global-auto-revert-non-file-buffers): Point Info
9735         links to the main manual, not to emacs-xtra.
9737 2006-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9739         * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
9740         MacJapanese if text is ASCII-only.
9742 2006-05-06  Nick Roberts  <nickrob@snap.net.nz>
9744         * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
9745         unless so nil isn't returned.
9746         (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
9748 2006-05-06  Kim F. Storm  <storm@cua.dk>
9750         * subr.el (add-to-history): New function.
9752         * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
9753         (ediff-merge-files-with-ancestor):
9754         * env.el (setenv):
9755         * isearch.el (isearch-update-ring):
9756         * server.el (server-visit-files):
9757         * progmodes/grep.el (lgrep, rgrep):
9758         * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
9759         * progmodes/xscheme.el (xscheme-insert-expression):
9760         Use add-to-history.
9762         * kmacro.el (kmacro-push-ring): Use add-to-history.
9763         (kmacro-ring-length): Remove unused defun.
9764         (kmacro-start-macro): Use kmacro-push-ring.
9766 2006-05-06  Thien-Thi Nguyen  <ttn@gnu.org>
9768         * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
9769         directly instead of a lambda expression that calls it.
9771 2006-05-06  Kim F. Storm  <storm@cua.dk>
9773         * avoid.el (mouse-avoidance-point-position): Use posn-at-point
9774         instead of compute-motion.
9776 2006-05-05  Dan Nicolaescu  <dann@ics.uci.edu>
9778         * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
9779         change.
9781 2006-05-05  Reiner Steib  <Reiner.Steib@gmx.de>
9783         * startup.el (command-line-1): Refer to "Pure Storage" on
9784         pure-space-overflow.
9786 2006-05-05  Martin Rudalics  <rudalics@gmx.at>
9788         * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
9789         provided faces once they all have been used up.
9791 2006-05-05  Eli Zaretskii  <eliz@gnu.org>
9793         * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
9794         reference to the Lisp manual to the warning about pure space
9795         overflow.
9797 2006-05-05  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
9799         * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
9800         argument to avoid the call to `ispell-internal-change-dictionary'
9801         when not needed.
9802         (ispell-change-dictionary): Use this argument and call
9803         `ispell-internal-change-dictionary' after the possible change
9804         to `ispell-local-dictionary'.
9805         (ispell-internal-change-dictionary): Check for a change in
9806         personal dictionary use too.
9808 2006-05-05  Eli Zaretskii  <eliz@gnu.org>
9810         * startup.el (command-line): On MS-Windows, probe "~", not
9811         "~USER", for warning about non-existent home directory
9813         * arc-mode.el (archive-l-e): New optional argument `float' means
9814         generate a float value.
9815         (archive-arc-summarize, archive-lzh-summarize)
9816         (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
9817         with 3rd argument non-nil when file's size is being computed.
9818         Format the file sizes with %8.0f instead of %8d.
9820 2006-05-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9822         * cus-start.el (all): Add mac-dnd-known-types.
9824         * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
9825         (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
9826         (mac-TIFF-to-string): New functions.
9827         (x-get-selection, x-selection-value)
9828         (mac-select-convert-to-string): Use them.
9829         (mac-text-encoding-mac-japanese-basic-variant): New constant.
9830         (mac-dnd-types-alist): New customization variable.
9831         (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
9832         (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
9833         (mac-dnd-handle-drag-n-drop-event): New functions.
9834         (mac-drag-n-drop): Remove function.
9835         (global-map): Bind drag-n-drop and M-drag-n-drop to
9836         mac-dnd-handle-drag-n-drop-event.
9838 2006-05-04  Karl Chen  <quarl@NOSPAM.quarl.org>
9840         * progmodes/perl-mode.el (perl-beginning-of-function):
9841         Skip anonymous subs.
9843 2006-05-04  Dan Nicolaescu  <dann@ics.uci.edu>
9845         * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
9846         regexp-opt at run time.
9848         * term.el (term-handle-ansi-escape): Fix off by one error.
9850 2006-05-04  Nick Roberts  <nickrob@snap.net.nz>
9852         * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
9853         (gdb-init-1, gdb-post-prompt): ...and references to it.
9854         (gdb-frame-handler): Strip directory name from filename if present.
9856         * progmodes/gud.el (gdb-force-update): Delete defvar
9857         (gud-speedbar-buttons): ...and references to it.  Use window-start
9858         to try to keep positon in watch expression.
9860 2006-05-03  Richard Stallman  <rms@gnu.org>
9862         * simple.el (next-history-element, previous-history-element): Doc fix.
9864         * isearch.el (isearch-update-ring): Doc fix.
9866 2006-05-03  Dan Nicolaescu  <dann@ics.uci.edu>
9868         * isearch.el (isearch-update-ring): Take history-delete-duplicates
9869         into consideration.  Replace one arm ifs with whens.
9871 2006-05-03  Nick Roberts  <nickrob@snap.net.nz>
9873         * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
9874         (menu): Fix typo.
9876 2006-05-02  Miles Bader  <miles@gnu.org>
9878         * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
9880 2006-05-02  Jay Belanger  <belanger@truman.edu>
9882         * calc/calc-embed.el (calc-override-minor-modes-map)
9883         (calc-override-minor-modes): New variables.
9884         (calc-do-embedded): Make sure that Calc keystrokes aren't
9885         overwritten by minor modes.
9887 2006-05-02  Chong Yidong  <cyd@mit.edu>
9889         * msb.el (msb): If EVENT is a down event, read and discard the up event.
9891 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
9893         * startup.el (command-line-1): Refer to Lisp manual when
9894         pure-space-overflow occurs.
9896         * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
9897         (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
9898         (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
9899         (version-control): Don't use `t' for safe-local-variable declarations.
9901 2006-05-01  Richard Stallman  <rms@gnu.org>
9903         * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
9904         M-r, M-R, M-A, M-SPC or M-DEL.
9905         (diff-mode-map): diff-refine-hunk now on C-c C-w
9906         (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
9908         * help-mode.el (help-mode): view-exit-action calls delete-window
9909         only when it is safe and possible.
9911         * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
9912         in messages.
9914         * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
9916         * tool-bar.el (tool-bar-setup): Put Help and Preferences items
9917         in the default tool-bar-map.
9919 2006-05-01  Michael Albinus  <michael.albinus@gmx.de>
9921         * net/tramp.el (tramp-completion-file-name-handler-alist)
9922         (tramp-run-real-handler, tramp-completion-run-real-handler)
9923         (tramp-completion-handle-file-name-all-completions)
9924         (tramp-completion-handle-file-name-completion): Autoload them.
9925         (tramp-completion-handle-file-exists-p)
9926         (tramp-completion-handle-file-name-directory)
9927         (tramp-completion-handle-file-name-nondirectory)
9928         (tramp-completion-handle-expand-file-name): Remove them.
9929         (tramp-handle-file-name-directory): Return the real directory name.
9930         Returning "/" only doesn't need to be necessary any longer.
9931         (tramp-file-name-handler): Make special attention when in hostname
9932         completion mode.
9933         (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
9934         (tramp-register-file-name-handlers):
9935         Register `tramp-completion-file-name-handler' only when
9936         `partial-completion-mode' is enabled.
9937         (tramp-completion-handle-file-name-all-completions):
9938         Delete directory part from results.
9939         (tramp-get-completion-methods, tramp-get-completion-user-host):
9940         Discard deleting "/", it doesn't work after the change of
9941         `tramp-handle-file-name-directory' above.
9943 2006-05-01  Kim F. Storm  <storm@cua.dk>
9945         * progmodes/grep.el (grep-expand-template): Use save-match-data
9946         and symbol-value.
9948 2006-05-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9950         * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
9951         Use select-frame-set-input-focus instead of raise-frame.
9952         (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
9954 2006-05-01  Nick Roberts  <nickrob@snap.net.nz>
9956         * progmodes/gud.el (gud-def): Add %c case.
9957         (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
9958         (gud-format-command): Make match case sensitive.  Match on %F.
9960 2006-04-30  Glenn Morris  <rgm@gnu.org>
9962         * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
9963         (cal-tex-preamble): Use cal-tex-preamble-extra.
9964         (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
9965         than alias `list-diary-entries'.
9967 2006-04-29  Dan Nicolaescu  <dann@ics.uci.edu>
9969         * help-fns.el (describe-variable): Add info about safe local variables.
9971 2006-04-29  Richard Stallman  <rms@gnu.org>
9973         * bindings.el (mode-line-format): help-echo doc fixes.
9975         * net/tramp.el (tramp-file-name-handler-alist): Delete
9976         expand-file-name and other operations that can cause spurious loading.
9978 2006-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9980         * files.el (safe-local-variable-p): Remove support for the special
9981         value t.
9983         * textmodes/paragraphs.el (sentence-end-without-space):
9984         Fix safety predicate.
9985         (sentence-end-double-space, sentence-end-without-period)
9986         (paragraph-ignore-fill-prefix):
9987         * textmodes/fill.el (colon-double-space):
9988         * abbrev.el (abbrev-mode): Tighten the safety predicate.
9990         * subr.el (booleanp): New fun.
9992         * textmodes/reftex-vars.el (reftex-guess-label-type):
9993         Tighten the safety predicate.
9995 2006-04-28  Kim F. Storm  <storm@cua.dk>
9997         * progmodes/grep.el (defgroup grep): Doc fix.
9998         (grep-auto-highlight): Remove.
9999         (grep-template): New defcustom.
10000         (grep-find-template): Rename from grep-tree-template.
10001         (grep-files-aliases): Rename from grep-tree-files-aliases.
10002         Remove "all" alias, add "l" alias.
10003         (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
10004         (grep-find-ignored-directories): New defcustom to replace
10005         grep-tree-ignore-CVS-directories, to facilitate ignoring
10006         subdirectories for multiple version control systems.
10007         (grep-mode-map): Add Recursive grep item to GREP menu.
10008         (grep-regexp-history, grep-files-history): New defvars.
10009         (grep-probe): New helper function.
10010         (grep-compute-defaults): Use it to simplify code.
10011         Adapt to name changes.
10012         Use `.' as base in grep-find-template rather than <D>.
10013         (grep): Remove superfluous highlight-regexp arg.  Fix doc.
10014         Call grep-compute-defaults unconditionally.
10015         (grep-expand-keywords): New defconst.
10016         (grep-expand-template): Rename from grep-expand-command-macros.
10017         Simplify via grep-expand-keywords.  Look at case-fold-search instead
10018         of grep-tree-ignore-case to add -i option.
10019         Bind case-fold-search to nil while matching keywords.
10020         (grep-tree-last-regexp, grep-tree-last-files): Remove.
10021         (grep-read-regexp, grep-read-files): New helper functions.
10022         (rgrep): Rename from grep-tree.  Rework to use proper histories.
10023         Adapt to changes in defcustoms and functions above.
10024         (lgrep): New command, as grep, but using same interactive UI as rgrep.
10026 2006-04-28  Michael Albinus  <michael.albinus@gmx.de>
10028         * net/tramp.el (tramp-completion-file-name-handler):
10029         Disable Tramp's functionality while loading Tramp itself.
10030         (tramp-register-file-name-handlers): That's a defsubst now.
10031         Code from `tramp-repair-jka-compr' moved here.  Apply it via
10032         `after-init-hook'.
10033         (tramp-repair-jka-compr): Remove.
10035 2006-04-27  Jay Belanger  <belanger@truman.edu>
10037         * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
10038         read expression when `math-read-big-expr' doesn't work.
10040 2006-04-27  Reiner Steib  <Reiner.Steib@gmx.de>
10042         * startup.el (command-line-1): Display warning when
10043         pure-space-overflow is non-nil.
10045 2006-04-26  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10047         * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
10048         risky.
10050 2006-04-26  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10052         * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
10053         Return the URL or nil if none can be generated.
10055 2006-04-27  Nick Roberts  <nickrob@snap.net.nz>
10057         * progmodes/gud.el (gud-comint-buffer): Move forward to stop
10058         byte compiler warnings.
10059         (gud-basic-call, gud-find-expr): Let user select an expression
10060         for printing.  Print expression as well as value in GUD buffer.
10062 2006-04-17  Ken Manheimer  <ken.manheimer@gmail.com>
10064         * allout.el: Remove local autoload declaration for
10065         pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
10066         (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
10067         (allout-plain-bullets-string, allout-distinctive-bullets-string)
10068         (allout-use-mode-specific-leader, allout-old-style-prefixes)
10069         (allout-stylish-prefixes, allout-numbered-bullet)
10070         (allout-file-xref-bullet, allout-presentation-padding)
10071         (allout-use-hanging-indents, allout-reindent-bodies): Mark as
10072         safe-local-variable with suitable value spec, and add autoload
10073         cookie for loaddefs inclusion.  We now use an explicit spec everywhere.
10074         (move-beginning-of-line, move-end-of-line): Repair so these compat
10075         functions now actually resituate the point, when appropriate.
10077 2006-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10079         * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
10081         * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
10082         (add-log-iso8601-time-string): Fix call to format-time-string.
10084 2006-04-26  Kim F. Storm  <storm@cua.dk>
10086         * subr.el (posn-string, posn-image, posn-object): Doc fix.
10088 2006-04-26  Masatake YAMATO  <jet@gyve.org>
10090         * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
10091         Add support for "//" style comments.  Remove `b' flag
10092         from ?* in `asm-mode-syntax-table'.
10094 2006-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10096         * follow.el: Use (featurep 'xemacs) everywhere.
10097         (follow-mode): Use define-minor-mode.
10098         (follow-mode-map): Move initialization into the declaration.
10099         Use command remapping.
10100         (follow-emacs-version-xemacs-p): Remove.
10101         (follow-submit-feedback): Remove.
10103         * allout.el (allout-layout, allout-passphrase-verifier-string)
10104         (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
10106         * textmodes/reftex-vars.el (reftex-vref-is-default)
10107         (reftex-fref-is-default, reftex-guess-label-type):
10108         Tighten up a bit the safety predicate.
10110         * textmodes/paragraphs.el (sentence-end-double-space)
10111         (sentence-end-without-period, sentence-end-without-space)
10112         (page-delimiter, paragraph-ignore-fill-prefix):
10113         Tighten up a bit the safety predicate.
10115         * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
10117         * progmodes/python.el (python-continuation-line-p)
10118         (python-beginning-of-statement): syntax-ppss may return
10119         a negative depth.
10120         (python-mode): Don't forcefully enable font-lock.
10122         * time-stamp.el (time-stamp-start, time-stamp-end)
10123         (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
10125         * add-log.el: Remove spurious * in docstrings.
10126         (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
10127         (add-change-log-entry): Use it here, since it's not specific
10128         to iso8601.
10129         (add-log-iso8601-time-string): Don't use it here any more.
10130         (change-log-indent-text, change-log-indent): Rename from add-log-*.
10132         * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
10134 2006-04-25  Ryan Yeske  <rcyeske@gmail.com>
10136         * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
10137         (rcirc-toggle-low-priority): Doc fix.
10138         (rcirc-handler-NOTICE): Remove beginning of line anchor in
10139         ChanServ regexp.
10140         (rcirc-startup-channels-alist): Connect to #rcirc by default, not
10141         #emacs.
10142         (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
10143         (rcirc-decode-coding-system): Use utf-8 as the default.
10144         (rcirc-multiline-minor-mode): Set the fill-column.
10145         (rcirc-format-response-string): Display bright and dim nicks.
10146         (rcirc-browse-url): Update interactive spec to fill ARG.
10147         (rcirc-bright-nick, rcirc-dim-nick): Add faces.
10148         (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
10150 2006-04-24  J.D. Smith  <jdsmith@as.arizona.edu>
10152         * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
10153         case for @Article, etc.
10155 2006-04-23  Michael Albinus  <michael.albinus@gmx.de>
10157         * net/tramp.el (tramp-register-file-name-handlers): New defun.
10158         Added with autoload cookie.
10159         (tramp-unload-file-name-handlers): Rename from
10160         `tramp-unload-file-name-handler-alist'.
10162 2006-04-23  Romain Francoise  <romain@orebokech.com>
10164         * comint.el (comint-match-partial-filename): Doc fix.
10166 2006-04-21  Glenn Morris  <rgm@gnu.org>
10168         * calendar/cal-menu.el (calendar-mode-map): Refer to
10169         `diary-view-entries' rather than alias `view-diary-entries'.
10170         * calendar/diary-lib.el (view-other-diary-entries): Ditto.
10172 2006-04-21  Luc Teirlinck  <teirllm@auburn.edu>
10174         * progmodes/antlr-mode.el (antlr-default):
10175         * cus-edit.el (custom-documentation):
10176         * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
10177         in defface.
10179 2006-04-21  Kim F. Storm  <storm@cua.dk>
10181         * image.el (image-type): New defun split out of create-image.
10182         (create-image): Use it.
10184 2006-04-21  Carsten Dominik  <dominik@science.uva.nl>
10186         * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
10187         (org-open-at-point): Remove the "...done" message to keep output
10188         in the echo area visible.
10189         (org-export-as-xoxo): Fix call to `indent-region'.
10191 2006-04-21  Kevin Ryde  <user42@zip.com.au>
10193         * international/mule.el (keyboard-coding-system): defcustom
10194         info-link fixes: "Specify Coding" has been split, keyboard now in
10195         "Terminal Coding", and "Single-Byte Character Support" is now
10196         "Unibyte Mode".
10198 2006-04-21  Nick Roberts  <nickrob@snap.net.nz>
10200         * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
10201         Use font-lock-warning-face for any errors e.g. no stack.
10202         (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
10204 2006-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
10206         * progmodes/sh-script.el (sh-shell): Mark as safe.
10208         * newcomment.el (comment-start, comment-start-skip)
10209         (comment-end-skip, comment-end): Mark as safe.
10211 2006-04-20  Carsten Dominik  <dominik@science.uva.nl>
10213         * textmodes/org.el (org-deadline-announce): Face removed.
10214         (org-level-faces, org-n-levels): Convert to constant.
10215         (org-compatible-face): New function.
10216         (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
10217         (org-level-5, org-level-6, org-level-7, org-level-8)
10218         (org-special-keyword, org-warning, org-headline-done, org-link)
10219         (org-date, org-tag, org-todo, org-done, org-table, org-formula)
10220         (org-scheduled-today, org-scheduled-previously, org-time-grid):
10221         Face definition revised for better color tty support.
10222         (org-bold-re, org-italic-re, org-underline-re): New constants.
10223         (org-set-font-lock-defaults): Use the new constants.
10224         (org-agenda-highlight-todo): New function.
10225         (org-agenda-todo): Fix bug with point at end of line.
10226         (org-agenda-change-all-lines, org-finalize-agenda-entries):
10227         Fontify TODO keywords.
10228         (org-insert-link): Preserve relative path in ../ links.
10229         (org-export-as-html): Convert links pointing to .org files into
10230         links that will work beteen the exported HTML files.
10231         (org-todo-list): Fix bug when arg=0.
10232         (org-insert-heading): More fine-tuning.
10234 2006-04-19  Romain Francoise  <romain@orebokech.com>
10236         * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
10237         from `rmail-mime-charset-pattern'.
10239 2006-04-18  Dan Nicolaescu  <dann@ics.uci.edu>
10241         * progmodes/python.el (python-mode): Fix typo.
10243 2006-04-18  J.D. Smith  <jdsmith@as.arizona.edu>
10245         * comint.el (comint-previous-input): Don't clobber input line
10246         when moving off either end of the input history ring.
10247         (comint-delete-input): New function, used by
10248         `comint-previous-input' and others.
10249         (comint-previous-matching-input):
10250         Use `coming-delete-input'.  Save the partial input if leaving the
10251         edit line.  Goto point-max before deleting input to avoid
10252         partial input fragments hanging around.
10253         (comint-restore-input): New function, used by `comint-previous-input'.
10255 2006-04-18  Luc Teirlinck  <teirllm@auburn.edu>
10257         * imenu.el (imenu--index-alist): Balance parentheses.
10259 2006-04-18  Dan Nicolaescu  <dann@ics.uci.edu>
10261         * progmodes/python.el (python-mode): Add support for hs-minor-mode.
10263 2006-04-19  Reiner Steib  <Reiner.Steib@gmx.de>
10265         * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
10266         file is nil.
10268 2006-04-18  Richard Stallman  <rms@gnu.org>
10270         * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
10272         * imenu.el (imenu-create-index-function, imenu--index-alist)
10273         (imenu--last-menubar-index-alist, imenu--make-index-alist)
10274         (imenu-default-create-index-function, imenu--generic-function):
10275         Doc fixes.
10277         * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
10279         * help-mode.el (help-mode): Set view-exit-action to delete window.
10281         * env.el (setenv): Get rid of arg UNSET.  Interactive unsetting
10282         now works by passing nil as arg.
10284         * apropos.el (apropos-print): Don't do where-is on self-insert-command.
10286         * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
10287         (read-abbrev-file): Provide default when reading filename.
10289         * files.el (enable-local-variables): Allow :all as value.
10290         (hack-local-variables): Implement that value.
10291         (safe-local-variable-values, safe-local-eval-forms)
10292         (enable-local-variables): Mark as risky.
10293         (find-file-visit-truename, kept-old-versions): Mark safe.
10295         * time-stamp.el (time-stamp-format, time-stamp-line-limit)
10296         (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
10297         (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
10299 2006-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10301         * progmodes/tcl.el (tcl-send-string, tcl-send-region):
10302         Use forward-line so as to get to BOL even in the presence of fields.
10303         (tcl-eval-region): Strip surrounding space to avoid multiple prompts
10304         in return.
10305         (inferior-tcl): Tell tclsh to work in interactive mode.
10307         * complete.el (partial-completion-mode):
10308         Use 'choose-completion-string-functions to make sure that
10309         choose-completion fills the minibuffer properly.
10311         * complete.el (PC-old-read-file-name-internal): Remove.
10312         (PC-read-include-file-name-internal): Remove.  Turn it into an advice
10313         of read-file-name-internal.
10314         (partial-completion-mode): Enable/disable this advice.
10316 2006-04-18  Juanma Barranquero  <lekktu@gmail.com>
10318         * net/tramp.el (tramp-completion-file-name-handler): Revert change
10319         of 2006-04-17.
10321 2006-04-18  Carsten Dominik  <dominik@science.uva.nl>
10323         * textmodes/org.el (org-insert-heading): Insert heading before
10324         current if at beginning of line.
10325         (org-todo, org-date): New faces.
10326         (org-table-align): Make sure tooltip window contains full text.
10327         (org-no-properties): New defsubst.
10328         (org-set-font-lock-defaults): Use new faces.
10330 2006-04-18  Nick Roberts  <nickrob@snap.net.nz>
10332         * progmodes/gud.el (gud-speedbar-item-info): Display frame address
10333         for root variables.
10335         * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
10336         (gdb-frame-address): Re-use to identify frame for watch expression.
10337         (gdb-var-list, gdb-var-create-handler): Add frame address for root
10338         variables.
10339         (gdb-init-1, gdb-source, gdb-post-prompt)
10340         (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
10341         (gdb-frame-handler): Get gdb-frame-address.
10343 2006-04-17  Michael Albinus  <michael.albinus@gmx.de>
10345         Sync with Tramp 2.0.53.
10347         * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
10348         'control.  Reported by Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>.
10349         (tramp-completion-file-name-handler): Add autoload cookie for
10350         adding to `file-name-handler-alist'.
10352         * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
10353         the prompt.  If it returns earlier (when detecting an error
10354         message), the rest of the output will merge accidently with the
10355         output of the next command.  Reported by M Jared Finder
10356         <jared@hpalace.com>.
10358         * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
10359         for `process-file', in order to let it work for older Emacsen too.
10361 2006-04-17  Ralf Angeli  <angeli@iwi.uni-sb.de>
10363         * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
10364         (tex-font-lock-keywords-3): Use it.
10366 2006-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10368         * newcomment.el (comment-add): New function.
10369         (comment-region-default, comment-dwim): Use it.
10371 2006-04-15  Michael Olson  <mwolson@gnu.org>
10373         * emacs-lisp/tq.el: Improve comments.
10374         (tq-queue-head-question): New accessor function.
10375         (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
10376         Update for modified queue structure.
10377         (tq-queue-add): Accept `question' argument.
10378         (tq-queue-pop): If a question is pending, send it.
10379         (tq-enqueue): Accept new optional argument `delay-question'.
10380         If this is non-nil, and at least one other question is pending a
10381         response, queue the question rather than sending it immediately.
10383 2006-04-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10385         * calendar/appt.el (appt-add): Check whether an appointment is
10386         already present in appt-time-msg-list.  Simplify code.
10388 2006-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10390         * progmodes/cc-langs.el (c-mode-menu):
10391         Don't presume c-subword-mode is bound.
10393 2006-04-13  Bill Wohler  <wohler@newt.com>
10395         * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
10396         (customize-package-emacs-version): Use cdr instead of cadr now
10397         that alists use dotted pairs.
10399         * custom.el (defcustom): Fix docstring for :package-version.
10401 2006-04-13  Michael Albinus  <michael.albinus@gmx.de>
10403         * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
10404         (tramp-handle-shell-command): Display output buffer only when
10405         `tramp-display-shell-command-buffer' is true.
10406         (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
10408 2006-04-13  Carsten Dominik  <dominik@science.uva.nl>
10410         * textmodes/org.el (org-set-autofill-regexps): Set only the local
10411         values of `adaptive-fill-regexp' and `adaptive-fill-function'.
10413 2006-04-13  Romain Francoise  <romain@orebokech.com>
10415         * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
10416         leaving temporary .cvsignore buffers behind.
10418 2006-04-13  Carsten Dominik  <dominik@science.uva.nl>
10420         * textmodes/org.el (org-set-regexps-and-options)
10421         (org-get-current-options): Better names for the startup folding
10422         options.
10424 2006-04-13  Thien-Thi Nguyen  <ttn@gnu.org>
10426         * vc.el (vc-annotate): Arrange for point to end up at the same
10427         line number as in the original, but only when using a new buffer.
10429 2006-04-12  Stuart Herring  <herring@lanl.gov>  (tiny change)
10431         * files.el (hack-one-local-variable-eval-safep):
10432         Recognize `edebug-form-spec' for `put', but only if it passes
10433         `edebug-basic-spec'.  Generalize `put' handling.
10435         * emacs-lisp/edebug.el (edebug-basic-spec): New function for
10436         vetting file-local form specs.
10438         * allout.el (allout-layout): Autoload its `safe-local-variable'
10439         property.
10441 2006-04-13  Carsten Dominik  <dominik@science.uva.nl>
10443         * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
10444         (org-agenda-mouse-1-follows-link)
10445         (org-mouse-1-follows-link): New options.
10446         (org-format-agenda-item): Fix bug if TAGS is nil.
10447         (org-agenda-get-scheduled): Quote `priority' symbol in plist.
10449 2006-04-13  Nick Roberts  <nickrob@snap.net.nz>
10451         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
10452         GDB 6.1+ gives full filename for "info sources" so use
10453         file-name-nondirectory.
10455 2006-04-12  Romain Francoise  <romain@orebokech.com>
10457         * subr.el (read-passwd): Bind `message-log-max' to nil.
10459 2006-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10461         * progmodes/perl-mode.el (perl-indent-new-calculate):
10462         Recompute parse-start after jumping backward by a whole sexp.
10464 2006-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10466         * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
10467         window configuration.
10468         (vc-annotate-display-select): Select the buffer so that current-buffer
10469         (and selected-window) is the output buffer at the end of vc-annotate.
10471 2006-04-11  J.D. Smith  <jdsmith@as.arizona.edu>
10473         * vc.el (vc-annotate-color-map): Add custom TTY color map for
10474         8-color terminals, to use all of the colors in a sensible order.
10475         256-color terminals work well with the standard map.
10476         (vc-annotate-lines): Only strip the first color character if it
10477         is "#", to allow for terminal-style named colors.
10478         (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
10479         the correct buffer is scrolled.
10481 2006-04-11  Richard Stallman  <rms@gnu.org>
10483         * emacs-lisp/bytecomp.el (byte-compile-file):
10484         Bind enable-local-variables to :safe, and make normal-mode obey it.
10486         * files.el (enable-local-variables): Allow value :safe.
10487         (normal-mode): Doc fix.
10488         (hack-local-variables): Implement enable-local-variables = :safe.
10489         (hack-local-variables-confirm): Don't prevent quitting.
10491 2006-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10493         * loadhist.el (unload-feature): A bit of sanity check of
10494         load-history entries.  Cancel timer-vars before unbinding them.
10496         * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
10497         quote special chars, and make the trick work on the hex part of the
10498         buffer as well.
10499         (hexl-mode, hexl-save-buffer, hexl-mode-exit)
10500         (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
10502         * startup.el (normal-splash-screen): Fix last change so we don't wait
10503         2 minutes if we don't show the splash screen.
10505 2006-04-11  Carsten Dominik  <dominik@science.uva.nl>
10507         * textmodes/org.el (org-export-plain-list-max-depth)
10508         (org-table-spaces-around-separators)
10509         (org-radio-targets, org-activate-camels)
10510         (org-table-spaces-around-invisible-separators): Options removed.
10511         (org-time-stamp-rounding-minutes, org-remember-templates)
10512         (org-ellipsis, org-activate-links, org-descriptive-links):
10513         New options.
10514         (org-remember-apply-template, org-current-time)
10515         (org-finish-edit-table-field)
10516         (org-link-unescape, org-link-escape)
10517         (org-string-width, org-table-clean-line, org-html-do-expand)
10518         (org-edit-agenda-file-list, org-store-new-agenda-file-list)
10519         (org-read-agenda-file-list): New functions.
10520         (org-table-edit-field)
10521         (org-table-create-or-convert-from-region): New commands
10522         (org-table-toggle-vline-visibility): Command removed.
10523         (org-table-convert-region): Made a command.
10524         (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
10525         Replace with the normal org- functions.
10526         (org-self-insert-command): Don't trigger realign unnecessarily
10527         when blanking a field that is not full.
10528         (org-mode): `Set buffer-invisibility-spec' for links.
10529         (org-activate-links2): Hide link part and only show descriptive
10530         part of the link.
10531         (org-insert-link): Modify for new linking system.
10532         (org-store-link): Store description separately, for use by
10533         `org-insert-link'.
10534         (org-table-align): Use `org-string-width'.
10535         (defgroup): Completely new group structure for custom variables.
10536         (org-agenda-files): Option: Single file name allowed.  Function:
10537         Optional argument unrestrited means ignore any restricitons.
10538         (org-install-agenda-files-menu): Find a buffer in Org-mode before
10539         trying to modify the menu.  Use generalized access to
10540         `org-agenda-files.'
10541         (org-agenda-list, org-todo-list, org-cycle-agenda-files)
10542         (org-agenda-file-to-front, org-remove-file, org-diary)
10543         (org-tags-view, org-export-icalendar-all-agenda-files)
10544         (org-export-icalendar-combine-agenda-files): Use generalized
10545         access to `org-agenda-files'.
10546         (org-remember-handler): Correctly preserve heading if present.
10547         (org-table-insert-row, org-table-insert-hline): Deal with
10548         invisible characters.
10550 2006-04-10  J.D. Smith  <jdsmith@as.arizona.edu>
10552         * vc.el (vc-annotate-display-mode): Made default 'fullscale.
10553         (vc-annotate-color-map): New 18 element constant
10554         value/saturation, rotating hue colormap, from red->blue.
10555         (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
10556         (vc-annotate-display-select): Switch to annotate-mode elsewhere.
10557         (vc-annotate): To avoid killing the required local variables,
10558         set them before the end of `with-output-to-temp-buffer', and
10559         after first switching to annotate-mode.
10560         (vc-annotate-warp-version): Add buffer argument in goto-line to
10561         ensure annotation, not source, is scrolled.
10563 2006-04-10  Bill Wohler  <wohler@newt.com>
10565         * custom.el (defcustom, custom-handle-keyword):
10566         Add :package-version keyword.
10567         (custom-add-package-version): New function.  Sets value of new
10568         property 'custom-package-version from :package-version keyword.
10569         (defcustom): Create Common Keywords section in docstring.
10570         (defface, defgroup): Replace definitions of a select few keywords
10571         with a reference to the Common Keywords in defcustom.
10572         (defcustom, defface, defgroup): Replace reference to Customization
10573         chapter in manual with hyperlink.
10575         * cus-edit.el (customize-package-emacs-version-alist): New variable.
10576         (customize-changed-options): Add check for custom-package-version.
10577         (customize-package-emacs-version): New function to look up Emacs
10578         version corresponding to the given package version.
10580         * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
10581         defun name, in similar fashion to find-variable-regexp.
10583 2006-04-10  Eli Zaretskii  <eliz@gnu.org>
10585         * international/mule-cmds.el (set-locale-environment): Fix last
10586         change for when the locale's preferences don't specify any encoding.
10588 2006-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10590         * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
10591         so the defined var/fun doesn't need to be quoted.
10593 2006-04-10  Richard Stallman  <rms@gnu.org>
10595         * finder.el (finder-mode-map): Add n and p bindings.
10597 2006-04-10  Nick Roberts  <nickrob@snap.net.nz>
10599         * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
10600         (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
10601         (gdb-setup-windows): Put something in source window if we can't find
10602         the source file.
10603         (gdb-frame-handler): Make it work again with just assembly.
10604         (gdb-data-list-register-values-handler): Make it work when there is
10605         no stack.
10607 2006-04-09  Richard Stallman  <rms@gnu.org>
10609         * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
10610         specs while looking for charset.
10612         * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
10614         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
10615         Make them faces.
10616         (lm-font-lock-keywords): Update appropriately.
10618 2006-04-10  Kim F. Storm  <storm@cua.dk>
10620         * simple.el (filter-buffer-substring): Add NOPROPS arg, so
10621         it can also replace buffer-substring-no-properties.
10623         * emulation/cua-base.el (cua-delete-region, cua-paste)
10624         (cua-repeat-replace-region): Use filter-buffer-substring.
10626         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
10627         (cua-cut-region-to-global-mark): Likewise.
10629         * emulation/cua-rect.el (cua--extract-rectangle)
10630         (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
10632 2006-04-09  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10634         * textmodes/bibtex.el (bibtex-entry-update): New optional arg
10635         entry-type.  Add field delimiters to numerical fields if they are
10636         not present.
10638 2006-04-09  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10640         * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
10641         string-const to return value.
10642         (bibtex-remove-delimiters): Use it.
10644 2006-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
10646         * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
10647         cl-byte-compile-compiler-macro unless it exists.
10649 2006-04-08  Eli Zaretskii  <eliz@gnu.org>
10651         * files.el (hack-local-variables-confirm) <offer-save>:
10652         Clarify message text.  Suggested by Ralf Angeli.
10654 2006-04-08  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
10656         * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
10657         (delete-extract-rectangle-line): Use `filter-buffer-substring'
10658         instead of `buffer-substring' and `delete-region'.  (Most of the
10659         code actually copied from `kill-region'.)
10661 2006-04-08  Ryan Yeske  <rcyeske@gmail.com>
10663         * rcirc.el (rcirc-default-server): Rename from rcirc-server.
10664         (rcirc-default-port): Rename from rcirc-port.
10665         (rcirc-default-nick): Rename from rcirc-nick.
10666         (rcirc-default-user-name): Rename from rcirc-user-name.
10667         (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
10668         (rcirc-low-priority-flag): New variable.
10669         (rcirc-decode-coding-system): New defcustom.
10670         (rcirc-encode-coding-system): New defcustom.
10671         (rcirc-coding-system-alist): New defcustom.
10672         (rcirc-multiline-major-mode): New defcustom.
10673         (rcirc-nick): New internal variable.
10674         (rcirc-process): Remove variable.
10675         (rcirc-server-buffer): New variable.
10676         (rcirc): Update to use rcirc-default-* variables above.
10677         (rcirc-connect): Do not add window-configuration-hook-here.
10678         (rcirc-server): New internal variable.
10679         (rcirc-connect): Do not send keepalive pings if
10680         rcirc-keepalive-seconds is nil.
10681         (with-rcirc-server-buffer): New macro.
10682         (rcirc-send-string): Encode with rcirc-encode-coding-system.
10683         (rcirc-server-name): Rename from rcirc-server.
10684         (rcirc-buffer-process): New function.
10685         (rcirc-buffer-nick): New function.
10686         (rcirc-buffer-target): Remove function.
10687         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
10688         New commands.
10689         (rcirc-mode-map): Change binding of C-c C-l to
10690         rcirc-toggle-low-priority.
10691         (rcirc-mode): Initialize coding system based on
10692         rcirc-coding-system-alist.  New change-major-mode-hook to part the
10693         channel on a mode change.  Make kill-buffer-hook buffer-local.
10694         (rcirc-change-major-mode-hook): New function.
10695         (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
10696         (rcirc-last-post-time): New variable.
10697         (rcirc-process-message): Store the last time user posted a message
10698         to this target.
10699         (rcirc-multiline-minor-mode): New mode.
10700         (rcirc-multiline-minor-mode-map): New mode map.
10701         (rcirc-edit-multiline): Put multiline-edit buffer in
10702         rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
10703         (rcirc-print): Ignore any line starting with an ignored nick.
10704         (rcirc-print): Decode using rcirc-decode-coding-system.
10705         (rcirc-track-minor-mode): Update global-mode-string when disabling
10706         this mode.
10707         (minor-mode-alist): Add LowPri indicator.
10708         (rcirc-toggle-low-priority): New function.
10709         (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
10710         next lowpriority buffer with activity.
10711         (rcirc-record-activity): Sort buffers in rcirc-activity by the
10712         last time the user posted a message in to the target.
10713         (rcirc-update-activity-string): New formatting for low priority
10714         buffers.
10715         (rcirc-split-activity): New function.
10716         (rcirc-handler-PART, rcirc-handler-KICK)
10717         (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
10718         (rcirc-nick-away-alist): New variable.
10719         (rcirc-handler-301): New handler.  Away messages are printed once
10720         per change.
10722 2006-04-08  Eli Zaretskii  <eliz@gnu.org>
10724         * info.el (Info-follow-nearest-node): Doc fix.
10726         * international/mule-cmds.el (set-locale-environment): Make sure
10727         the coding-system preferred by the locale's language has the same
10728         EOL conversion type as the original buffer-file-coding-system.
10729         (locale-language-names): Add a few MS Windows language codes.
10731 2006-04-07  Richard Stallman  <rms@gnu.org>
10733         * simple.el (eval-expression): Doc fix.
10735         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
10736         (eval-defun): Doc fixes.
10738 2006-04-07  Reiner Steib  <Reiner.Steib@gmx.de>
10740         * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
10742 2006-04-07  Nick Roberts  <nickrob@snap.net.nz>
10744         * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
10745         GDB list command without argument for greater generality.
10747 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
10749         * subr.el (string-or-null-p): New function.
10751         * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
10753         * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
10755         * files.el: Update comment about safe-local-variable declarations.
10757 2006-04-06  J.D. Smith  <jdsmith@as.arizona.edu>
10759         * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
10760         See idlwave.org.
10762         * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
10763         See idlwave.org.  Includes code to obsolete idlw-rinfo.el.
10765         * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
10766         See idlwave.org.
10768         * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
10769         version 6.0 (minimal changes).  See idlwave.org.
10771         * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
10772         6.0 (minimal changes).  See idlwave.org.
10774         * progmodes/idlw-rinfo.el: File obsoleted and removed.
10776 2006-04-06  Romain Francoise  <romain@orebokech.com>
10778         * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
10779         symmetric encryption features and a new asynchronous interface to
10780         GnuPG.  This new version is version 1.4, plus whitespace changes.
10782 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
10784         * files.el: Move some `safe-local-variable' declarations to the
10785         respective files.
10787         * textmodes/ispell.el (ispell-check-comments)
10788         (ispell-local-dictionary): Mark as safe.
10790         * abbrev.el (abbrev-mode): Mark as safe.
10792         * add-log.el (change-log-default-name): Mark as safe.
10794         * textmodes/reftex-vars.el (reftex-vref-is-default)
10795         (reftex-fref-is-default, reftex-level-indent)
10796         (reftex-guess-label-type): Mark as safe.
10798         * textmodes/fill.el (colon-double-space): Mark as safe.
10800         * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
10801         (sentence-end-double-space, sentence-end-without-period)
10802         (sentence-end-without-space, sentence-end, sentence-end-base)
10803         (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
10805 2006-04-06  Kim F. Storm  <storm@cua.dk>
10807         * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
10808         the :set-after list.
10809         (ido-downcase-unc-hosts): New user option.  Default on.
10810         (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
10811         when it is set, as regexps are now applied on the fly.
10812         (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
10813         Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
10814         on the fly, but only when ido-process-ignore-lists is set.
10815         Do case insensitive filtering if ido-downcase-unc-hosts is set.
10816         Only downcase names if ido-downcase-unc-hosts is set.
10818 2006-04-06  Juanma Barranquero  <lekktu@gmail.com>
10820         * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
10822         * woman.el (WoMan-xref-man-page): Fix call to `substring'.
10824 2006-04-05  Kim F. Storm  <storm@cua.dk>
10826         * ido.el (ido-mode): Set after ido-unc-hosts and
10827         ido-ignore-unc-host-regexps.
10828         (ido-save-history): Save ido-unc-hosts-cache.
10829         (ido-load-history): Load ido-unc-hosts-cache.
10830         (ido-reread-directory): Refresh unc hosts cache in // dir.
10832         * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
10833         to nil while displaying slash screen.
10835 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
10837         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
10838         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
10840 2006-04-05  Kenichi Handa  <handa@m17n.org>
10842         * international/characters.el: Setup cases of Latin, Greek, and
10843         Cyrillic characters in CJK charsets.
10845 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
10847         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
10848         default-enable-multibyte-characters.  This reverts the change from
10849         revision 6.17 which is no longer necessary because the passphrase
10850         is sent separately now.  GnuPG messages are unreadable under
10851         multibyte locales with default-enable-multibyte-characters set to nil.
10853 2006-04-04  Andreas Schwab  <schwab@suse.de>
10855         * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
10856         and `byte-compile-warnings' as `safe-local-variable'.
10858 2006-04-04  Dan Nicolaescu  <dann@ics.uci.edu>
10860         * man.el (Man-mode-map): Restore the \r binding.
10861         (Man-abstract-xref-man-page): If Man-target-string is a function,
10862         call it.
10863         (Man-highlight-references): Use Man-default-man-entry to get the
10864         target.  Deal with xrefs too.
10865         (Man-highlight-references0): Don't call the target function.
10867         * woman.el (WoMan-xref-man-page): Strip the section number, woman
10868         cannot deal with it.
10870 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
10872         * pgg-gpg.el: Clean up process buffers every time gpg processes
10873         complete.
10875 2006-04-04  Kenichi Handa  <handa@m17n.org>
10877         * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
10878         here.
10879         (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
10880         Temporarily bind inhibit-field-text-motion to t.
10882 2006-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10884         * startup.el (normal-splash-screen): Only set mode-line-format in the
10885         splash buffer, so as not to interfere when debugging the code.
10886         Ignore errors when switching buffer.
10888 2006-04-03  Romain Francoise  <romain@orebokech.com>
10890         * dired.el (dired-dnd-protocol-alist): Fix typo.
10892 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
10894         * savehist.el (savehist): Add :version.
10895         (savehist-ignored-variables): New variable.
10896         (savehist-minibuffer-hook): Don't save variables listed in
10897         `savehist-ignored-variables'.
10899         * dired.el (dired-dnd-protocol-alist): Mention that change does
10900         only apply to new buffers in doc string.
10902 2006-04-03  Lennart Borgman  <lennart.borgman.073@student.lu.se>  (tiny change)
10904         * recentf.el (recentf-open-files-item): Include newline in button
10905         field, so opening a file will work, when the point is at the end
10906         of the file name.  Allow, for example, to [i]search a file by
10907         extension and just push RET to open it.
10909 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
10911         * pgg-gpg.el (pgg-gpg-process-filter)
10912         (pgg-gpg-wait-for-completion): Check if buffer is alive.
10914         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
10915         lines, temporary fix.
10917 2006-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
10919         * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
10921 2006-04-02  Richard Stallman  <rms@gnu.org>
10923         * progmodes/compile.el (compilation-message-face): Make it defcustom.
10925 2006-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
10927         * ibuf-macs.el (define-ibuffer-column): Add a new key:
10928         header-mouse-map.
10930         * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
10931         (ibuffer-mode-header-map): New keymaps.
10932         (ibuffer-update-title-and-summary): Enable mouse face highlighting
10933         and keybindings for column headers.
10934         (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
10935         property.
10937 2006-04-02  Drew Adams  <drew.adams@oracle.com>  (tiny change)
10939         * speedbar.el (speedbar-after-create-hook): Doc fix.
10941 2006-04-02  Michael Ernst  <mernst@alum.mit.edu>
10943         * shell.el (shell-directory-tracker)
10944         (shell-dynamic-complete-command): Doc fixes.
10946 2006-04-01  Matt Hodges  <MPHodges@member.fsf.org>
10948         * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
10949         terminals.
10951 2006-04-01  Kim F. Storm  <storm@cua.dk>
10953         * ido.el (ido-unc-hosts-cache): New defvar.
10954         (ido-unc-hosts): If value of defcustom is a function, call it to
10955         get list of UNC hosts.  Add function-item choices to specify
10956         ido-unc-hosts-net-view or user function.
10957         (ido-ignore-unc-host-regexps): New defcustom.
10958         (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
10959         (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
10960         (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
10962 2006-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10964         * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
10965         wwidth.
10967 2006-03-31  Juanma Barranquero  <lekktu@gmail.com>
10969         * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
10970         (ido-max-work-file-list, ido-switch-buffer)
10971         (ido-read-file-name-as-directory-commands):
10972         Fix typos in docstrings.
10974 2006-03-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10976         * term/mac-win.el (mac-system-coding-system): Define and use after
10977         Mac-specific coding systems are ready.
10979 2006-03-27  Romain Francoise  <romain@orebokech.com>
10981         * net/rcirc.el (rcirc-connect): Add autoload cookie.
10983         * ldefs-boot.el: Update.
10985 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
10987         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
10988         passphrases when it is not needed.
10989         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
10990         passphrase stuff from gpg, should only be necessary when you use
10991         gpg with a smartcard.
10993 2006-03-27  Nick Roberts  <nickrob@snap.net.nz>
10995         * comint.el (comint-dynamic-list-completions): Allow user to
10996         select *Completions* buffer.
10998 2006-03-27  Carsten Dominik  <dominik@science.uva.nl>
11000         * textmodes/org.el (org-get-level-face): Fix bug with level counting.
11002 2006-03-26  Andreas Schwab  <schwab@suse.de>
11004         * progmodes/gud.el (gdb): Only complain about multiple debugging
11005         when the gdb process is still running.
11007 2006-03-25  Eli Zaretskii  <eliz@gnu.org>
11009         * mail/rmail.el (tool-bar-map): Defvar it.
11010         (rmail-tool-bar-map): Tool-bar buttons for Rmail.
11011         (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
11013 2006-03-25  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
11015         * help.el (print-help-return-message): Suggest to use
11016         display-buffer instead of switch-to-buffer-other-window to restore
11017         the previous window without selecting it.
11019 2006-03-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11021         * frame.el (select-frame-by-name): Call x-focus-frame also when
11022         window-system is mac.
11024         * term/mac-win.el: Adjust Courier font specifications in
11025         x-fixed-font-alist.
11026         (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
11027         when directly encoding to UTF-16 in native byte order, no BOM.
11029 2006-03-25  Kim F. Storm  <storm@cua.dk>
11031         * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
11032         (cua--init-keymaps): Use it instead of fixed C-return.
11033         (cua-mode): Set after it.
11035         * emulation/cua-rect.el (cua--init-rectangles):
11036         Use cua-rectangle-mark-key instead of fixed C-return.
11038 2006-03-25  Nick Roberts  <nickrob@snap.net.nz>
11040         * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
11041         "run" in .gdbinit.
11042         (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
11044 2006-03-24  Romain Francoise  <romain@orebokech.com>
11046         * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
11047         `display-buffer-other-frame'.
11049 2006-03-24  Kim F. Storm  <storm@cua.dk>
11051         * apropos.el (apropos-synonyms): Add selection => region.
11053 2006-03-24  Nick Roberts  <nickrob@snap.net.nz>
11055         * progmodes/gdb-ui.el (gdb-var-create-regexp)
11056         (gdb-var-list-children-regexp, gdb-var-update-regexp)
11057         (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
11058         (gdb-data-list-register-values-regexp)
11059         (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
11060         Future proof against new fields being added to MI output.
11061         (gdb-send): Don't treat backslashes for program input as
11062         continuations.
11063         (gdb-assembler-handler): Don't use window-start for this handler.
11064         (gdb-frame-handler): Don't change to hollow arrow if overlay
11065         arrow doesn't move to new frame.
11067 2006-03-24  Nick Roberts  <nickrob@snap.net.nz>
11069         * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
11070         prevent compiler warnings.
11071         (gdb-stopped): Check for gud-last-last-frame (case: signal).
11072         (breakpoint-disabled): Make lighter for contrast with overlay arrow.
11073         (gdb-assembler-custom): Use hollow-right-triangle for assembler
11074         buffer too.
11076 2006-03-23  Reiner Steib  <reinersteib+gmane@imap.cc>
11078         * pgg-gpg.el (pgg-gpg-update-agent): Check for
11079         make-network-process, so we can use the same code in Gnus v5-10
11080         too and have this file fully synchronized with that release.
11082 2006-03-23  Romain Francoise  <romain@orebokech.com>
11084         * ibuf-ext.el (ibuffer-read-filter-group-name):
11085         Use `ibuffer-generate-filter-groups' to make completion list match
11086         the filter groups that are really displayed in the Ibuffer buffer.
11087         (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
11089 2006-03-23  Kenichi Handa  <handa@m17n.org>
11091         * international/mule-cmds.el (sort-coding-systems): Describe that
11092         the argument is modified in docstring.
11094 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
11096         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
11097         (pgg-gpg-update-agent): New function.
11098         (pgg-gpg-use-agent-p): New function.
11099         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
11100         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
11101         (pgg-gpg-sign-region): Use it.
11103 2006-03-21  Chong Yidong  <cyd@stupidchicken.com>
11105         * cus-edit.el (custom-face-set): Call custom-push-theme before
11106         face-spec set so that `changed' theme is correctly saved.
11107         (custom-face-reset-standard): Reset to recalculated face rather
11108         than defface spec.
11110         * custom.el (custom-push-theme): Only save `changed' theme if the
11111         current face does not match the defface specs.
11113 2006-03-21  Simon Josefsson  <jas@extundo.com>
11115         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
11116         <wilde@sha-bang.de>.
11117         (pgg-gpg-use-agent): New variable.
11118         (pgg-gpg-process-region): Use it.
11119         (pgg-gpg-encrypt-region): Likewise.
11120         (pgg-gpg-encrypt-symmetric-region): Likewise.
11121         (pgg-gpg-decrypt-region): Likewise.
11122         (pgg-gpg-sign-region): Likewise.
11123         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
11125 2006-03-21  Carsten Dominik  <dominik@science.uva.nl>
11127         * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
11128         bracket links.
11130 2006-03-21  Kim F. Storm  <storm@cua.dk>
11132         * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
11133         fringe-indicator-alist instead of modifying global value.
11134         (gdb-frame-handler): Likewise.
11136 2006-03-21  Nick Roberts  <nickrob@snap.net.nz>
11138         * diff-mode.el (diff-function): Make it inherit from diff-header
11139         instead of diff-context.
11141         * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
11142         bitmap.
11143         (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
11144         change names in macro above for consistency.
11145         (gdb-frame-handler): Use hollow-right-triangle for all selected
11146         frames which except the innermost (where execution has stopped).
11147         (gdb-reset): Reset buffer-local values of overlay-arrow.
11149 2006-03-20  Richard Stallman  <rms@gnu.org>
11151         * simple.el (set-mark-command): Doc fix.
11153         * files.el (display-buffer-other-frame): New command.
11154         (ctl-x-4-map): Bind C-x 5 C-o to it.
11156 2006-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11158         * jit-lock.el (jit-lock-function): Check for the actual defer-timer
11159         rather than just defer-time, in case defer-time has been changed but
11160         the timer isn't running yet.
11161         (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
11163 2006-03-19  Luc Teirlinck  <teirllm@auburn.edu>
11165         * help-mode.el (help-follow-symbol): New function.
11166         Essentially identical to the old `help-follow', but do not let
11167         `push-button' do the work when on an xref.
11168         (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
11170 2006-03-19  Richard Stallman  <rms@gnu.org>
11172         * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
11173         preceded by the word `program'.
11174         (help-follow-mouse, help-follow): Throw error if not on xref.
11175         Delete no longer used args.
11177 2006-03-20  Nick Roberts  <nickrob@snap.net.nz>
11179         * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
11180         annotation ensure gud-overlay-arrow-position is redisplayed.
11182 2006-03-19  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
11184         * textmodes/bibtex.el (bibtex-include-OPTkey)
11185         (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
11186         (bibtex-autokey-name-case-convert)
11187         (bibtex-autokey-titleword-case-convert): Make these the aliases
11188         for the following two variables.
11189         (bibtex-autokey-name-case-convert-function)
11190         (bibtex-autokey-titleword-case-convert-function): Make these the
11191         real names.
11192         (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
11193         bibtex-font-lock-crossref sublists.
11194         (bibtex-mode): Revert 2005-12-30 change (which made
11195         completion-ignore-case buffer-local).
11196         (bibtex-url): Simplify.
11198 2006-03-19  Kim F. Storm  <storm@cua.dk>
11200         * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
11201         cursor property value to 2 (to align with C level change).
11203 2006-03-19  Bill Wohler  <wohler@newt.com>
11205         * image.el (image-load-path-for-library): Shorten first line in
11206         docstring.
11208 2006-03-18  Richard Stallman  <rms@gnu.org>
11210         * mail/rmail.el (rmail-reply-regexp): Undo previous change.
11212 2006-03-18  Ben North  <ben@redfrontdoor.org>  (tiny change)
11214         * isearch.el (isearch-other-meta-char): Handle user bindings for
11215         shifted control characters.
11217 2006-03-18  Agustin Martin  <agustin.martin@hispalinux.es>
11219         * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
11220         part that matches email addresses, file names, etc.
11222 2006-03-18  Eli Zaretskii  <eliz@gnu.org>
11224         * term/w32-win.el (mouse-set-font):
11225         Mention w32-list-proportional-fonts in the doc string.
11227 2006-03-18  Kim F. Storm  <storm@cua.dk>
11229         * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
11230         (ido-unc-hosts): New user option to explicitly define list of know
11231         UNC-style hosts for completion.
11232         (ido-cache-unc-host-shares-time): New user option.
11233         (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
11234         New helper functions for UNC file-name support.
11235         (ido-may-cache-directory): Check for UNC host.  Simplify.
11236         (ido-wash-history): Clean out old UNC hosts.
11237         (ido-nonreadable-directory-p): UNC hosts are always readable.
11238         (ido-directory-too-big-p): UNC hosts are never too big.
11239         (ido-set-current-directory): Handle UNC root path.
11240         (ido-file-name-all-completions): Complete UNC host names from
11241         ido-unc-hosts list.  Cache UNC host shares.
11242         (ido-make-file-list-1): Don't filter UNC root.
11243         (ido-exhibit): Check for // in root directory, and switch to UNC
11244         mode by setting ido-current-directory to //.
11246 2006-03-17  Luc Teirlinck  <teirllm@auburn.edu>
11248         * cus-edit.el (customize-changed-options): Mention explicit
11249         version number as default in prompt.
11251 2006-03-17  Bill Wohler  <wohler@newt.com>
11253         * image.el (image-load-path-for-library): Minor docstring fix.
11255 2006-03-17  Carsten Dominik  <dominik@science.uva.nl>
11257         * textmodes/org.el (org-read-date): Include subgroup 5 into
11258         replacement text.
11259         (org-popup-calendar-for-date-prompt): Fix customization type.
11261 2006-03-17  Nick Roberts  <nickrob@snap.net.nz>
11263         * progmodes/gdb-ui.el (gud-watch): Provide completion.
11264         (gdb-continuation): New variable.
11265         (gdb-send): Deal with continuation lines.
11267         * progmodes/gud.el (gud-gdb-complete-command)
11268         (gud-gdb-run-command-fetch-lines): Adapt for use with watch
11269         expressions.
11270         (gud-tooltip-mode): Use buffer-local value.
11272 2006-03-16  Kim F. Storm  <storm@cua.dk>
11274         * ido.el (ido-edit-input): Use selected match, if any.
11276 2006-03-16  Bill Wohler  <wohler@newt.com>
11278         * image.el (image-load-path-for-library): Prefer user's images in
11279         image-load-path.
11281 2006-03-16  Martin Rudalics  <rudalics@gmx.at>
11283         * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
11284         when checking for attempt to drag leftmost or rightmost scrollbar.
11286 2006-03-16  Nick Roberts  <nickrob@snap.net.nz>
11288         * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
11289         (gdb-force-mode-line-update): New function.
11290         (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
11291         (gdb-exited): Use them.
11292         (gdb-signal): New function.
11293         (gdb-annotation-rules): Provide a rule for it.
11295 2006-03-16  Kenichi Handa  <handa@m17n.org>
11297         * international/mule.el (auto-coding-regexp-alist): Add entries
11298         for Unicode BOM.
11300         * sort.el (sort-build-lists): Temporarily bind
11301         inhibit-field-text-motion to t.
11303 2006-03-15  Luc Teirlinck  <teirllm@auburn.edu>
11305         * locate.el (locate-command, locate-make-command-line)
11306         (locate-fcodes-file, locate-update-command)
11307         (locate-prompt-for-command, locate, locate-with-filter)
11308         (locate-get-file-positions): Doc fixes.
11309         (locate-buffer-name, locate-header-face): Remove leading `*' in
11310         defcustom.
11311         (locate-filter-output): Use `keep-lines' instead of its alias
11312         `delete-non-matching-lines'.
11313         (locate-get-filename, locate-get-dirname): Add introductory comment.
11314         (locate-find-directory-other-window): Give appropriate error
11315         message if used outside main listing.
11317 2006-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11319         * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
11320         the new extend-region feature.
11321         (font-lock-after-change-function): Update correspondingly.
11322         * jit-lock.el (jit-lock-after-change): Update correspondingly.
11323         * progmodes/grep.el (font-lock-lines-before): Don't disable.
11325 2006-03-15  Bill Wohler  <wohler@newt.com>
11327         * image.el (image-load-path-for-library): Fix example by not
11328         recommending that one binds image-load-path.  Just defvar it to
11329         placate compiler and only use it if previously defined.
11331 2006-03-15  Carsten Dominik  <dominik@science.uva.nl>
11333         * textmodes/org.el (org-insert-centered): Use `string-width' to
11334         make underlining work for wide characters.
11335         (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
11336         TAB to `org-cycle', to make sure that no binding in
11337         `outline-mode-map' can supercede it.
11339 2006-03-14  Ken Manheimer  <ken.manheimer@gmail.com>
11341         * allout.el: Increment version to 2.2.1 in file commentary.
11343         (allout-version): Increment to 2.2.1.
11345         (allout-default-layout): New customization variable, used when the
11346         file lacks a specific allout-layout.  Uses allout-layout-type for
11347         recursively nested definition.
11349         (allout-layout-type): Widget defining allout layouts, necessary for
11350         self-recursive definition.
11352         (allout-mode): Incorporate allout-default-layout as fallback for
11353         allout-layout.
11355         (allout-layout): Mark as 'safe-local-variable', and refer mention
11356         fallback to `allout-default-layout' in absence of a specified value.
11357         (allout-passphrase-verifier-string)
11358         (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
11360         (allout-file-passphrase-verifier-string): Obsolete variable, removed.
11362         (allout-get-encryption-passphrase-verifier): Use correct name of
11363         passphrase verifier in docstring.
11365 2006-03-15  Nick Roberts  <nickrob@snap.net.nz>
11367         * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
11368         elements.
11369         (gdb-find-watch-expression): Make it work for arrays too.
11370         Follow change to gdb-var-list.
11371         (gud-watch): Allow the user to enter variable name with a prexix
11372         arg.  Create keybindings.
11373         (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
11374         (gdb-var-list-children-handler, gdb-var-update-handler)
11375         (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
11376         (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
11377         Follow change to gdb-var-list.
11378         (gdb-starting): Don't show the overlay arrows when program is running.
11380         * progmodes/gud.el (gud-speedbar-buttons): Follow change to
11381         gdb-var-list.
11383 2006-03-14  Bill Wohler  <wohler@newt.com>
11385         * image.el (image-load-path-for-library): Pass value of path
11386         rather than symbol.  Always return list of directories.
11387         Guarantee that image directory comes first.
11389 2006-03-14  Alan Mackenzie  <acm@muc.de>
11391         * font-core.el (font-lock-extend-region\(-function\)?.):
11392         New function/variable.
11394         * font-lock.el (font-lock-after-change-function):
11395         Call font-lock-extend-region.  Obey font-lock-lines-before.
11396         (font-lock-default-fontify-region): Remove reference to
11397         font-lock-lines-before.
11399         * jit-lock.el (jit-lock-after-change):
11400         Call font-lock-extend-region.  Obey font-lock-lines-before.
11402 2006-03-14  David Ponce  <david@dponce.com>
11404         * tree-widget.el (tree-widget-themes-load-path)
11405         (tree-widget-themes-directory, tree-widget-theme): Doc fix.
11407 2006-03-13  Ryan Yeske  <rcyeske@gmail.com>
11409         * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
11410         (rcirc-print): Mark the start of text at the end of the prompt.
11411         (rcirc-track-minor-mode): Add autoload cookie.
11412         (rcirc-update-activity-string): Add space to front of mode-line
11413         indicator.
11415 2006-03-13  Miles Bader  <miles@gnu.org>
11417         * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
11418         (rcirc-abbrev-nick): Remove function.
11419         (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
11421 2006-03-13  David Ponce  <david@dponce.com>
11423         * tree-widget.el: Handle themes across all occurrences of the main
11424         themes sub-directory found in tree-widget-themes-load-path.
11425         (tree-widget-themes-directory, tree-widget-theme): Doc fix.
11426         (tree-widget--locate-sub-directory): Return all occurrences.
11427         (tree-widget-themes-path): New function.
11428         Replace tree-widget-themes-directory, and return a list of directories.
11429         (tree-widget-set-parent-theme)
11430         (tree-widget-lookup-image): Use it.
11432 2006-03-13  Carsten Dominik  <dominik@science.uva.nl>
11434         * textmodes/org.el (org-link-search): Avoid self-matching of
11435         links, allow target text to be distributed over several lines.
11436         (org-search-not-link): New function.
11437         (org-set-regexps-and-options, org-get-current-options):
11438         New startup options.
11439         (org-export-as-html): Take odd-level setting from local variable.
11440         (org-fontify-emphasized-text): New option.
11441         (org-set-font-lock-defaults): Include emphasized text.
11442         (org-follow-mhe-link): Allow folder-only links, fix folder name.
11443         (org-font-lock): Customize group renamed from `org-faces'.
11445 2006-03-13  John Paul Wallington  <jpw@pobox.com>
11447         * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
11448         keyword; require `ibuf-ext' feature.  Thanks to Zhang Wei.
11450 2006-03-12  Luc Teirlinck  <teirllm@auburn.edu>
11452         * cus-start.el (all): Delete :version keyword for members of the
11453         fringe group, since the entire group is new in 22.1.
11455 2006-03-13  Nick Roberts  <nickrob@snap.net.nz>
11457         * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
11458         map if value is hexadecimal (an address).
11459         (gud-watch): Only search roots for existing watch expressions.
11460         (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
11461         prevent caching problems with speedbar-update-directory-contents.
11463 2006-03-12  Juri Linkov  <juri@jurta.org>
11465         * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
11466         before comparing with `low' and `warn'.
11468         * info.el (Info-dir-remove-duplicates): Move point to the
11469         beginning of the current line after deleting the entries from
11470         redundant heading.  Use marker for `limit' and compare it with
11471         point before calling `re-search-forward'.
11473 2006-03-11  Luc Teirlinck  <teirllm@auburn.edu>
11475         * simple.el (yank): Fix typo in docstring.
11477 2006-03-11  Ryan Yeske  <rcyeske@gmail.com>
11479         * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
11480         messages, where "D" is the 6th character.
11482 2006-03-11  Eli Zaretskii  <eliz@gnu.org>
11484         * simple.el (yank): Fix last change.
11486 2006-03-11  David Ponce  <david@dponce.com>
11488         * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
11489         merging elements from the standard ispell-dictionary-alist.
11490         (ispell-aspell-add-aliases): Add aliases to the passed dictionary
11491         alist, and return the new alist.
11493 2006-03-11  Richard Stallman  <rms@gnu.org>
11495         * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
11497         * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
11498         the way it is implemented is too unclean.
11500         * simple.el (kill-region, yank): Doc fix.
11502         * battery.el (battery-echo-area-format): Doc fix.
11503         (battery-mode-line-format): Likewise.
11504         (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
11505         (battery-linux-proc-acpi): Ignore batteries that say "charged".
11507 2006-03-11  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>
11509         * progmodes/octave-mod.el (octave-indent-for-comment):
11510         Behave according to do string.
11512 2006-03-11  Agustin Martin  <agustin.martin@hispalinux.es>
11514         * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
11515         Be visible only if major mode is Mail Mode.
11517         * textmodes/flyspell.el (flyspell-external-point-words)
11518         (flyspell-process-localwords): Fix last changes.
11520 2006-03-11  Eli Zaretskii  <eliz@gnu.org>
11522         * calendar/holidays.el (list-holidays): Doc fix.
11524         * international/mule.el (auto-coding-alist): Add .odt
11525         (OpenOffice's open document) files.
11527         * files.el (auto-mode-alist): Add .odt (OpenOffice's open
11528         document) files.  Mention in the doc string the need to sync with
11529         auto-coding-alist.
11531 2006-03-10  Chong Yidong  <cyd@stupidchicken.com>
11533         * files.el (hack-local-variables-confirm): Don't prompt for ! if
11534         enable-local-variables is set to always query, or there is no
11535         savable variable.
11537 2006-03-10  Bill Wohler  <wohler@newt.com>
11539         * image.el (image-load-path-for-library): Merge at least three
11540         functions from Gnus and MH-E into this one function that can now
11541         be shared.
11543 2006-03-11  Nick Roberts  <nickrob@snap.net.nz>
11545         * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
11546         gdb-remove-mouse-face and remove help-echo too.
11547         (gdb-enqueue-input): Correct conditional clause.
11549 2006-03-10  Glenn Morris  <rgm@gnu.org>
11551         * calendar/calendar.el (calendar-holidays): Doc fix.
11552         * calendar/holidays.el (list-holidays): Doc fix.
11554 2006-03-10  Nick Roberts  <nickrob@snap.net.nz>
11556         * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
11557         it gets called in gdb-prompt anyway.
11558         (gdb-use-separate-io-buffer): Only restore window arrangement for
11559         gdb-many-windows.
11560         (gdb-enqueue-input): Make it harder to send GDB input when program
11561         is running.
11562         (gdb-buffer-list): New variable.
11563         (gdb-remove-mouse-face): New function.
11564         (gdb-starting): Use it when GDB input won't get sent.
11566 2006-03-08  Juanma Barranquero  <lekktu@gmail.com>
11568         * help.el (view-lossage): Remove trailing whitespace before
11569         inserting "\n".
11571 2006-03-07  Chong Yidong  <cyd@stupidchicken.com>
11573         * files.el (hack-local-variables-confirm):
11574         Set coding-system-for-read to nil before writing to .emacs.
11576         * arc-mode.el (archive-extract): Check if an existing buffer name
11577         comes from a different archive.
11579         * help.el (describe-key-briefly): If KEY is a down event, read and
11580         discard the up event.
11582 2006-03-07  Nick Roberts  <nickrob@snap.net.nz>
11584         * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
11585         be edited and use font-lock-warning-face for any changes.
11587         * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
11588         (gdb-edit-value): Use it to report any errors.
11590 2006-03-07  Juanma Barranquero  <lekktu@gmail.com>
11592         * help.el (describe-key): Remove leftover test code.
11594 2006-03-07  Carsten Dominik  <dominik@science.uva.nl>
11596         * textmodes/org.el: Move defvars out of eval-when-compile.
11597         Use buffer-file-name variable.
11598         (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
11599         arg `file'.
11600         (org-level-faces): Remove startup dependency.
11601         (org-cycle, org-map-tree, org-scan-tags)
11602         (org-remember-handler): Don't call `outline-level' directly.
11603         (org-mhe-search-all-folders): New option.
11604         (org-mhe-get-message-folder-from-index)
11605         (org-mhe-get-message-folder): Fix indexing search.
11606         (org-format-agenda-item): Handle nil TAGS argument.
11607         (org-cleaned-string-for-export, org-activate-target-links)
11608         (org-make-target-link-regexp): Deal with empty radio target list.
11609         (org-tag): New face.
11610         (org-get-level-face): New function.
11611         (org-set-font-lock-defaults): Simplify setup for headlines.
11612         (org-complete): Pass common substring to `display-completion-list'.
11614 2006-03-06  David Ponce  <david@dponce.com>
11616         * tree-widget.el: Update Commentary header.
11617         (tree-widget-theme-name): Ignore parent themes.
11618         (tree-widget-set-parent-theme): New function.
11619         (tree-widget-set-theme): Use it.
11620         (tree-widget-set-image-properties): Move definition.  Does nothing
11621         if image properties have already been set.
11622         (tree-widget-image-properties): Move definition.  Receive an image
11623         name.  Set the :pointer property.
11624         (tree-widget-lookup-image): Doc fix.  Search in parent themes.
11625         Don't set the :pointer image property.
11626         (tree-widget-convert-widget): New function.  Handle :dynargs
11627         compatibility here.
11628         (tree-widget): Use it to :convert-widget.  Add the :expander-p
11629         predicate to control when the :expander function is entered.
11630         Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
11631         (tree-widget-value-create): Handle :expander-p.  widget-apply
11632         :expander.
11633         (tree-widget-expander-p): New function.  Default value of the
11634         :expander-p property.
11636 2006-03-06  Chong Yidong  <cyd@stupidchicken.com>
11638         * help.el (describe-key): Properly handle the return value of
11639         read-key-sequence when grabbing an up-event.  Cleanup mouse-1
11640         remaps.  Handle string and vector `follow-link' values.
11642 2006-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11644         * complete.el (PC-expand-many-files): Try be more careful when parsing
11645         the shell's output.
11647 2006-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11649         * outline.el (hide-sublevels): Provide better interactive default.
11651 2006-03-06  Kenichi Handa  <handa@m17n.org>
11653         * international/fontset.el (create-fontset-from-fontset-spec):
11654         Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
11656 2006-03-05  Luc Teirlinck  <teirllm@auburn.edu>
11658         * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
11659         backslashes instead of one in regexp.
11660         (gud-tooltip-dereference): Add missing optional argument.
11662 2006-03-04  John Paul Wallington  <jpw@pobox.com>
11664         * wdired.el (toplevel): Require `cl' at compile-time.
11666 2006-03-04  Andreas Schwab  <schwab@suse.de>
11668         * server.el (server-process-filter): Handle errors during
11669         evaluation of the argument.
11671 2006-03-03  John Paul Wallington  <jpw@pobox.com>
11673         * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
11674         escape parentheses at beginning of line.
11675         (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
11676         (t-mouse-mode): Remove period from end of error message.
11678 2006-03-03  Agustin Martin  <agustin.martin@hispalinux.es>
11680         * textmodes/flyspell.el (flyspell-process-localwords):
11681         Be case-sensitive.
11683 2006-03-03  Martin Rudalics  <rudalics@gmx.at>
11685         * cus-edit.el (custom-quote): Remove function, since it has been
11686         moved to custom.el.
11688         * font-lock.el (lisp-font-lock-keywords-2)
11689         * emacs-lisp/rx.el (rx-check-any, rx-check-not)
11690         * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
11691         they have no special meaning.
11693         * midnight.el (clean-buffer-list): Handle case where base-buffer of
11694         indirect buffer gets killed before indirect buffer.  Use dolist.
11696 2006-03-03  Ken Manheimer  <ken.manheimer@gmail.com>
11698         * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
11699         value instead of a literal constant (1) on more pauses.
11701 2006-03-03  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>  (tiny change)
11703         * textmodes/flyspell.el (flyspell-external-point-words):
11704         Be case-sensitive.
11706 2006-03-03  Ryan Yeske  <rcyeske@gmail.com>
11708         * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
11709         with "www".
11711 2006-03-03  Ken Manheimer  <ken.manheimer@gmail.com>
11713         * allout.el: Restablish intermediate missing comment header to
11714         preserve outline structure.
11715         (allout-beginning-of-current-entry): Skip invisible text.
11716         (allout-open-topic): Fix opening a topic at end-of-buffer.
11717         (allout-minor-mode): Move nearer to allout-mode function.
11719 2006-03-02  Carsten Dominik  <dominik@science.uva.nl>
11721         * textmodes/org.el (org-paste-subtree): Remove (debug) form.
11723 2006-03-02  Nick Roberts  <nickrob@snap.net.nz>
11725         * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
11726         is nil.
11728         * progmodes/gud.el (gud-speedbar-menu-items):
11729         Use buffer-local-value and add missing :visible keyword.
11731         * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
11733 2006-03-01  Carsten Dominik  <dominik@science.uva.nl>
11735         * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
11736         must be `follow-link'.
11738         * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
11740         * textmodes/org.el (org-export-as-html): Fix bugs in HTML
11741         formatting: No nested anchors.
11742         (org-all-targets): Fix bug with XEmacs compatibility.
11743         (org-read-date): Add (require 'parse-time).
11744         (org-set-tags): Fix bug with extra inserted space.
11745         (org-export-html-style): Define a style class for targets.
11746         (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
11747         (org-hide-leading-stars): New option.
11748         (org-hide): New face.
11749         (org-set-font-lock-defaults): Allow to hide leading stars.
11750         (org-get-legal-level, org-tr-level): New functions.
11751         (org-odd-levels-only): New option.
11752         (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
11753         (org-demote, org-promote): Deal with double-star levels.
11754         (org-convert-to-odd-levels): New command.
11756 2006-03-01  Nick Roberts  <nickrob@snap.net.nz>
11758         * speedbar.el (speedbar-update-localized-contents): Try to
11759         preserve window-start.
11760         (speedbar-update-directory-contents): Try to preserve window-start
11761         and window-point.
11762         (speedbar-update-special-contents): Don't move back to start of window.
11764         * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
11765         gdb-speedbar-timer-fn.  Use speedbar-refresh instead of
11766         speedbar-timer-fn.
11767         (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
11768         (gdb-speedbar-expand-node): Use speedbar-delete-subblock
11769         instead of gdb-speedbar-timer-fn.
11771 2006-02-28  Jay Belanger  <belanger@truman.edu>
11773         * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
11774         (math-compose-expr): Use latex option when calling
11775         `math-compose-tex-matrix' for latex mode.
11777 2006-02-28  Nick Roberts  <nickrob@snap.net.nz>
11779         * speedbar.el: Re-instate comments about developing for speedbar
11780         [this is what info and gdb-ui use even if better methods exist now].
11782         * t-mouse.el: New file.
11783         (t-mouse-tty): Use with-temp-buffer.  Add more terminal types.
11784         (t-mouse-lispy-buffer-posn-from-coords): Remove.
11785         (t-mouse-make-event-element): Use posn-at-x-y instead.
11786         (t-mouse-make-event): Deal with Fedora Core 3.
11787         (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
11788         (t-mouse-mouse-position-function): New function.  Use it instead
11789         of advising mouse-position.
11790         (t-mouse-mode): New minor mode.
11791         (t-mouse-stop, t-mouse-run): Remove.  Use t-mouse-mode instead.
11793 2006-02-27  Glenn Morris  <rgm@gnu.org>
11795         * calendar/calendar.el (calendar-holidays): Doc fix.
11797 2006-02-27  Nick Roberts  <nickrob@snap.net.nz>
11799         * progmodes/gdb-ui.el (gdb-source-window): New variable.
11800         Re-introduce the concept of a source window.
11801         (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
11802         consistency with get-buffer-create.
11803         (def-gdb-auto-update-handler, gdb-info-locals-handler)
11804         (gdb-data-list-register-values-handler)
11805         (gdb-stack-list-locals-handler): Try to preserve window-start as
11806         well as window-point.
11807         (gdb-display-source-buffer): New function (old concept).
11808         (gdb-goto-breakpoint): Use it.
11810         * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
11811         for gdb-ui/gdb-mi (old concept).
11813 2006-02-27  Carsten Dominik  <dominik@science.uva.nl>
11815         * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
11816         binding.
11818         * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
11820         * textmodes/reftex-sel.el (reftex-select-label-map)
11821         (reftex-select-bib-map): Add `follow-mouse' binding.
11823 2006-02-26  Luc Teirlinck  <teirllm@auburn.edu>
11825         * jka-cmpr-hook.el (jka-compr-compression-info-list)
11826         (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
11827         Give :set functions to provide automatic updating.
11828         Update docstring.  Give compiler defvars early in the file
11829         and move the defcustoms to a later spot where all called functions
11830         are defined.
11831         (jka-compr-file-name-handler-entry): Doc fix.
11832         (jka-compr-compression-info-list--internal)
11833         (jka-compr-mode-alist-additions--internal)
11834         (jka-compr-load-suffixes--internal): New variables.
11835         (jka-compr-install): Set the three above variables.
11836         Update `load-file-rep-suffixes' instead of `load-suffixes'.
11837         (jka-compr-update, jka-compr-set): New functions.
11838         (auto-compression-mode): Doc fix.
11840         * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
11841         Update `load-file-rep-suffixes' instead of `load-suffixes'.
11842         Use jka-compr-compression-info-list--internal,
11843         jka-compr-mode-alist-additions--internal and
11844         jka-compr-load-suffixes--internal.
11846         * files.el (load-library):
11847         * loadhist.el (file-loadhist-lookup):
11848         * startup.el (command-line):
11849         * subr.el (locate-library):
11850         * emacs-lisp/autoload.el (update-directory-autoloads):
11851         * emacs-lisp/find-func.el (find-library-suffixes):
11852         Use `get-load-suffixes' instead of `load-suffixes'.
11854         * subr.el (locate-library):
11855         * emacs-lisp/find-func.el (find-library-name):
11856         Use `load-file-rep-suffixes' instead of '("").
11858 2006-02-26  Kim F. Storm  <storm@cua.dk>
11860         * ido.el (ido-save-history, ido-load-history): Simplify.
11861         Don't use find-file-noselect to avoid interference from other modes.
11863 2006-02-25  Thien-Thi Nguyen  <ttn@gnu.org>
11865         * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
11866         to use the default shell if filename is not available.
11867         Reported by Giorgos Keramidas.
11869 2006-02-25  John Williams  <jrw@pobox.com>  (tiny change)
11871         * progmodes/etags.el (tags-completion-table): Do completion from
11872         all the tables in the current list, as documented in the manual.
11874 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11876         * CC Mode Update to 5.31.3.
11878 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11880         * progmodes/cc-mode.el (c-postprocess-file-styles):
11881         Bind inhibit-read-only to t, around the call to
11882         c-remove-any-local-eval-or-mode-variables, so that it works on a
11883         RO file.
11885 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11887         * progmodes/cc-awk.el: Correct a typo.
11889 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11891         * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
11892         c-hungry-delete-backwards, at the request of RMS.  Leave the old
11893         name as an alias.
11895 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11897         * progmodes/cc-mode.el: Correct a typo.
11899 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11901         * progmodes/cc-defs.el: Update the version number to 5.31.3.
11903 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11905         * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
11906         brace-else-brace (error due to mbeg, mend being undefined).
11908 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11910         * progmodes/cc-mode.el: File Local variables: Solve the problem
11911         where both `mode' and c-file-offsets are specified: `mode' will
11912         overwrite c-f-o's settings:
11913         (c-remove-any-local-eval-or-mode-variables): New function.
11914         (c-postprocess-file-styles): Call the above new function, within
11915         c-tentative-buffer-change, to splat `mode' and `eval' before the
11916         second hack-local-variables.
11918 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11920         * progmodes/cc-mode.el:
11921         [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
11922         (c-after-change): Protect the match data with save-match-data.
11923         It was getting corrupted by c-after-change-check-<>-operators.
11925         * cc-defs.el: [Supersedes patch V1.38]:
11926         (top level): Check for a buggy font-lock-compile-keywords ONLY in
11927         XEmacs.  GNU Emacs 22 now has a check which would throw an error here.
11929         * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
11930         with save-match-data.  It was being corrupted when Font Lock was
11931         not enabled.
11933 2006-02-24  Alan Mackenzie  <bug-cc-mode@gnu.org>
11935         * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
11936         Mode and Subword Mode.
11938         * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
11939         real labels ("case 1:" or "foo:") from non-labels ("public:").
11940         (c-forward-objc-directive): Replace c-forward-token-2 with crude
11941         coding; c-f-t-2 doesn't move over a token at EOB.
11943         * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
11945         * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
11946         (c-update-modeline): Concatenate the minor mode indicators
11947         directly onto mode-name, removing c-submode-indicators.
11948         Sometimes, c-s-i got separated from the mode name on the mode line.
11950         * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
11951         (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
11953 2006-02-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
11955         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
11956         error message when there's an evaluation error to show whether
11957         it's loaded from source or not.
11958         (c-filter-ops): Make it available at runtime too to work when
11959         `c-make-init-lang-vars-fun' needs to evaluate from source.
11961 2006-02-24  Juanma Barranquero  <lekktu@gmail.com>
11963         * help.el (help): Revert last part of 2006-02-23 change (deletion
11964         of the `provide' call).
11966 2006-02-23  Juri Linkov  <juri@jurta.org>
11968         * compare-w.el (compare-windows-highlight): Add new value
11969         `persistent' and change :type from `boolean' to `choice'.
11970         (compare-windows-overlays1, compare-windows-overlays2):
11971         New internal variables.
11972         (compare-windows-highlight): If compare-windows-highlight is
11973         `persistent', add current overlays to compare-windows-overlays[12]
11974         instead of adding compare-windows-dehighlight to pre-command-hook.
11975         (compare-windows-dehighlight): Delete all overlays from
11976         compare-windows-overlays[12].
11978         * info.el (Info-search): Don't bind search-spaces-regexp to
11979         Info-search-whitespace-regexp in non-regexp isearch mode.
11981 2006-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11983         * help.el (describe-mode): Pass `mode-name' to format-mode-line.
11985 2006-02-23  Juanma Barranquero  <lekktu@gmail.com>
11987         * textmodes/org.el (org-xemacs-p)
11988         (org-export-html-show-new-buffer, org-table-may-need-update)
11989         (org-insert-item, org-mhe-get-message-real-folder)
11990         (org-mhe-get-message-folder-from-index)
11991         (org-mhe-get-message-folder, org-mhe-get-message-num)
11992         (org-mhe-get-header, org-make-org-heading-search-string)
11993         (org-make-org-heading-camel, org-table-sort-lines)
11994         (org-format-org-table-html, org-format-table-table-html):
11995         Fix typos in docstrings.
11997 2006-02-23  Carsten Dominik  <dominik@science.uva.nl>
11999         * textmodes/org.el (org-cleaned-string-for-export)
12000         (org-solidify-link-text): New function.
12001         (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
12002         XEmacs, just to silence the compiler.
12003         (org-export-as-ascii, org-export-as-html-and-open):
12004         Use `org-cleaned-string-for-export' and create internal links.
12005         (org-follow-mhe-link): Require mh-e, use folder.
12007 2006-02-23  Nick Roberts  <nickrob@snap.net.nz>
12009         * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
12011         * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
12012         gdb-debug-log-length.
12013         (gdb-debug-ring): Rename from gdb-debug-log-ring.  Don't make
12014         it a real ring but...
12015         (gud-gdba-marker-filter): ...make it work like mark-ring.
12016         (gdb-enable-debug): Rename from gdb-enable-debug-log.
12017         (gdb-mouse-jump): New function.  Add bindings.
12019 2006-02-23  Nick Roberts  <nickrob@snap.net.nz>
12021         * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
12022         (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
12023         (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
12024         (gdb-debug-log-length): Customize it's length.
12025         (gud-watch, gdb-var-create-handler): Display function::var format
12026         but don't use to create variable object.
12027         (gdb-var-create-handler): Use message-box in place of message.
12028         (gdb-stopped): Call gdb-exited if signalled.
12030 2006-02-22  Carsten Dominik  <dominik@science.uva.nl>
12032         * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
12034         * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
12036         * textmodes/reftex.el (reftex-locate-file): Search all extensions
12037         if `reftex-try-all-extensions' is set.
12039         * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
12040         fail silently when there is no valid argument at point.
12041         (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
12042         `fail-silently' argument.  From a patch by David Reiter.
12044         * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
12045         New commands.
12046         (org-mark-ring): New variable.
12047         (org-mark-ring-length): New option.
12048         (org-open-at-point, org-goto, org-open-file): Push old position
12049         onto the mark ring.
12050         (org-add-hook): New function.
12051         (org-export-table-remove-special-lines): New option.
12052         (org-skip-comments, org-format-org-table-html): Respect new
12053         option `org-export-table-remove-special-lines'.
12054         (org-open-file): Allow special command configuration for
12055         directory link.
12056         (org-file-apps): Fix bugs in customize type, added setting
12057         for directories.
12058         (org-activate-tags, org-format-agenda-item, org-complete)
12059         (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
12060         (org-get-tags, org-get-buffer-tags, org-open-at-point)
12061         (org-link-search, org-make-org-heading-search-string)
12062         (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
12063         (org-radio-targets, org-file-link-context-use-camel-case)
12064         (org-activate-camels): New options.
12065         (org-update-radio-target-regexp, org-all-targets)
12066         (org-make-target-link-regexp, org-activate-target-links):
12067         New functions.
12068         (org-make-org-heading-search-string): New function.
12069         (org-store-link, org-insert-link): Use new option
12070         `org-file-link-context-use-camel-case'.
12071         (org-activate-camels): Use new option `org-activate-camels'.
12072         (org-link-regexp): Add mhe prefix.
12073         (org-open-at-point, org-store-link): Support for mhe links.
12074         (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
12075         (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
12076         (org-mhe-get-header, org-follow-mhe-link): New functions.
12077         (org-remove-angle-brackets, org-add-angle-brackets):
12078         New functions.
12079         (org-bracket-link-regexp): New constant.
12080         (org-read-date): Fix bug that was rejecting all typed dates.
12081         (org-link-search): Make hierarchy above visible after a match.
12082         (org-follow-bbdb-link): Inhibit electric mode for BBDB.
12083         (org-store-link): Fix bug with link creation when cursor is in
12084         an empty line.
12085         (org-open-at-point): Fix bug with matching a link.
12086         Fixed buggy argument sequence in call to `org-view-tags'.
12087         (org-compile-prefix-format): Set `org-prefix-has-tag'.
12088         (org-prefix-has-tag): New variable.
12089         (org-format-agenda-item): Remove tags from headline
12090         if appropriate.
12091         (org-agenda-remove-tags-when-in-prefix): New option.
12093 2006-02-21  Michael Kifer  <kifer@cs.stonybrook.edu>
12095         * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
12096         Fix the regular expressions.
12098 2006-02-21  Richard M. Stallman  <rms@gnu.org>
12100         * progmodes/sh-script.el (sh-mode): Set shell type based on file name
12101         if there's no other specific basis.
12103         * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
12104         as variables at all.
12105         (unsafep-variable): Rename arg; doc fix.
12107         * abbrevlist.el (list-one-abbrev-table): Add autoload.
12109         * calendar/appt.el (diary-selective-display): Add defvar.
12111         * sort.el (sort-columns): Use Posix arg syntax for `sort'.
12113         * isearch.el (search-whitespace-regexp): Fix custom type.
12115         * help.el (describe-key-briefly): Compute interactive args
12116         in same was as before previous change.
12118         * files.el (enable-local-variables): Doc fix.
12120 2006-02-21  Kim F. Storm  <storm@cua.dk>
12122         * fringe.el: Cleanup as file is now pre-loaded.
12123         (fringe-bitmaps): Initialize unconditionally.
12124         (fringe-mode, set-fringe-style): Remove autoload cookies.
12126 2006-02-21  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
12128         * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
12129         `horizontal-bar'.
12130         (fringe-cursor-alist): Use `horizontal-bar'.
12132 2006-02-20  Kim F. Storm  <storm@cua.dk>
12134         * fringe.el (fringe-bitmaps): Update to new bitmap names.
12135         (fringe-indicator-alist, fringe-cursor-alist): Initialize.
12137         * loadup.el: Load "fringe" on window systems.
12139 2006-02-20  Nick Roberts  <nickrob@snap.net.nz>
12141         * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
12142         out of scope components.
12144         * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
12145         default.
12147 2006-02-20  Chong Yidong  <cyd@stupidchicken.com>
12149         * custom.el (customize-mark-to-save, customize-mark-as-set):
12150         Load the symbol first.
12152 2006-02-20  Juanma Barranquero  <lekktu@gmail.com>
12154         * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
12155         strech spec so it doesn't display as "^J" on the header line
12156         when `Buffer-menu-use-header-line' is t.
12158 2006-02-20  Nick Roberts  <nickrob@snap.net.nz>
12160         * speedbar.el (speedbar-make-button): Keep text properties
12161         of string arguments if desired.
12163         * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
12164         expessions.
12166         * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
12167         of speedbar.
12169 2006-02-19  Ryan Yeske  <rcyeske@gmail.com>
12171         * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
12172         to value of `read-file-name-completion-ignore-case'.
12174 2006-02-19  Chong Yidong  <cyd@stupidchicken.com>
12176         * custom.el (customize-mark-as-set): Push to `user' theme.
12178         * cus-edit.el (custom-save-variables): Allow unthemed values.
12179         (customize-set-variable): Push setting to `user' theme.
12181 2006-02-19  Nick Roberts  <nickrob@snap.net.nz>
12183         * progmodes/gud.el: Don't require font-lock as it's now
12184         automatically loaded.
12185         (gud-speedbar-buttons): Replace gdb-var-changed with
12186         gdb-force-update.
12188         * progmodes/gdb-ui.el (gdb-force-update): Rename from
12189         gdb-var-changed.
12190         (gdb-post-prompt): Use it.
12191         (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
12192         (gdb-var-update-handler, gdb-var-delete)
12193         (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
12194         (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
12195         gdb-force-update in gdb-post-prompt.
12196         (gdb-reset): Clear watch expressions from speedbar when quitting.
12198 2006-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
12200         * viper-cmd.el (viper-insert-state-post-command-sentinel)
12201         (viper-change-state-to-vi, viper-change-state-to-emacs):
12202         Make aware of cursor coloring in the Emacs state.
12203         (viper-special-read-and-insert-char): Use read-char-exclusive.
12204         (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
12206         * viper-init.el (viper-emacs-state-cursor-color): New variable.
12208         * viper-util.el (viper-save-cursor-color)
12209         (viper-get-saved-cursor-color-in-replace-mode)
12210         (viper-get-saved-cursor-color-in-insert-mode)
12211         (viper-restore-cursor-color): Make aware of the cursor color in Emacs
12212         state.
12213         (viper-get-saved-cursor-color-in-emacs-mode): New function.
12215         * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
12216         (ediff-ignore-case-option3, ediff-actual-diff-options)
12217         (ediff-actual-diff3-options): New variables to control case sensitivity.
12218         (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
12219         (ediff-setup-diff-regions3): Make aware of case-sensitivity.
12220         (ediff-toggle-ignore-case): New function.
12221         (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
12223         * ediff-help.el (ediff-long-help-message-narrow2)
12224         (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
12225         (ediff-long-help-message-word-mode): Add ignore-case command.
12226         (ediff-help-for-quick-help): Add ignore-case command.
12228         * ediff-merg.el: Move provide to the end.
12230         * ediff-ptch.el: Move provide to the end.
12232         * ediff-wind.el: Move provide to the end.
12234         * ediff-mult.el: Move provide to the end.
12235         (ediff-set-meta-overlay): Enable follow-link.
12237         * ediff.el: Move provide to the end.
12238         Break recursive load cycle in eval-when-compile.
12239         (ediff-patch-buffer): Better heuristics.
12241         * ediff-util.el: Move provide to the end.
12242         Break recursive load cycle in eval-when-compile.
12243         (ediff-setup-keymap): Add binding for #c.  Replace some defsubsts with
12244         defuns.
12245         (ediff-submit-report): Pass the values of ediff-diff3-program,
12246         ediff-diff3-options.
12248 2006-02-19  Juanma Barranquero  <lekktu@gmail.com>
12250         * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
12251         the opening bracket of the following bracketing pairs: {}, [], (), <>,
12252         `' (for example, in the docstring of `windmove-default-keybindings').
12254 2006-02-19  Nick Roberts  <nickrob@snap.net.nz>
12256         * progmodes/gud.el (gud-speedbar-buttons): Update properly for
12257         shadow face.  Don't provide binding to edit variable when it is
12258         out of scope.
12260         * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
12261         (gdb-var-update-handler): Detect out of scope variables with pre
12262         GDB 6.4 too.
12263         (gdb-post-prompt): Revert change from 2006-02-17 (force update).
12264         Reset status of variable objects to nil in update handlers.
12265         (gdb-var-update-handler-1): Detect when a variable object comes
12266         in scope.  setcar on var changes gdb-var-list directly.
12268 2006-02-17  Juri Linkov  <juri@jurta.org>
12270         * ffap.el (ffap) <defface>: Add explicit face declaration.
12271         (ffap-highlight): Use face `ffap' directly instead of checking
12272         for its existence.
12274         * icomplete.el (icomplete-get-keys): Use `t' for the second arg
12275         `visible-ok' of `other-buffer' to find the right original buffer.
12277         * info.el (Info-search): Skip `Local Variables' node.
12279 2006-02-17  Juri Linkov  <juri@jurta.org>
12281         * info.el (Info-find-file): Check for symbols `apropos', `history',
12282         `toc' in the input filename, and return these symbols as is.
12283         (Info-find-node-2): Set Info-current-file to symbols `apropos',
12284         `history', `toc' instead of strings.
12285         (Info-set-mode-line): For non-string Info-current-file use the
12286         symbol's name inside **.
12287         (Info-isearch-push-state): Add quote before Info-current-file and
12288         Info-current-node.
12289         (Info-isearch-pop-state): Use `equal' instead of `string='.
12290         (Info-extract-pointer, Info-following-node-name): Use
12291         `match-string-no-properties' instead of `match-string'.
12292         (Info-up): Check `old-file' for `stringp'.
12293         (Info-history): Use `equal' instead of `string-equal'.
12294         Check `file' for `stringp'.
12295         (Info-history): Use symbol `history' instead of string as first arg
12296         of `Info-find-node'.
12297         (Info-toc): Check `Info-current-file' for `stringp'.  Use symbol
12298         `toc' instead of string.
12299         (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
12300         instead of `buffer-substring', and `match-string-no-properties'
12301         instead of `match-string'.
12302         (Info-index-nodes): Check for symbols `apropos', `history', `toc'
12303         instead of strings.
12304         (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
12305         Use symbol `apropos' instead of string.
12306         (Info-copy-current-node-name): Check `Info-current-file' for
12307         `stringp' and construct a command with `Info-find-node' from it.
12308         (Info-fontify-node): Use `match-string-no-properties' instead of
12309         `match-string' and check file names for `stringp'.
12310         (Info-desktop-buffer-misc-data): Check for symbols `apropos',
12311         `history', `toc' instead of strings.
12313 2006-02-17  Chong Yidong  <cyd@stupidchicken.com>
12315         * files.el: Rearrange functions and variables in the file local
12316         variables section.
12318 2006-02-17  Reiner Steib  <Reiner.Steib@gmx.de>
12320         * files.el: Add truncate-lines, ispell-check-comments and
12321         ispell-local-dictionary as safe local variables.
12323 2006-02-18  Nick Roberts  <nickrob@snap.net.nz>
12325         * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
12326         out of scope variables.
12327         (gud-speedbar-buttons): Use unless.
12329         * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
12330         (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
12331         (gdb-show-changed-values): Also use for out of scope variables.
12332         (gdb-var-update-handler-1): Note if variable goes out of scope.
12334 2006-02-17  Ryan Yeske  <rcyeske@gmail.com>
12336         * net/rcirc.el (rcirc-connect): Make all arguments optional, and
12337         default to global variable values for unsupplied args.
12338         (rcirc-get-buffer-create): Fix bug with setting the target.
12339         (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
12340         test for rcirc-always-use-server-buffer-flag here.
12341         (rcirc-response-formats): Add %N, which is a facified nick.  %n
12342         uses the default face.  Change the ACTION format string.  If the
12343         "nick" is the server, don't print anything for that field.
12344         Comment fixes.
12345         (rcirc-target-buffer): Don't test
12346         rcirc-always-use-server-buffer-flag here.
12347         (rcirc-print): Squeeze extra spaces out of the text before message.
12348         (rcirc-put-nick-channel): Strip potential "@" char from nick
12349         before adding them to nick table.
12350         (rcirc-url-regexp): Improve to match address like "foo.com".
12352 2006-02-17  Eli Zaretskii  <eliz@gnu.org>
12354         * allout.el (allout-hidden-p): Move this defsubst before
12355         allout-overlay-interior-modification-handler, where it is first
12356         used.
12358 2006-02-17  Ken Manheimer  <ken.manheimer@gmail.com>
12360         * allout.el: Use allout invisible-text overlays instead of
12361         selective display for concealed text.  Also, lots of general
12362         cleanup, and improved compatibility code.
12364         (allout-version) Incremented, corrected, revised, and refined
12365         module commentary.
12367         (provide 'allout): Moved to the bottom, added a require of overlay.
12369         (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
12370         `except-current'.
12371         (allout-write-file-hook-handler): Minimize delay.
12372         (count-trailing-whitespace-region): New function so
12373         auto-encryption of current topic can resituate cursor exactly.
12374         PGP/GPG encryption trims trailing whitespace from lines, which
12375         must be accounted for across encryption then decryption.
12377         (allout-command-prefix): Now defaults to "\C-c<space>" rather than
12378         just plain "\C-c", to avoid intruding on user's keybinding space.
12380         (allout-toggle-current-subtree-encryption): Pass along fetch-pass
12381         parameter, so user request to provide a new password is done.
12383         (allout-outside-normal-auto-fill-function, allout-auto-fill):
12384         Refined mechanism for auto-filling behavior while in allout mode.
12386         (allout-mode): Explicitly specify the mode map in the docstring.
12387         Clarify provision for various write-file hook var names.
12388         Adjusted for invisible-text overlays instead of selective-display.
12390         (allout-depth): Really return 0 if not within any topic.  This
12391         rectifies `allout-beginning-of-level' and sequence numbering
12392         errors that occur when cutting and pasting numbered topics.
12393         Changed from a in-line subst to a regular function, as well.
12395         (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
12397         (allout-end-of-subtree, allout-end-of-subtree)
12398         (allout-end-of-entry, allout-end-of-current-heading)
12399         (allout-next-visible-heading, allout-open-topic, allout-show-entry)
12400         (allout-show-children, allout-show-to-offshoot)
12401         (allout-hide-current-entry, allout-show-current-entry): Rectified
12402         handling of trailing blank lines between items.
12404         (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
12405         (allout-current-depth, allout-unprotected, allout-hidden-p)
12406         (allout-on-current-heading-p, allout-listify-exposed)
12407         (allout-chart-subtree, allout-goto-prefix)
12408         (allout-back-to-current-heading, allout-get-body-text)
12409         (allout-snug-back, allout-flag-current-subtree, allout-show-all)
12410         (allout-hide-region-body, allout-toggle-subtree-encryption)
12411         (allout-encrypt-string, allout-encrypted-key-info)
12412         (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
12413         (allout-file-vars-section-data): Adjusted for use with
12414         invisible-text overlays instead of selective-display.
12416         (allout-kill-line, allout-kill-topic, allout-yank-processing):
12417         Reworked for use with invisible text overlays.
12419         (allout-current-topic-collapsed-p): New function.
12421         (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
12422         to know when to close the containing topic.
12424         (allout-pre-command-business, allout-post-command-business):
12425         Simplify undo-batching and dynamic isearch exposure.
12427         (allout-set-overlay-category): New for invisible-text overlays.
12428         Sets properties of allout-overlay-category, used by
12429         allout-flag-region to set invisible-text overlay properties.
12430         (allout-get-invisibility-overlay): Get the first qualifying
12431         invisibility overlay, so we can find the extent of it.
12432         (allout-back-to-visible-text): Get to just before the beginnining
12433         of the current invisibility overlay, if any.
12435         (allout-overlay-insert-in-front-handler)
12436         (allout-overlay-interior-modification-handler)
12437         (allout-before-change-handler, allout-isearch-end-handler): New
12438         functions to handle extraordinary actions affecting concealed
12439         text.
12441         (allout-flag-region): Use overlays instead of selective-display
12442         for invisible text - by inheritence from the properties of
12443         allout-overlay-category in mainline Emacs, and applied
12444         property-by-property in XEmacs, some recent versions of which
12445         don't inherit the properties from the category.  Provisions to
12446         respond to concealed-text edits simplified drastically.
12448         (allout-isearch-rectification, allout-isearch-was-font-lock)
12449         (allout-isearch-expose, allout-enwrap-isearch)
12450         (allout-isearch-abort, allout-pre-was-isearching)
12451         (allout-isearch-prior-pos, allout-isearch-did-quit)
12452         (allout-isearch-dynamic-expose)
12453         (allout-hide-current-entry-completely): Functions deleted.
12455         (allout-undo-aggregation): Explicit undo aggregation no longer
12456         necessary due to transition away from selective-display.
12458         (set-allout-regexp, allout-up-current-level)
12459         (allout-next-visible-heading, allout-forward-current-level)
12460         (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
12461         (allout-kill-line, allout-yank-processing, allout-show-children)
12462         (allout-expose-topic, allout-old-expose-topic)
12463         (allout-listify-exposed, allout-insert-latex-header)
12464         (allout-toggle-subtree-encryption, allout-encrypt-string)
12465         (remove-from-invisibility-spec, allout-hide-current-subtree):
12466         Ditched unused variables.
12468 2006-02-17  Agustin Martin  <agustin.martin@hispalinux.es>
12470         * textmodes/ispell.el (ispell-change-dictionary): Call
12471         ispell-buffer-local-dict instead of
12472         ispell-accept-buffer-local-defs.
12473         (ispell-local-dictionary-alist): Accept as valid any coding-system
12474         supported by Emacs.
12475         (ispell-dictionary-alist-3): Esperanto dictionary's coding system
12476         changed to iso-8859-3.
12478 2006-02-17  Nick Roberts  <nickrob@snap.net.nz>
12480         * speedbar.el (speedbar-frame-width): Make an inline function
12481         instead of a macro.  Use frame-width.
12482         (speedbar-try-completion, speedbar-update-contents)
12483         (speedbar-timer-fn): Use consp.
12484         (speedbar-update-localized-contents): Try to preserve point.
12486         * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
12487         (menu): Re-order menu items.
12488         (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
12489         field.
12490         (gdb-var-update-handler-1): Use it for GDB 6.4+.
12491         (gdb-post-prompt): Speed things by not forcing update.
12493 2006-02-16  Chong Yidong  <cyd@stupidchicken.com>
12495         * wid-edit.el (widget-button-click): For mouse-1, cancel button
12496         press and perform default action if we get a mouse movement event.
12498 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
12500         * calendar/icalendar.el (icalendar--get-event-property)
12501         (icalendar--get-event-property-attributes): Fix typos in
12502         docstrings.
12504         * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
12505         docstring.
12507 2006-02-15  Juanma Barranquero  <lekktu@gmail.com>
12509         * bs.el (bs-mode): Use `buffer-disable-undo'.
12510         (bs--get-file-name): Simplify.
12511         (bs-show-in-buffer): Mark the buffer as not modified.
12513 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
12515         * wid-edit.el (widget-keymap): Bind down-mouse-1 to
12516         widget-button-click.
12518         * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
12519         (custom-mode): Update docstring.
12521         * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
12522         binding.
12524         * files.el (hack-local-variables-confirm): Allow scrolling if the
12525         file variable list is too long.  Kill temp buffer after use.
12527 2006-02-15  Nick Roberts  <nickrob@snap.net.nz>
12529         * progmodes/gud.el (gdb): Improve doc string.
12530         (gdb-script-font-lock-keywords): Expand allowed character set.
12532         * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
12533         (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
12534         (gdb-separate-io-interrupt, gdb-separate-io-quit)
12535         (gdb-separate-io-stop, gdb-separate-io-eof):
12536         Rename from gdb-inferior-* to gdb-separate-*.
12537         (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
12539 2006-02-14  Jay Belanger  <belanger@truman.edu>
12541         * calc/calc-arith.el (math-check-known-scalarp): Make sure
12542         expression is a symbol before checking that it is bound.
12544         * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
12545         test to see if equation can be solved.
12547 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
12549         * wid-edit.el (widget-button-click): Use :pressed-face property
12550         for overlay face, if it exists.
12552         * cus-edit.el (custom-manual, custom-add-see-also)
12553         (custom-add-parent-links, custom-group-link): Add :pressed-face
12554         property to links.
12556         * files.el (hack-local-variables): Remove ignored variables before
12557         checking if any variables need setting.
12559 2006-02-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12561         * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
12563 2006-02-14  Juanma Barranquero  <lekktu@gmail.com>
12565         * help.el (where-is): Fix message for remapped commands.
12567         * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
12568         Fix typos in docstrings.
12570 2006-02-13  Chong Yidong  <cyd@stupidchicken.com>
12572         * files.el (safe-local-variable-values): New option.
12573         (hack-local-variables-prop-line): Return a list of variable-value
12574         pairs if MODE-ONLY is non-nil.
12575         (hack-local-variables): Construct list of variable-value pairs,
12576         and apply or reject them in one go.  Ask for confirmation if
12577         variables are not known safe.
12578         (hack-local-variables-confirm): Complete rewrite.  Support
12579         `safe-local-variable-values'.
12580         (enable-local-variables): Update docstring to reflect new
12581         behavior.
12582         (ignored-local-variables): Ignore ignored-local-variables and
12583         safe-local-variable-values.
12584         (safe-local-variable-p): New function.
12585         (risky-local-variable-p): `safe-local-variable' property check
12586         moved to safe-local-variable-p.
12587         (hack-one-local-variable): Checks moved to hack-local-variables.
12589         (byte-compile-dynamic, c-basic-offset, c-file-style)
12590         (c-indent-level, comment-column, fill-column, fill-prefix)
12591         (indent-tabs-mode, kept-new-versions, no-byte-compile)
12592         (no-update-autoloads, outline-regexp, page-delimiter)
12593         (paragraph-start, paragraph-separate, sentence-end)
12594         (sentence-end-double-space tab-width, version-control):
12595         Add `safe-local-variable' property.
12597         * find-lisp.el: Delete nonexistent `autocompile' file variable.
12599         * icomplete.el, play/landmark.el: Change nonexistent
12600         `outline-layout' file variable to `allout-layout'.
12602 2006-02-14  Nick Roberts  <nickrob@snap.net.nz>
12604         * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
12605         (gdb-get-changed-registers): Test value of gud-minor-mode relative
12606         to gud-comint-buffer.
12607         (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
12608         gdb-ui.el for gdb-mi.el.
12609         (gdb-post-prompt, gdb-get-changed-registers): Move test for
12610         registers buffer to gdb-get-changed-registers.
12611         (gdb-breakpoint-regexp): New regexp.  Allow toggling and
12612         deletion of catchpoints (throw and catch).
12613         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
12614         (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
12615         (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
12616         (gdb-var-list-children-1, gdb-info-breakpoints-custom)
12617         (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
12619 2006-02-13  Jay Belanger  <belanger@truman.edu>
12621         * calc/calc-arith.el (math-check-known-matrixp): Make sure
12622         expression is a symbol before checking that it is bound.
12624 2006-02-13  Richard M. Stallman  <rms@gnu.org>
12626         * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
12627         for the minibuffer too, but not if resize-mini-windows will interfere.
12629         * help.el (describe-key-briefly, describe-key): Do all arg-reading
12630         inside `interactive' spec.
12631         (describe-key-briefly-internal, describe-key-internal):
12632         Functions merged back into their callers.
12634 2006-02-13  Martin Rudalics  <rudalics@gmx.at>
12636         * info.el (info-xref-visited): Inherit from info-xref too.
12637         (Info-set-mode-line): Replace occurrences of `%' by `%%'
12638         when propertizing Info-current-file and Info-current-node.
12640 2006-02-13  Juri Linkov  <juri@jurta.org>
12642         * tumme.el (tumme-thumbnail-storage): Fix docstring.
12643         (tumme-thumb-name): Fix per-directory format.
12645 2006-02-13  Juanma Barranquero  <lekktu@gmail.com>
12647         * subr.el (substitute-key-definition): Doc fix (hide internal arg).
12649 2006-02-12  Miles Bader  <miles@gnu.org>
12651         * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
12653 2006-02-13  Mathias Dahl  <mathias.dahl@gmail.com>
12655         * tumme.el: Remove history section.  If someone needs the it, it
12656         can always be found in CVS.
12658 2006-02-12  Mathias Dahl  <mathias.dahl@gmail.com>
12660         * tumme.el (tumme-thumbnail-storage): Update docstring.  Add info
12661         about the Thumbnail Managing Standard option.
12663 2006-02-12  Richard M. Stallman  <rms@gnu.org>
12665         * subr.el (substitute-key-definition): Doc fix.
12667         * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
12669         * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
12671         * info.el (Info-mode): Doc fix.
12673         * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
12675 2006-02-12  Michael Albinus  <michael.albinus@gmx.de>
12677         * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
12678         because on Solaris a POSIX compatible "id" is needed.  Reported by
12679         Magnus Henoch <mange@freemail.hu>.
12681 2006-02-12  Juri Linkov  <juri@jurta.org>
12683         * tumme.el: Remove todo item about Thumbnail Managing Standard.
12684         (tumme) <defgroup>: Change :group to `multimedia'.
12685         (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
12686         Managing Standard.
12687         (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
12688         Fix dostring.
12689         (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
12690         and %y.  Fix docstring.
12691         (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
12692         (tumme-cmd-create-standard-thumbnail-command): New user options.
12693         (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
12694         is `standard'.  Fix docstring.
12695         (tumme-thumb-width, tumme-thumb-height): New user options.
12696         (tumme-external-viewer): Try to find various viewers.
12697         (tumme-get-thumbnail-image): Use `create-image' instead of
12698         constructing the `image' structure.
12699         (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
12700         `standard'.
12701         (tumme-thumb-name): Add file name generation for standard storage.
12702         Simplify code for other storages.
12703         (tumme-thumb-name): Use width %w and height %h instead of size %s.
12704         Add modification time %m and thumbnail-nq8 %q.
12705         Use `tumme-cmd-create-standard-thumbnail-command' if
12706         tumme-thumbnail-storage is `standard'.
12707         (tumme-dired-insert-marked-thumbs): New autoload command.
12708         (tumme-dired-after-readin-hook): New function.
12709         (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
12710         `tumme-thumb-size'.
12711         (tumme-display-image): Replace size-x %x and size-y %y with
12712         width %w and height %h.
12714         * dired.el (dired-mode-map): Bind `\C-t\C-t' to
12715         `tumme-dired-insert-marked-thumbs'.
12717 2006-02-12  Mathias Dahl  <mathias.dahl@gmail.com>
12719         * tumme.el (tumme-write-tag): Fix small bug (file name did not
12720         include path).
12721         (tumme-mark-tagged-files): Fix bug in regexp used to find rows
12722         matching tag.
12724 2006-02-12  Miles Bader  <miles@gnu.org>
12726         * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
12727         New variables.
12728         (rcirc-abbrev-nick): New function.
12729         (rcirc-format-response-string): Rewrite to use the formats in
12730         `rcirc-response-formats' and expand escape sequences therein.
12731         A text-property `rcirc-text' is added over the actual response
12732         text to make easy to find inside the returned string.
12733         (rcirc-print): When filling, just look for the `rcirc-text'
12734         text-property to find the appropriate fill prefix, instead of
12735         using hardwired patterns.
12737 2006-02-11  Mathias Dahl  <brakjoller@hotmail.com>
12739         * tumme.el: Enhance some docstrings.  Add todo item about Thumbnail
12740         Managing Standard.
12742 2006-02-11  Kim F. Storm  <storm@cua.dk>
12744         * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
12745         Don't use insert-buffer; do insert-buffer-substring directly.
12746         (ido-file-internal): Set mark for ido-insert-file.  Use insert-file-1.
12748 2006-02-11  Martin Rudalics  <rudalics@gmx.at>
12750         * files.el (revert-buffer, recover-file): Replace buffer-read-only
12751         with inhibit-read-only.  Suggested by Stefan Monnier.
12752         (revert-buffer): Let insert-file-contents discard
12753         buffer-undo-list.  Simplify code.
12754         (find-file, find-file-existing, revert-buffer): Doc-string fixes.
12756 2006-02-11  Eli Zaretskii  <eliz@gnu.org>
12758         * menu-bar.el (menu-bar-select-yank): Add a doc string.
12760         * help.el (describe-key-briefly): Now a wrapper for
12761         describe-key-briefly-internal.  Bind enable-disabled-menus-and-buttons
12762         to t.  Populate yank-menu if empty.
12763         (describe-key-briefly-internal): Renamed from describe-key-briefly.
12764         (describe-key): Now a wrapper for describe-key-internal.  Bind
12765         enable-disabled-menus-and-buttons to t.  Populate yank-menu if empty.
12766         (describe-key-internal): Renamed from describe-key.
12768 2006-02-11  Milan Zamazal  <pdm@zamazal.org>
12770         * progmodes/glasses.el (glasses-separator): Doc fix.
12771         (glasses-original-separator): New defcustom.
12772         (glasses-make-readable, glasses-convert-to-unreadable): Use it.
12774 2006-02-11  Martin Rudalics  <rudalics@gmx.at>
12776         * mwheel.el (mouse-wheel-up-event): Doc fix.
12778 2006-02-11  Mathias Dahl  <brakjoller@hotmail.com>
12780         * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
12781         (tumme-dir): New function.  Copied from thumbs.el.
12783 2006-02-10  Juanma Barranquero  <lekktu@gmail.com>
12785         * desktop.el (desktop-outvar): Fix typo.
12786         (desktop-save-buffer-p): Doc fix.
12788         * subr.el (substitute-key-definition): Fix typo.
12790 2006-02-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12792         * frame.el (select-frame-set-input-focus): Call x-focus-frame also
12793         when window-system is mac.
12795         * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
12797 2006-02-10  Kim F. Storm  <storm@cua.dk>
12799         * subr.el (substitute-key-definition-key): Pass t for NOERROR to
12800         indirect-function instead of using condition-case.
12802 2006-02-10  Mathias Dahl  <mathias.dahl@gmail.com>
12804         * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
12805         less `colloquial'...
12807 2006-02-09  Mathias Dahl  <mathias.dahl@gmail.com>
12809         * tumme.el: Add a couple of todo items.
12811 2006-02-09  Lars Hansen  <larsh@soem.dk>
12813         * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
12814         (highlight-changes-mode): Don't change desktop-locals-to-save.
12816 2006-02-09  Chong Yidong  <cyd@stupidchicken.com>
12818         * image-mode.el (image-toggle-display): Clear image cache if using
12819         filename.
12821 2006-02-09  Masatake YAMATO  <jet@gyve.org>
12823         * dired-x.el (dired-guess-shell-alist-default): Add .man as
12824         a `dired-man' target.
12826         * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
12827         boundary of symbols.
12829 2006-02-08  Peter Doornbosch  <peter.doornbosch@luminis.nl>  (tiny change)
12831         * vc-svn.el (vc-svn-print-log): Show recent commits as well.
12833 2006-02-09  Juanma Barranquero  <lekktu@gmail.com>
12835         * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
12836         `mapcar'; return nil.
12838 2006-02-08  Chong Yidong  <cyd@stupidchicken.com>
12840         * mouse.el (mouse-drag-track): Don't change window if we rebind to
12841         some other event.
12843 2006-02-08  Ryan Yeske  <rcyeske@gmail.com>
12845         * net/rcirc.el (rcirc-startup-channels-alist):
12846         Add irc.freenode.net and #emacs as defaults.
12847         (rcirc-ignore-all-activity-flag): Remove variable.
12848         (rcirc-authinfo): New variable.
12849         (rcirc-authinfo-filename): Remove variable.
12850         (rcirc-always-use-server-buffer-flag): New flag.
12851         (rcirc): M-x rcirc will automatically connect without prompting.
12852         C-u M-x rcirc will prompt.  Use rcirc-connect to create a
12853         connection in lisp.
12854         (rcirc-process-server-response-1): Remove everything but the nick
12855         portion of the sender so it doesn't need to be done everywhere
12856         else.  Update related code.
12857         (global-map): Remove global keybindings.
12858         (rcirc-get-buffer-create): Make sure rcirc-topic is set.
12859         (rcirc-send-input): Split into several functions.
12860         (rcirc-process-input-line, rcirc-process-message)
12861         (rcirc-process-command): New functions.
12862         (rcirc-target-buffer): New function to determine where to route
12863         messages.
12864         (rcirc-user-nick): Save match data.
12865         (rcirc-toggle-ignore-buffer-activity)
12866         (rcirc-update-activity-string): Remove global ignore functionality,
12867         which can be done now by toggling rcirc-track-minor-mode.
12868         (rcirc-track-minor-mode-map): New keymap.
12869         (rcirc-track-minor-mode): New minor-mode.
12870         (ignore): Make the ignore output nicer.  Always print it when
12871         adding or removing nicks.
12872         (rcirc-url-regexp): Improve.
12873         (rcirc-mangle-text): Remove properties before using text in the
12874         modeline.
12875         (rcirc-authenticate): Authentication data comes from
12876         rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
12877         (rcirc-server-prefix): Inherit from rcirc-server.
12879 2006-02-08  Mathias Megyei  <Mathias.Megyei@micronas.com>  (tiny change)
12881         * Makefile.in (compile): Append "|| true" to the end of the `find'
12882         command, like compile-always does.
12884 2006-02-08  Sam Steingold  <sds@gnu.org>
12886         * net/tramp.el (tramp-maybe-open-connection): Do not wait for
12887         output from a dead connection.
12889 2006-02-07  Mathias Dahl  <brakjoller@hotmail.com>
12891         * dired.el (dired-mode-map): Add more bindings for tumme.
12893 2006-02-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12895         * wdired.el (wdired-mode-map): Use remap.
12896         (wdired-get-filename): Massage.
12897         (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
12898         (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
12899         `keymap' property rather than `local-map'.
12901 2006-02-07  Mathias Dahl  <brakjoller@hotmail.com>
12903         * tumme.el (tumme-get-thumbnail-image): New utility function.
12904         Suggested by from Chong Yidong.
12905         (tumme-dired-with-window-configuration): Rename from
12906         `tumme-dired'.  Add code to save window configuration.
12907         (tumme-restore-window-configuration): New command to restore the
12908         window configuration that `tumme-dired-with-window-configuration'
12909         saves before it changes the window configuration.
12910         (tumme-show-all-from-dir): New command to display thumbnails for
12911         all files in a directory entered by the user, like M-x thumbs.
12912         (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
12913         have been created.
12914         (tumme-display-thumbnail-original-image): Call `display-buffer'.
12915         (obsolete-tumme-display-thumbnail-original-image-and-buffer):
12916         Remove obsolete test function.
12918 2006-02-07  Juanma Barranquero  <lekktu@gmail.com>
12920         * vc.el (small-temporary-file-directory): Remove defvar; there's
12921         a defcustom for it in files.el.
12923         * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
12924         Fix typo in message.
12925         (tumme-gallery-generate): Fix typo in `error' message.
12926         (tumme-display-window-height-correction)
12927         (tumme-display-window-width-correction, tumme-line-up-dynamic)
12928         (tumme-line-up-interactive): Dox fixes.
12929         (tumme-cmd-rotate-original-options, tumme-display-properties-format)
12930         (tumme-restore-window-configuration, tumme-format-properties-string)
12931         (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
12932         Fix typos in docstrings.
12934 2006-02-07  Chris Moore  <christopher.ian.moore@gmail.com>
12936         * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
12938 2006-02-07  Nick Roberts  <nickrob@snap.net.nz>
12940         * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
12941         User should use hook if desired.
12943         * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
12944         buffer if necessary.
12945         (gdb-delete-frame-or-window): New function.
12946         (gdb-breakpoints-mode-map): Bind "q" to it.
12948 2006-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12950         * textmodes/nroff-mode.el: Clean up name space.
12951         (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
12952         (nroff-mode): Obey the global setting of nroff-electric-mode.
12953         (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
12955         * calendar/calendar.el (calendar-increment-month): Typo in last change.
12957 2006-02-06  Thien-Thi Nguyen  <ttn@gnu.org>
12959         * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
12961 2006-02-06  Lars Hansen  <larsh@soem.dk>
12963         * generic-x.el (etc-fstab-generic-mode): Add file system types
12964         cifs and usbdevfs.  Allow special chars in file names.
12966 2006-02-05  Jay Belanger  <belanger@truman.edu>
12968         Update copyright notices of the files in lisp/calc.
12970 2006-02-05  Romain Francoise  <romain@orebokech.com>
12972         Update copyright notices of all files in the lisp/play directory.
12974 2006-02-04  Luc Teirlinck  <teirllm@auburn.edu>
12976         * ldefs-boot.el: Regenerate.
12978         * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
12980 2006-02-05  Kim F. Storm  <storm@cua.dk>
12982         * files.el (magic-mode-regexp-match-limit): New defvar.
12983         (set-auto-mode): Use it to limit magic-mode-alist matching.
12985 2006-02-04  Eli Zaretskii  <eliz@gnu.org>
12987         * info.el (Info-index, Info-mode): Improve the description of the
12988         `i' command.
12990         * ldefs-boot.el: Regenerate.
12992 2006-02-03  Werner Lemberg  <wl@gnu.org>
12994         * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
12995         greedy to find the closing bracket in \*[...] and similar
12996         expressions.  This is a first rough fix -- many additional
12997         refinements are necessary to make nroff mode really usable with groff.
12999 2006-02-03  Jens Petersen  <petersen@redhat.com>  (tiny change)
13001         * international/mule-cmds.el (set-locale-environment):
13002         Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
13003         libX11.
13005 2006-02-03  Joe Wells  <jbw@macs.hw.ac.uk>  (tiny change)
13007         * arc-mode.el (archive-maybe-copy): Fix the way directories in the
13008         archive are created in archive-tmpdir.
13010 2006-02-02  John Paul Wallington  <jpw@pobox.com>
13012         * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
13013         (ibuffer-fontification-alist): Use it.
13014         (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
13015         to "* z" and the Ibuffer Mark menu.
13017         * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
13019 2006-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13021         * textmodes/table.el (*table--cell-describe-mode)
13022         (*table--cell-describe-bindings): Undo last change since
13023         print-help-return-message is not obsoleted by anything at all.
13025 2006-02-02  Luc Teirlinck  <teirllm@auburn.edu>
13027         * emulation/cua-base.el (cua-mode): Doc fix.
13029 2006-02-02  Juanma Barranquero  <lekktu@gmail.com>
13031         * dframe.el (dframe-handle-make-frame-visible)
13032         (dframe-handle-iconify-frame, dframe-get-focus)
13033         (dframe-select-attached-frame, dframe-power-click)
13034         (dframe-frame-mode): Fix typos in docstrings.
13036         * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
13037         (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
13038         Fix typos in docstrings.
13040         * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
13041         (hi-lock-face-buffer, hi-lock-font-lock-hook)
13042         (hi-lock-archaic-interface-message-used)
13043         (hi-lock-file-patterns-range): Fix typos in docstrings.
13045         * savehist.el (savehist-loaded, savehist-load, savehist-install)
13046         (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
13048         * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
13049         Fix typo in docstring.
13051         * net/newsticker.el (newsticker--decode-iso8601-date)
13052         (newsticker--set-customvar, newsticker--buffer-insert-item)
13053         (newsticker--do-run-auto-mark-filter)
13054         (newsticker--parse-generic-feed): Doc fixes.
13055         (newsticker--retrieval-timer-list, newsticker-url-list)
13056         (newsticker-hide-immortal-items-in-echo-area)
13057         (newsticker-hide-obsolete-items-in-echo-area)
13058         (newsticker-new-item-face, newsticker--enclosure)
13059         (newsticker-buffer-update, newsticker-w3m-show-inline-images)
13060         (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
13061         (newsticker--parse-generic-feed, newsticker--cache-contains)
13062         (newsticker--stat-num-items, newsticker-download-enclosures):
13063         Fix typos in docstrings.
13065         * net/rcirc.el (rcirc-debug): Doc fix.
13066         (rcirc-fill-column, rcirc-receive-message-hooks)
13067         (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
13068         (rcirc-mode, rcirc-generate-new-buffer-name)
13069         (rcirc-startup-channels, rcirc-ignore-update-automatic)
13070         (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
13071         Fix typos in docstrings.
13072         (rcirc-print): "?\ " -> "?\s".
13073         (rcirc-cmd-join): Improve argument/docstring consistency.
13075 2006-02-01  Mark A. Hershberger  <mah@everybody.org>
13077         * xml.el (xml-parse-region): Move save-excursion and set-buffer up
13078         before narrow-to-region.
13080 2006-02-01  Richard M. Stallman  <rms@gnu.org>
13082         * simple.el (move-beginning-of-line): Scan properly for invis change.
13084         * replace.el (multi-occur-in-matching-buffers): Fix prev change.
13086 2006-02-01  Michael Albinus  <michael.albinus@gmx.de>
13088         * net/tramp.el (tramp-convert-file-attributes): Set file's gid
13089         change bit only when id-format is 'integer.  Reported by Matt
13090         Hodges <M.P.Hodges@rl.ac.uk>.
13092 2006-02-01  Juanma Barranquero  <lekktu@gmail.com>
13094         * hilit-chg.el (highlight-changes-initial-state)
13095         (highlight-changes-global-initial-state): Doc fixes.
13096         (highlight-changes-global-modes, global-highlight-changes):
13097         Fix typos in docstrings.
13099 2006-02-01  Kim F. Storm  <storm@cua.dk>
13101         * emulation/cua-base.el (cua-mode): Mention that CUA enables
13102         transient-mark-mode in doc string.
13104 2006-01-31  Richard M. Stallman  <rms@gnu.org>
13106         * replace.el (multi-occur): Doc fix.
13107         (multi-occur-in-matching-buffers): Rename from
13108         multi-occur-by-filename-regexp.  Prefix arg says match
13109         buffer names instead of file names.
13111 2006-01-31  Juanma Barranquero  <lekktu@gmail.com>
13113         * bs.el: Allow non-default values of `bs-header-lines-length'.
13114         (bs--running-in-xemacs): Remove (not needed anymore).
13115         (bs--set-window-height): Simplify by using `fit-window-to-buffer'
13116         instead of `shrink-window', thus avoiding having to compute the
13117         height of the window.
13118         (bs--up): Wrap around even when there's no header.
13119         (bs--down): Use `forward-line' instead of `next-line'.
13121 2006-01-30  Chong Yidong  <cyd@stupidchicken.com>
13123         * image-mode.el (image-toggle-display): Use file name if possible,
13124         instead of unnecessarily allocating a (possibly huge) lisp string.
13126 2006-01-30  John Paul Wallington  <jpw@pobox.com>
13128         * subr.el (toplevel): Define `cl-assertion-failed' condition here
13129         because the `assert' macro signals it at runtime.
13131         * emacs-lisp/cl.el (toplevel): Remove definition of
13132         `cl-assertion-failed' condition.
13134 2006-01-30  Nick Roberts  <nickrob@snap.net.nz>
13136         * thumbs.el (thumbs-marked-list): Make buffer-local and
13137         permanent-local.
13138         (thumbs-insert-thumb): Make help-echo non-sticky.
13139         (thumbs-file-alist): Use eolp as check for (non)-image.
13141 2006-01-30  Juanma Barranquero  <lekktu@gmail.com>
13143         * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
13144         (ediff-before-session-group-setup-hooks)
13145         (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
13146         Fix typos in docstrings.
13148         * window.el (bw-dir, bw-eqdir, balance-windows)
13149         (split-window-keep-point): Fix typos in docstrings.
13151         * textmodes/org.el (org-allow-space-in-links, org-closed-string)
13152         (org-quote-string, org-calendar-to-agenda-key)
13153         (org-agenda-sorting-strategy, org-agenda-use-time-grid)
13154         (org-show-following-heading, org-tags-column)
13155         (org-use-tag-inheritance, org, org-allow-space-in-links)
13156         (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
13157         (org-enable-table-editor, org-calc-default-modes)
13158         (org-table-allow-automatic-line-recalculation)
13159         (org-export-html-style, org-export-with-fixed-width)
13160         (org-export-with-sub-superscripts, org-special-keyword)
13161         (org-formula, org-time-grid, org-table-may-need-update)
13162         (org-mode, org-goto-ret, org-goto-left, org-goto-right)
13163         (org-goto-quit, org-get-indentation, org-end-of-item)
13164         (org-move-item-down, org-move-item-up)
13165         (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
13166         (org-remove-occur-highlights, org-read-date, org-goto-calendar)
13167         (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
13168         (org-agenda-log-mode, org-agenda-toggle-diary)
13169         (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
13170         (org-agenda-file-to-end, org-agenda-no-heading-message)
13171         (org-agenda-get-closed, org-format-agenda-item)
13172         (org-cmp-priority, org-cmp-category, org-cmp-time)
13173         (org-agenda-change-all-lines, org-agenda-diary-entry)
13174         (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
13175         (org-link-search, org-camel-to-words, org-open-file)
13176         (org-remember-handler, org-table-convert-region)
13177         (org-table-move-row-down, org-table-move-row-up)
13178         (org-table-copy-region, org-table-wrap-region)
13179         (org-table-toggle-vline-visibility)
13180         (org-table-get-vertical-vector, org-table-modify-formulas)
13181         (org-table-get-specials, org-recalc-commands)
13182         (org-table-rotate-recalc-marks, org-table-eval-formula)
13183         (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
13184         (org-level-color-stars-only, org-insert-heading):
13185         Fix typos in docstrings.
13186         (last-arg): Add defvar.
13188         * makefile.w32-in (WINS): Add erc.
13189         (MH_E_SRC): Update (copied from lisp/Makefile.in).
13191 2006-01-29  Bill Wohler  <wohler@newt.com>
13193         * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
13194         mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
13195         mh-tool-bar.el, mh-xface.el.  Remove mh-customize.el, mh-init.el.
13196         (mh-autoloads): Don't use comments on otherwise empty lines.
13198 2006-01-29  Edward O'Connor  <ted@oconnor.cx>
13200         * emulation/viper.el (viper-major-mode-modifier-list): Add
13201         insert-state and vi-state entries for erc-mode.
13202         (viper-go-away, viper-set-hooks): Add and remove
13203         viper-comint-mode-hook from erc-mode-hook as appropriate.
13205         * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
13207 2006-01-29  Juanma Barranquero  <lekktu@gmail.com>
13209         * bs.el (bs--format-aux): Implement `middle' alignment as
13210         described in the docstring for `bs-attributes-list'.
13211         (bs--get-name): Simplify.  Don't pad the buffer name.
13213 2006-01-27  Agustin Martin  <agustin.martin@hispalinux.es>
13215         * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
13216         English aspell dictionary is installed, use the first entry of
13217         ispell-dictionary-alist-1.
13219 2006-01-27  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
13221         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
13222         Doc fix.
13224 2006-01-27  Michael Albinus  <michael.albinus@gmx.de>
13226         * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
13227         for `process-file', in order to let it work for older Emacsen too.
13229 2006-01-27  Eli Zaretskii  <eliz@gnu.org>
13231         * international/latexenc.el: Add a suitable `coding:' tag.
13232         (latexenc-find-file-coding-system): Undo last change.
13234 2006-01-27  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
13236         * international/latexenc.el (latexenc-find-file-coding-system):
13237         Make sure latexenc-main-file is a regular file and is readable.
13239 2006-01-27  Andre Spiegel  <spiegel@gnu.org>
13241         * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
13242         Pass FILE to vc-user-login-name.
13244         * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
13246 2006-01-27  Nick Roberts  <nickrob@snap.net.nz>
13248         * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
13249         there are no more images to display.
13250         (thumbs-mark, thumbs-unmark): Revert change so that they move to
13251         the next image.
13253 2006-01-26  Richard M. Stallman  <rms@gnu.org>
13255         * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
13257         * wid-edit.el (advertised-widget-backward): New alias.
13258         (widget-keymap): Use advertised-widget-backward for S-TAB.
13260         * tumme.el: Correct the keywords.
13261         (tumme-dir-max-size): Use defvar.
13262         (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
13264         * simple.el (move-beginning-of-line): Take account of fields.
13265         (clone-indirect-buffer-other-window): Take args like
13266         clone-indirect-buffer, and work like it.
13268         * help-fns.el (describe-function): Don't pass `nil' as default.
13270         * files.el (risky-local-variable-p): Follow var aliases.
13272         * subr.el (lazy-completion-table): Doc fix.
13274         * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
13275         global binding of `line'.
13277 2006-01-25  Andre Spiegel  <spiegel@gnu.org>
13279         * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
13280         Tramp.
13282         * vc.el (vc-default-dired-state-info): Pass FILE to
13283         vc-user-login-name.
13284         (vc-default-update-changelog): Don't use vc-user-login-name, we
13285         don't need it here.
13287         * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
13288         no longer necessary.
13290 2006-01-25  Kenichi Handa  <handa@m17n.org>
13292         * international/mule.el (decode-char): Avoid the overhead of
13293         calling utf-lookup-subst-table-for-decode if
13294         utf-translate-cjk-mode is nil.
13295         (encode-char): Avoid the overhead of calling
13296         utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
13297         nil.
13299 2006-01-22  Kenichi Handa  <handa@m17n.org>
13301         * international/mule.el (make-subsidiary-coding-system): Reset
13302         `coding-system-define-form' property of subsidiaries to nil.
13303         Avoid duplicated entry in coding-system-alist.
13304         (make-coding-system): Avoid duplicated entry in
13305         coding-system-alist.
13306         (define-coding-system-alias): Likewise.
13308 2006-01-24  Luc Teirlinck  <teirllm@auburn.edu>
13310         * completion.el: Minor fixes in introductory comment.
13311         (completion-def-wrapper): Fix alist.
13313 2006-01-25  Nick Roberts  <nickrob@snap.net.nz>
13315         * thumbs.el (thumbs-new-image-size): New function.
13316         (thumbs-increment-image-size-element)
13317         (thumbs-decrement-image-size-element, thumbs-increment-image-size)
13318         (thumbs-decrement-image-size): Delete.
13319         (thumbs-resize-image-1): Rename from thumbs-resize-image.  Keep old
13320         temp files and use to resize.
13321         (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
13322         Use increment argument to enlarge/shrink.  Preserve point.
13323         (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
13324         (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
13325         (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
13326         (thumbs-mark, thumbs-unmark): Preserve point.
13327         (thumbs-modify-image): Keep old temp files and use to modify.
13328         Cleanup old temp files at load time.  Preserve point.
13329         (thumbs-view-image-mode-map): Use new command names.
13331 2006-01-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13333         * log-view.el (log-view-minor-wrap): First rev is the one at point.
13335         * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
13336         the nastiest part of the cyclic dependency.
13337         (cal-menu-update): Use dotimes and calendar-increment-month.
13339         * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
13340         (calendar-week-start-day): Add an :initializer.
13341         (calendar-mode-map): Use suppress-keymap, and command remapping.
13342         (describe-calendar-mode): Setup xref-stack info for the back button.
13343         (calendar-star-date): Insert before delete.
13344         (calendar-set-mode-line): Add file-modified info if applicable.
13345         (calendar-increment-month): New function.
13347 2006-01-24  Tobias C. Rittweiler  <tcr@freebits.de>  (tiny change)
13349         * font-lock.el (lisp-font-lock-keywords-2):
13350         Recognize "& keywords" only at word boundaries.
13352 2006-01-24  Nick Roberts  <nickrob@snap.net.nz>
13354         * thumbs.el (thumbs-extra-images): New variable.  Make it buffer-local
13355         and permanent-local.
13356         (thumbs-max-image-number): New variable.
13357         (thumbs-do-thumbs-insertion): Use them.
13358         (thumbs-per-line): Change default to 4.
13359         (thumbs-marked-list): Rename from thumbs-markedL.
13360         (thumbs-cleanup-thumbsdir, thumbs-delete-images)
13361         (thumbs-rename-images): Use -list instead of L for internal variables.
13362         (thumbs-call-convert): Use call-process instead of shell-command.
13363         (thumbs-insert-thumb): Add filename as help-echo to each image.
13364         (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
13365         Give dir to thumbs-show-thumbs-list.
13366         (thumbs-show-thumbs-list): Set default-directory to that of images.
13367         (thumbs-dired-show): Rename from thumbs-dired-show-all.
13368         (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
13369         (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
13370         (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
13372 2006-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13374         * ses.el (ses-read-cell): Provide a default value.
13376 2006-01-23  Juanma Barranquero  <lekktu@gmail.com>
13378         * term/w32-win.el (image-library-alist): Add additional names for
13379         GIF library.
13381 2006-01-23  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
13383         * international/latexenc.el (latexenc-find-file-coding-system):
13384         Add file-regular-p check.
13386 2006-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13388         * simple.el (clone-buffer): Don't show the new buffer in the same
13389         window.
13391 2006-01-23  Juri Linkov  <juri@jurta.org>
13393         * faces.el (link, link-visited): New faces based on default values
13394         of `info-xref' and `info-xref-visited'.
13396         * info.el (info-xref): Inherit from `link'.
13397         (info-xref-visited): Inherit from `link-visited'.
13399         * cus-edit.el (custom-buffer-create-internal): Use widget type
13400         `custom-manual' instead of `info-link' and don't set properties
13401         `button-face' and `mouse-face' explicitly.
13402         (custom-browse-group-tag, custom-browse-variable-tag)
13403         (custom-browse-face-tag): Inherit from widget class
13404         `custom-group-link' instead of `push-button'.
13405         (custom-button-unraised): Inherit from `underline' face.
13406         (custom-link): Inherit from `link' face.  Fix doc and group.
13407         (custom-add-parent-links, custom-group-value-create): Don't set
13408         properties `button-face' and `mouse-face' explicitly for
13409         `custom-group-link' widget.
13410         (custom-group-link): Add properties `button-face' and `mouse-face'
13411         to widget definition.
13412         (custom-field-keymap): New variable.  Put `custom-field-keymap' to
13413         editable-field's :keymap property.
13414         (custom-mode): Fix docstring: substitute keybindings for
13415         `widget-forward' and `widget-backward' from `widget-keymap',
13416         `widget-complete' from `custom-field-keymap', replace old
13417         `Custom-move-and-invoke' with `widget-move-and-invoke'.  Untabify.
13419         * desktop.el (desktop-load-file): Check for `fboundp' before
13420         calling `symbol-function'.
13422         * simple.el (clone-buffer, clone-indirect-buffer)
13423         (clone-indirect-buffer-other-window): Use `read-buffer' instead of
13424         `read-string'.  Fix prompts.
13426         * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
13428 2006-01-23  Nick Roberts  <nickrob@snap.net.nz>
13430         * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
13432 2006-01-22  Luc Teirlinck  <teirllm@auburn.edu>
13434         * startup.el (inhibit-splash-screen, initial-scratch-message):
13435         Doc fixes.
13437 2006-01-22  Michael Albinus  <michael.albinus@gmx.de>
13439         Sync with Tramp 2.0.52.
13441         * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
13442         * net/tramp-vc.el: Add code for unloading Tramp.  See comment before
13443         `tramp-unload-tramp' for checklist.
13445         * net/tramp.el: Require `timer-funcs' instead of `timer' if in
13446         XEmacs.  Contributed by Steve Youngs <steve@sxemacs.org>.
13447         (tramp-unload-file-name-handler-alist)
13448         (tramp-unload-tramp): New defuns.
13449         (tramp-advice-PC-expand-many-files): New defadvice.
13450         (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
13451         removed.
13452         (tramp-handle-expand-file-name): Remove double slash.
13453         (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
13454         It doesn't matter, because it will be converted later on.
13455         (tramp-handle-file-ownership-preserved-p): Rewritten.  The old
13456         implementation was just heuristic.
13457         (tramp-post-connection): Set uid and gid properties.
13458         (tramp-convert-file-attributes): Set file's gid change bit.
13459         (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
13460         (tramp-handle-expand-file-name): Use "~root" for tilde expansion
13461         in case of su(do)? methods.  The home directory of the local user
13462         will be taken else.
13463         (tramp-open-connection-telnet)
13464         (tramp-open-connection-rsh, tramp-open-connection-su)
13465         (tramp-open-connection-multi): Set PS1 to "$ ".  Otherwise, a
13466         local shell prompt could hurt.  Reported by Romain Francoise
13467         <romain@orebokech.com>.
13468         (tramp-let-maybe): Add `edebug-form-spec' property.
13469         (tramp-handle-expand-file-name): Bind `default-directory' locally
13470         to "/" in order to avoid problems with UNC shares or Cygwin
13471         mounts.
13472         (tramp-md5-function): Fix typo in error message.
13474         * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
13476         * net/tramp-util.el (top): Apply `ignore' instead of `identity'
13477         for byte-compiler pacification.
13479 2006-01-22  Andre Spiegel  <spiegel@gnu.org>
13481         * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
13482         ID-FORMAT `string'.  This allows us to get rid of
13483         `vc-user-login-name UID'.
13485         * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
13487 2006-01-22  John Paul Wallington  <jpw@pobox.com>
13489         * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
13491 2006-01-21  Martin Rudalics  <rudalics@gmx.at>
13493         * emacs-lisp/find-func.el (find-definition-noselect)
13494         (find-variable-noselect): Search variables in C source code too.
13495         (find-function-C-source, find-function-noselect, find-function)
13496         (find-function-other-frame, find-variable-noselect, find-variable)
13497         (find-variable-other-frame, find-variable-at-point):
13498         Fix docstrings.
13500 2006-01-21  Francesco Potort\e,Al\e(B  <pot@gnu.org>
13502         * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
13504 2006-01-21  Agustin Martin  <agustin.martin@hispalinux.es>
13506         * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
13507         Default to disabling the "Save affix" question.
13509 2006-01-21  Marien Zwart  <marienz@gentoo.org>  (tiny change)
13511         * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
13512         the first arg to run-python.
13514 2006-01-21  Eli Zaretskii  <eliz@gnu.org>
13516         * startup.el (command-line-1): Handle --no-desktop if desktop.el
13517         is not loaded.
13519 2006-01-20  Jay Belanger  <belanger@truman.edu>
13521         * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
13522         limit is 0.
13524         * calc/calc-arith.el (math-add-symb-fancy): Check the length of
13525         the correct variable.
13527 2006-01-20  Carsten Dominik  <dominik@science.uva.nl>
13529         * textmodes/org.el (org-open-at-point): Fixed bug with matching a
13530         link.  Fixed buggy argument sequence in call to `org-view-tags'.
13531         (org-compile-prefix-format): Set `org-prefix-has-tag'.
13532         (org-prefix-has-tag): New variable.
13533         (org-format-agenda-item): Remove tags from headline if
13534         appropriate.
13535         (org-agenda-remove-tags-when-in-prefix): New option.
13536         (org-get-tags-at): New function.
13538 2006-01-20  Nick Roberts  <nickrob@snap.net.nz>
13540         * thumbs.el (thumbs-buffer): New variable.  Make it buffer local.
13541         (thumbs-find-image): Move image name and number from buffer name
13542         to mode name.  Set thumbs-buffer.  Preserve point so that large
13543         images remain visible.
13544         (thumbs-file-alist): Construct list in thumbs-buffer and reverse
13545         order.
13546         (thumbs-show-image-num): Get image from thumbs-file-alist.  Set
13547         mode name.
13548         (thumbs-next-image, thumbs-previous-image): Make them work.
13550 2006-01-19  Luc Teirlinck  <teirllm@auburn.edu>
13552         * cus-edit.el (custom-buffer-create-internal): State in the text above
13553         the whole buffer buttons that they do not operate on hidden items.
13554         (custom-face-menu): Use `custom-face-save' instead of
13555         `custom-face-save-command'.
13556         (custom-face-save-command): Make it an alias for `custom-face-save'
13557         and declare it obsolete.
13558         (custom-face-save): Doc fix.
13560         * dired.el (dired-no-confirm): Add quote.
13561         (dired-subdir-alist-pre-R): Add quote in
13562         `make-variable-buffer-local' form and remove unbalanced parenthesis.
13564 2006-01-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13566         * textmodes/table.el (table-mode-indicator): Typo in last change.
13568 2006-01-19  Richard M. Stallman  <rms@gnu.org>
13570         * outline.el (hide-leaves): Don't call outline-end-of-heading.
13571         Fixes bug reported in Nov 2005.
13573         * isearch.el (isearch-forward): Doc fix.
13575         * dired.el (dired-move-to-filename-regexp): Define as alias.
13576         (dired-no-confirm): Use defcustom.
13577         (dired-subdir-alist-pre-R): Put defvar at top level.
13579         * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
13581         * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
13582         Mark as risky.
13584         * simple.el (set-mark-command): Doc fix.
13585         (clone-indirect-buffer-other-window):
13586         Read arg like clone-indirect-buffer.
13587         (move-beginning-of-line): Skip invisible newlines.
13589 2006-01-19  Masatake YAMATO  <jet@gyve.org>
13591         * progmodes/cpp.el (cpp-edit-load): Make the order of
13592         listed conditions in a base C code buffer and its associate
13593         CPP Edit buffer the same.
13595 2006-01-19  Kenichi Handa  <handa@m17n.org>
13597         * mail/rmail.el (rmail-enable-mime): Docstring fixed.
13598         (rmail-mime-feature): Likewise.
13599         (rmail-require-mime-maybe): Use display-warning to show a warning
13600         message.
13602         * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
13603         (find-auto-coding): Use auto-coding-regexp-alist-lookup.
13605 2006-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13607         * array.el: Move defvars out of eval-when-compile.
13608         (array-make-template): Replace undeclared global var with a local one.
13609         (array-mode): Inline initialization functions.
13610         (array-init-local-variables, array-init-max-row)
13611         (array-init-max-column, array-init-columns-per-line)
13612         (array-init-field-width, array-init-rows-numbered)
13613         (array-init-line-length, array-init-lines-per-row): Remove.
13615         * play/doctor.el: Move defvars out of eval-when-compile.  Use dolist.
13616         (doc-mode-map): Define explicitly.
13617         (doctor-txtype): Use mapc.
13619         * textmodes/table.el: Move defvars out of eval-when-compile.
13620         Remove harmful code meant to avoid byte-compiler warnings.
13621         (table-fixed-mode-indicator): Remove.  Use a more complex mode-line
13622         specification that checks table-fixed-width-mode directly.
13623         (table-recognize-region, table-recognize-cell):
13624         Use restore-buffer-modified-p.
13625         (table-fixed-width-mode): Remove code that refreshes
13626         table-fixed-mode-indicator.
13627         (*table--cell-describe-bindings, *table--cell-describe-mode):
13628         Avoid obsolete name print-help-return-message.
13629         (table--test-cell-list): Don't use replace-regexp from elisp.
13630         (table--point-entered-cell-function, table--point-left-cell-function):
13631         Don't set table-fixed-mode-indicator, use force-mode-line-update.
13633         * textmodes/org.el: Move defvars out of eval-when-compile.  Move code
13634         that was after the end of file.  Use buffer-file-name variable.
13635         (org-timestamp-change): Use with-current-buffer.
13636         (org-todo-list): Don't unnecessarily define a new buffer-local var.
13637         (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
13638         `file'.
13640         * progmodes/fortran.el: Move defvars out of eval-when-compile.
13641         (fortran-break-line): Remove unused var `opoint'.
13642         (fortran-abbrev-start): Obey help-event-list.
13644 2006-01-18  Jesper Harder  <harder@phys.au.dk>
13646         * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
13648 2006-01-18  Masatake YAMATO  <jet@gyve.org>
13650         * progmodes/make-mode.el (makefile-imake-mode): New mode
13651         derived from makefile-mode.
13652         (makefile-imake-mode-syntax-table): New syntax table
13653         derived from makefile-mode-syntax-table.
13654         (makefile-mode): Write about makefile-imake-mode in doc string.
13655         (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
13656         (makefile-imake-font-lock-keywords): New font lock keywords.
13658         * files.el (auto-mode-alist): Add Imakefile.
13660 2006-01-17  Agustin Martin  <agustin.martin@hispalinux.es>
13662         * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
13663         loading the file rather than when turning on flyspell-mode.
13665 2006-01-16  Luc Teirlinck  <teirllm@auburn.edu>
13667         * cus-edit.el (customize-rogue): Minor doc fix.
13669 2006-01-17  Juri Linkov  <juri@jurta.org>
13671         * dired-aux.el (dired-diff): Use dired-dwim-target-directory
13672         instead of the file at the mark as default if the file at the mark
13673         is the same as the file at point or if dired-dwim-target-directory
13674         is not the same as the current directory and the mark is not active.
13676         * log-view.el (log-view-minor-wrap): Use the same logic to get
13677         revisions as `log-view-diff'.
13679         * info.el (Info-revert-find-node): Check for Info-current-file
13680         before preserving new-history.
13682         * man.el (Man-heading-regexp): Add `/'.
13684         * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
13685         (html-mode): Set `sentence-end-base' instead of `sentence-end'.
13687 2006-01-16  Juri Linkov  <juri@jurta.org>
13689         * faces.el (mode-line-faces): New defgroup.
13690         (mode-line-highlight): Move definition after new defgroup.
13691         (mode-line, mode-line-inactive, mode-line-highlight):
13692         Replace :group `modeline' with `mode-line-faces'.
13693         (mode-line-buffer-id): New face.
13694         (modeline-buffer-id): New face alias.
13695         (vertical-border): Remove :group `modeline'.
13697         * bindings.el (propertized-buffer-identification): Use face
13698         `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
13699         (mode-line-next-buffer, mode-line-previous-buffer): New functions.
13700         (mode-line-buffer-identification-keymap): For mouse-1 replace
13701         `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
13702         Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
13703         mouse-3.
13705         * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
13706         Buffer-menu-buffer.  Doc fix.
13707         (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
13708         (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
13709         `Buffer-menu-buffer'.
13711         * info.el (Info-mode-line-node-keymap): New defvar.
13712         (Info-set-mode-line): Use `stringp' to check Info-current-file.
13713         Propertize Info-current-node with `mode-line-buffer-id' and
13714         `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
13716         * time.el (display-time-mail-face): Replace :group `faces' with
13717         `mode-line-faces'.
13719 2006-01-16  Kenichi Handa  <handa@m17n.org>
13721         * international/code-pages.el: Add autoload cookies for cp125[0345678].
13723         * language/european.el (cp1252): New alias for windows-1252.
13725         * international/mule.el (autoload-coding-system): Prepare for EOL
13726         variants.
13728 2006-01-15  Dan Nicolaescu  <dann@ics.uci.edu>
13730         * term.el (term-raw-map): Add mapping for insert.
13731         (term-send-insert): New.
13732         (term-mode): Make variables local here instead of doing it in
13733         `term-emulate-terminal'.
13734         (term-emulate-terminal): Delete incorrect optimization for cr+lf.
13735         Scroll reverse needs to take into account the scroll region.
13736         Saving and restoring the cursor should save the color attributes too.
13737         (term-reset-terminal): Reset the scroll region.
13738         (term-handle-ansi-escape): Cursor up and down should take into
13739         account the scroll region.
13740         (term-set-scroll-region): Rename from `term-scroll-region'.
13741         Move to 0,0 after setting the region.
13742         (term-handle-scroll): Handle scroll up.
13743         (term-down): Fix off by one error.
13744         (term-delete-lines): Do not delete outside the scroll region.
13745         (term-insert-lines): Take into account the scroll region.
13747 2006-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13749         * textmodes/ispell.el (ispell-internal-change-dictionary)
13750         (ispell-change-dictionary): Undo most of last change of 2006-01-13.
13751         (start, end): Move declaration outside of eval-when-compile.
13753         * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
13754         (flyspell-mode-on): Use it.
13756         * textmodes/ispell.el (ispell-kill-ispell): Run new hook
13757         ispell-kill-ispell-hook.
13759 2006-01-14  Luc Teirlinck  <teirllm@auburn.edu>
13761         * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
13762         (Custom-reset-saved): Do not ask for confirmation in single option
13763         buffers.
13765 2006-01-13  Richard M. Stallman  <rms@gnu.org>
13767         * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
13769 2006-01-13  Romain Francoise  <romain@orebokech.com>
13771         * add-log.el (add-change-log-entry, change-log-merge):
13772         Conditionally use `hard-newline'.
13774 2006-01-13  Martin Rudalics  <rudalics@gmx.at>
13776         * wid-edit.el (widget-field-end): If the overlay is no longer
13777         associated with a buffer, behave as if the overlay didn't exist.
13779         * cus-edit.el (custom-add-see-also, custom-add-parent-links):
13780         Make sure the links use the `custom-link' face.
13782 2006-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13784         * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
13785         (ld-script-mode): Don't set indent-line-function since we don't
13786         have one.
13788 2006-01-13  Carsten Dominik  <dominik@science.uva.nl>
13790         * textmodes/org.el (org-open-file): Use mailcap for selecting an
13791         application.
13792         (org-file-apps-defaults-gnu): Use mailcap as the default for
13793         selecting an application on a UNIX system.
13794         (org-agenda-show-tags): New command.
13795         (org-table-insert-hline): Keep cursor in current table line.
13796         (org-table-convert): Offset effect of modifying
13797         `org-table-insert-hline'.
13798         (org-format-agenda-item): New optional argument TAG.
13799         (org-compile-prefix-format): Handle %T format for the tag.
13800         (org-expand-wide-chars): New function.
13801         (org-table-insert-row, org-table-insert-hline):
13802         Use `org-expand-wide-chars'.
13803         (org-open-file): Fix bug in program launch.
13804         (org-get-time-of-day): Fix bug with times before 1am.
13805         (org-agenda-menu): Add tags commands.
13807 2006-01-13  Agustin Martin  <agustin.martin@hispalinux.es>
13809         * textmodes/ispell.el (ispell-init-process): Include the used
13810         dictionary in ispell process start message.
13811         (ispell-internal-change-dictionary): When flyspell-mode is active
13812         and dictionary is changed, make sure ispell process is restarted
13813         and flyspell word cache cleared out for the current buffer.
13814         (ispell-change-dictionary): Make sure flyspell word cache is
13815         cleared out in all buffers with active flyspell mode when
13816         dictionary is globally changed.
13817         Call ispell-internal-change-dictionary after dictionary change.
13819 2006-01-13  Eli Zaretskii  <eliz@gnu.org>
13821         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
13823         * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
13824         (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
13825         years.  Fix small differences wrt Makefile.in.
13826         (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
13827         Makefile.in does.
13829 2006-01-12  Bill Wohler  <wohler@newt.com>
13831         * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
13832         mh-search.el.
13834 2006-01-12  Masatake YAMATO  <jet@gyve.org>
13836         * progmodes/ld-script.el: Update copyright year.
13838 2006-01-12  Chong Yidong  <cyd@stupidchicken.com>
13840         * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
13841         Don't add widget if setting undefined.
13843 2006-01-12  John Paul Wallington  <jpw@pobox.com>
13845         * help-fns.el (describe-variable): Remove newlines from void
13846         variable output.
13848 2006-01-13  Nick Roberts  <nickrob@snap.net.nz>
13850         * wdired.el (wdired-mode-map): Add help echo for
13851         wdired-abort-changes.
13853         * man.el (Man-file-name-regexp): Adjust for a list of files.
13855 2006-01-12  Masatake YAMATO  <jet@gyve.org>
13857         * progmodes/ld-script.el (auto-mode-alist): Support
13858         suffix conventions used in netbsd and eCos.
13860 2006-01-11  Luc Teirlinck  <teirllm@auburn.edu>
13862         * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
13863         (custom-variable-menu, custom-face-menu, custom-group-menu)
13864         (Custom-mode-menu): Change names of menu items.  (As discussed on
13865         emacs-devel.)
13866         (custom-face-menu): Add "Undo Edits" item.
13868         * startup.el (init-file-user): defcustom -> defvar.
13870         * tooltip.el (tooltip-mode): Doc fix.
13872 2006-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13874         * reveal.el (reveal-post-command): window-buffer signals an error on
13875         dead windows rather than returning nil.
13876         (reveal-open-new-overlays): An overlay might die while we open others.
13878 2006-01-11  Bill Wohler  <wohler@newt.com>
13880         * cus-dep.el (generated-custom-dependencies-file): Fix typo and
13881         phrasing in docstring.
13883         * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
13884         can give some systems gas.  Add new file mh-buffers.el.
13886 2006-01-06  Masatake YAMATO  <jet@gyve.org>
13888         * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
13889         C preprocessor forward ported from GNU Emacs 21.2.
13891         * progmodes/asm-mode.el (asm-font-lock-keywords):
13892         Use `cpp-font-lock-keywords'.
13894         * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
13896         * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
13897         of $ for "\\.ld[s]?".
13899 2006-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13901         * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
13902         (tcl-indent-line): Return `noindent' if inside a string.
13904         * progmodes/flymake.el (flymake-split-string): Remove more than one
13905         empty string at beg/end of the result.
13906         (flymake-find-buildfile, flymake-find-possible-master-files):
13907         Use expand-file-name.
13908         (flymake-fix-file-name): Don't replace \ with / and don't remove ./
13909         since expand-file-name does it for us.  Use directory-file-name.
13910         (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
13911         (flymake-ler-get-type, flymake-ler-get-text)
13912         (flymake-ler-make-ler): Remove.  Replace by defstruct.  Update callers.
13913         (flymake-current-line-no): Remove spurious interactive spec.
13914         (flymake-delete-temp-directory): Remove unused var `slash-pos'.
13915         (flymake-check-include): Remove arg inc-path merged into inc-name.
13916         (flymake-check-patch-master-file-buffer): Fit in 80 columns.
13917         Arg regexp-list replaced by a simple regexp.
13918         (flymake-master-make-header-init, flymake-master-tex-init):
13919         Correspondingly replace regexp-list with a regexp.  Fix regexp.
13921 2006-01-10  Simon Josefsson  <jas@extundo.com>
13923         * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
13924         describing AUTH PLAIN fix.
13926 2006-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
13928         * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
13929         (report-emacs-bug): Don't record initial prompt text.
13930         Instead, add text properties to prompting text.
13931         (report-emacs-bug-hook): Delete prompting text.
13933 2006-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13935         * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
13936         `dirs'.  Adjust callers.
13938 2006-01-09  John Paul Wallington  <jpw@gnu.org>
13940         * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
13942 2006-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13944         * reveal.el (reveal-open-new-overlays): New extracted fun.
13945         (reveal-close-old-overlays): Idem.  Check overlays's liveness before
13946         using them.  Simplify the code.
13947         (reveal-post-command): Use them.  Fix up obsolete windows in
13948         reveal-open-spots.
13950         * progmodes/flymake.el: Use `require' rather than autoload for
13951         XEmacs's overlays.
13952         (flymake-get-common-file-prefix, flymake-build-relative-filename):
13953         Delete.  Use file-relative-name instead.
13954         (flymake-get-syntax-check-program-args, flymake-perl-init):
13955         Simplify the resulting code.
13957         * log-view.el (log-view-file-re, log-view-message-re): Add support
13958         for DaRCS output.
13960 2006-01-09  Alex Schroeder  <alex@gnu.org>
13962         * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
13963         identifiers sometimes added in square brackets at the beginning of
13964         subject lines.
13966 2006-01-07  Richard M. Stallman  <rms@gnu.org>
13968         * cus-edit.el (Custom-set, Custom-save): Doc fix.
13969         (Custom-reset-current, Custom-reset-saved): Change question text.
13970         (Custom-reset-standard): Likewise.
13971         (custom-variable-reset-saved): Doc fix.
13973 2006-01-07  Eli Zaretskii  <eliz@gnu.org>
13975         * startup.el (init-file-user): Doc fix.
13977 2006-01-07  Alex Schroeder  <alex@gnu.org>
13979         * mail/rmail.el (rmail-current-subject): New function.
13980         (rmail-current-subject-regexp): New function.
13981         (rmail-next-same-subject): Use it.
13983         * mail/rmailsum.el (rmail-summary-by-topic):
13984         Use rmail-current-subject and rmail-current-subject-regexp.
13985         (rmail-summary-next-same-subject): Ditto.
13987         * net/rcirc.el (rcirc-send-input): No longer check whether the
13988         process is open, since not all commands need an open process.
13989         (rcirc-send-string): Check whether the process is open before
13990         sending anything.
13991         (rcirc-ignore-list): New option.
13992         (rcirc-ignore-list-automatic): New variable.
13993         (rcirc-print): Take rcirc-ignore-list into account.
13994         (rcirc-cmd-ignore): New command.
13995         (rcirc-ignore-update-automatic): New function.
13996         (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
13997         list if ignored nicks.
13998         (rcirc-handler-NICK): Ditto, and also ignore the new nick.
14000 2006-01-06  David Reitter  <david.reitter@gmail.com>
14002         * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
14003         reflect the address to which the report will be sent.
14005 2006-01-06  Eli Zaretskii  <eliz@gnu.org>
14007         * progmodes/ld-script.el (auto-mode-alist): Recognize linker
14008         scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
14010 2006-01-01  Michael Ernst  <mernst@alum.mit.edu>  (tiny changes)
14012         * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
14014         * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
14015         the doc string: "functoin" => "function".
14016         * ldefs-boot.el: Likewise.
14018         * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
14019         message text: "Duplicat" => "Duplicate".
14021 2006-01-06  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
14023         * files.el (basic-save-buffer-2): If backing-up failed, reset
14024         buffer-backed-up to nil.
14026 2006-01-06  Nick Roberts  <nickrob@snap.net.nz>
14028         * progmodes/gud.el (gdb-script-skip-to-head)
14029         (gdb-script-calculate-indentation): Indent for breakpoint command
14030         lists also.
14032 2006-01-05  Bill Wohler  <wohler@newt.com>
14034         * Makefile.in (compile-always): Add mh-autoloads dependency.
14035         (bootstrap): Remove mh-autoloads dependency, as compile dependency
14036         provides it.
14037         (updates): Remove mh-autoloads dependency, since it probably has
14038         already run recently (via recompile).
14040 2006-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14042         * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
14043         argument `force' to disable the flyspell-last-buffer optimization.
14044         (flyspell-mode-on): Use it.
14046         * progmodes/flymake.el (flymake-get-cleanup-function): Default to
14047         flymake-simple-cleanup.
14048         (flymake-allowed-file-name-masks): Use this new default.
14049         All the functions are now called in the right buffer rather than
14050         passing the buffer as argument.
14051         (flymake-process-sentinel): Switch to buffer before calling cleanup.
14052         (flymake-parse-err-lines): Remove redundant buffer arg.
14053         (flymake-get-program-dir): Comment out unused function.
14054         (flymake-start-syntax-check, flymake-start-syntax-check-process):
14055         Remove redundant buffer argument.
14056         (flymake-get-real-file-name, flymake-simple-java-cleanup)
14057         (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
14059 2006-01-05  Richard M. Stallman  <rms@gnu.org>
14061         * info.el (Info-find-node): Don't record previous node if have none.
14062         (info): Go to directory only if history is empty.
14064         * simple.el (mark): Doc fix.
14066 2006-01-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
14068         * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
14069         already of desired type.
14070         (mac-ae-list): Coerce parameter to "list" type.
14071         (mac-dispatch-apple-event): Replace cadr part of event with a
14072         dummy position so that event-start returns it.
14074 2006-01-05  Carsten Dominik  <dominik@science.uva.nl>
14076         * textmodes/org.el (org-end-of-subtree): New function.
14077         (org-cycle, org-subtree-end-visible-p, org-scan-tags):
14078         Use `org-end-of-subtree'.
14079         (org-agenda, org-agenda-convert-date): Protect calls to
14080         `fit-window-to-buffer'.
14081         (org-tags-view): Force matching of sublevels when doing a
14082         todo-only search.  Define the correct redo command, including the
14083         arguments.
14084         (org-agenda-redo): Display message.
14085         (org-check-for-org-mode): New function.
14086         (org-agenda-type): New variable.
14087         (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
14088         Set `org-agenda-type'.
14089         (org-agenda-check-type): New function.
14090         (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
14091         (org-agenda-week-view, org-agenda-day-view)
14092         (org-agenda-next-date-line, org-agenda-previous-date-line)
14093         (org-agenda-log-mode, org-agenda-toggle-diary)
14094         (org-agenda-toggle-time-grid, org-agenda-date-later)
14095         (org-agenda-date-prompt, org-agenda-diary-entry)
14096         (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
14097         (org-agenda-convert-date, org-agenda-menu):
14098         Use `org-agenda-check-type'.
14099         (org-make-overlay, org-delete-overlay)
14100         (org-detatch-overlay, org-move-overlay, org-overlay-put):
14101         New compatibility functions.
14102         (org-calendar-select-mouse): New command.
14104 2006-01-04  Chong Yidong  <cyd@stupidchicken.com>
14106         * cus-edit.el (Custom-reset-current, Custom-reset-saved)
14107         (Custom-reset-standard): Fix y-or-n-p messages.
14108         (custom-link): New face for links.
14109         (custom-buffer-create-internal, custom-manual): Use it.
14110         (custom-face-save): Push to theme-face before setting face spec.
14112         * wid-edit.el (widget-default-mouse-face-get): New function.
14113         (widget-specify-button): Handle mouse-face like button-face.
14115         * custom.el (load-theme): Clear old theme settings if reloading.
14117 2006-01-03  Luc Teirlinck  <teirllm@auburn.edu>
14119         * cus-edit.el (custom-buffer-create-internal): Move whole buffer
14120         "Erase Customization" button back to same position it occupies in
14121         the individual State menus.
14123 2006-01-04  Kim F. Storm  <storm@cua.dk>
14125         * wid-edit.el (key-sequence): Rework widget to read key binding
14126         using `kbd' syntax.  Use C-q to insert literal key, event, or code.
14127         (widget-key-sequence-default-value): Default value for empty sequence.
14128         (widget-key-sequence-map): New map for reading key binding.  Bind C-q.
14129         (widget-key-sequence-read-event): New command for C-q.
14130         (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
14131         (widget-key-sequence-value-to-external): New functions.
14133 2006-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14135         * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
14136         Use expand-file-name.
14137         (flymake-delete-temp-directory): Use expand-file-name,
14138         file-name-directory, and directory-file-name.
14139         (flymake-strrchr): Delete.
14140         (flymake-start-syntax-check): Don't pass the redundant buffer argument
14141         to the init-f function.
14142         (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
14143         (flymake-init-find-buildfile-dir)
14144         (flymake-init-create-temp-source-and-master-buffer-copy)
14145         (flymake-simple-make-init-impl, flymake-simple-make-init)
14146         (flymake-master-make-init, flymake-master-make-header-init)
14147         (flymake-simple-make-java-init, flymake-simple-ant-java-init)
14148         (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
14149         (flymake-xml-init): Remove corresponding redundant buffer argument.
14150         (flymake-allowed-file-name-masks): Remove last elems that are equal to
14151         the default anyway.  Clean up regexps.
14153         * progmodes/flymake.el (flymake-temp-source-file-name)
14154         (flymake-master-file-name, flymake-temp-master-file-name)
14155         (flymake-base-dir): New buffer-local vars.
14156         (flymake-buffer-data, flymake-get-buffer-value)
14157         (flymake-set-buffer-value): Replace those hash-tables by the new
14158         buffer-local vars.  Update callers.
14160         * progmodes/flymake.el (flymake-check-start-time)
14161         (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
14162         (flymake-last-change-time, flymake-new-err-info, flymake-timer):
14163         Move definition, so we can remove redundant earlier declaration.
14164         (flymake-replace-regexp-in-string, flymake-split-string)
14165         (flymake-get-temp-dir): Use defalias.
14166         (flymake-popup-menu): Remove `pos' argument.  Use posn-at-point.
14167         (flymake-xemacs-window-edges): Remove unused function.
14168         (flymake-get-point-pixel-pos): Move.
14169         (flymake-pid-to-names, flymake-reg-names)
14170         (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
14171         Replace by a simple list flymake-processes and by process-buffer.
14172         Update callers.  Other than simplify the code, it uses buffers rather
14173         than buffer-names so it doesn't get confused by uniquify.
14174         (flymake-buffer-data): The global value should just be nil.
14176         * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
14177         Optimize the body of a defalias like any other code.
14179         * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
14180         Make sure we've setup font-lock's vars.  It may influence which
14181         function we then call.
14182         (font-lock-default-fontify-buffer): Don't bother calling set-defaults
14183         here since it's too late anyway.
14185 2006-01-03  Romain Francoise  <romain@orebokech.com>
14187         * startup.el (fancy-splash-tail, normal-splash-screen):
14188         Update copyright year.
14190 2006-01-02  J.D. Smith  <jdsmith@as.arizona.edu>
14192         * mouse.el (mouse-drag-track): Rename, from
14193         `mouse-drag-region-1'.  Includes optional argument required to
14194         enable post-drag event processing (e.g. delete region keys).
14195         Can be used without this argument to track a mouse region and operate
14196         on it as soon as the drag completes.
14197         (mouse-drag-region): Use `mouse-drag-track'.
14199 2006-01-02  Chong Yidong  <cyd@stupidchicken.com>
14201         * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
14202         Move to `custom-buffer' group.
14204         * cus-theme.el: Rewrite the Custom New Theme Mode interface.
14205         (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
14206         (custom-theme-insert-face-marker, custom-theme-variable-menu)
14207         (custom-theme-face-menu): New variables.
14208         (custom-theme-add-variable, custom-theme-variable-action)
14209         (custom-variable-reset-theme, custom-theme-delete-variable)
14210         (custom-face-reset-theme, custom-theme-face-action)
14211         (custom-theme-delete-face, custom-theme-merge-theme)
14212         (custom-theme-add-face, custom-theme-visit-theme): New functions.
14214 2006-01-01  Chong Yidong  <cyd@stupidchicken.com>
14216         * custom.el: Move Custom Themes commentary to start of theme code.
14217         (custom-known-themes): Rename `standard' theme to `changed'.
14218         (custom-push-theme): Caller no longer specifies what theme to use
14219         when doing `reset'---the setting is simply removed from the theme.
14220         Delete MODE from `theme-value' and `theme-settings' properties.
14221         (custom-declare-theme): Ignore &rest args since we don't use them.
14223         (custom-loaded-themes): Delete variable.
14224         (custom-theme-load-themes, custom-theme-loaded-p)
14225         (custom-theme-value): Delete functions.
14227         (custom-declare-theme): Signal error on invalid theme names.
14228         (provide-theme): custom-loaded-themes was deleted.
14229         (load-theme): Load the file unconditionally.
14230         (enable-theme): Call `load-theme' if theme is undefined.
14231         (custom-enabled-themes): Only update value for successful loads.
14232         (disable-theme): Complete from enabled themes when interactive.
14233         (custom-variable-theme-value): Calculate theme value directly.
14235         (custom-theme-reset-variables, custom-reset-variables): Mark as
14236         XEmacs compatibility functions.  We don't actually use these.
14238         * cus-edit.el (custom-variable-state-set):
14239         Use custom-variable-theme-value instead of custom-theme-value.
14240         (custom-face-state-set): Rename `standard' theme to `changed'.
14241         (custom-save-variables, custom-save-faces): Delete unneeded
14242         references to custom-reset-variables.
14243         (custom-save-resets): Delete function.
14244         (custom-save-variables, custom-save-faces): MODE argument deleted.
14245         (custom-save-variables, custom-save-faces): Ignore theme values.
14247         * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
14248         compatibility function.
14250 2006-01-01  Richard M. Stallman  <rms@gnu.org>
14252         * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
14253         (Custom-reset-current, Custom-reset-saved): Likewise.
14254         (Custom-reset-standard): Show message if aborted.
14255         (custom-mode): Doc fix, describing those commands.
14257         * mouse.el (mouse-drag-region-1): When following link via mouse-2,
14258         put on event-kind property.
14260 2005-12-31  Chong Yidong  <cyd@stupidchicken.com>
14262         * custom.el (provide-theme): Ban `user' theme name.
14263         (custom-enabling-themes): New variable.
14264         (enable-theme): Don't enable user if custom-enabling-themes is t.
14265         (custom-enabled-themes): Make it a defcustom.
14266         (custom-theme-recalc-face): No-op if face is undefined.
14268         * cus-edit.el (custom-button-mouse): New variable.
14269         (custom-button-mouse): New face.
14270         (custom-raised-buttons, custom-mode): Use it.
14272         * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
14274 2005-12-31  Eli Zaretskii  <eliz@gnu.org>
14276         * progmodes/gud.el (gud-display-line): Support hl-line in the
14277         source buffer.
14279 2005-12-31  Lennart Borgman  <lennart.borgman.073@student.lu.se>  (tiny change)
14281         * mouse.el (mouse-drag-window-above): Verify that the found window
14282         overlaps with the given window in the horizontal dimension.
14284 2005-12-31  Eli Zaretskii  <eliz@gnu.org>
14286         * Makefile.in (cvs-update): New target.
14288         * makefile.w32-in (cvs-update): Ditto.
14290 2005-12-30  Chong Yidong  <cyd@stupidchicken.com>
14292         * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
14293         (custom-new-theme-mode-map): New variable.
14295 2005-12-30  Richard M. Stallman  <rms@gnu.org>
14297         * custom.el (custom-load-themes): Function deleted.
14299         * cus-edit.el (custom-save-loaded-themes): Function deleted.
14300         (custom-save-variables): Don't delete or add custom-load-themes call.
14302 2005-12-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14304         * cus-start.el: Add `visible-cursor'.
14306         * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
14307         (flymake-parse-output-and-residual): Remove `source-buffer' argument.
14308         (flymake-process-filter): Switch to buffer before calling it instead.
14309         (flymake-post-syntax-check, flymake-highlight-err-lines)
14310         (flymake-delete-own-overlays, flymake-parse-err-lines)
14311         (flymake-start-syntax-check, flymake-start-syntax-check-process)
14312         (flymake-count-lines, flymake-parse-residual):
14313         Remove constant buffer argument.
14314         (flymake-start-syntax-check-for-current-buffer): Remove.
14315         Update callers to use flymake-start-syntax-check instead.
14316         (flymake-display-err-menu-for-current-line):
14317         Remove unused var `mouse-pos'.
14318         (flymake-restore-formatting): Comment out unused function.
14319         (flymake-report-status, flymake-report-fatal-status): Remove buffer
14320         argument, use current-buffer instead.  Update callers.
14322 2005-12-30  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14324         * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
14325         buffer-local because choose-completion-delete-max-match requires
14326         that we set completion-ignore-case (i.e., binding via let is not
14327         sufficient).
14328         (bibtex-complete): Always set completion-ignore-case and
14329         choose-completion-string-functions.  The latter is needed because
14330         choose-completion-string-functions keeps its value if we quit the
14331         *Completions* buffer without requesting a completion.
14333 2005-12-30  Andreas Schwab  <schwab@suse.de>
14335         * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
14337 2005-12-30  Eli Zaretskii  <eliz@gnu.org>
14339         * jit-lock.el (jit-lock-chunk-size): Doc fix.
14341 2005-12-30  Juri Linkov  <juri@jurta.org>
14343         * locate.el (locate-fcodes-file, locate-header-face)
14344         * progmodes/delphi.el (delphi-other-face)
14345         * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
14347         * paren.el (show-paren-match, show-paren-mismatch): Use existing
14348         group `paren-showing-faces'.
14350         * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
14351         (goto-address): Fix docstring.
14353         * net/webjump.el (webjump-sample-sites): Update URLs.
14355         * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
14357         * subr.el (cancel-change-group): Add listp around pending-undo-list.
14359 2005-12-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14361         * font-lock.el (font-lock-compile-keywords): Signal an error when
14362         font-lock-set-defaults hasn't been called.
14364 2005-12-29  Luc Teirlinck  <teirllm@auburn.edu>
14366         * subr.el (noreturn, 1value): Doc fixes.
14368 2005-12-29  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14370         * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
14371         that assoc-string returns nil.
14373 2005-12-29  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14375         * textmodes/bibtex.el (bibtex-entry-type-whitespace)
14376         (bibtex-entry-type-str, bibtex-empty-field-re)
14377         (bibtex-search-backward-string, bibtex-preamble-prefix)
14378         (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
14379         (bibtex-any-valid-entry-type): New variable.
14380         (bibtex-parse-field-name): Simplify.
14381         (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
14382         (bibtex-preamble-prefix): Include left delimiter.
14383         (bibtex-search-forward-field, bibtex-search-backward-field):
14384         Allow unbounded search past entry boundaries (required by bibtex-pop).
14385         (bibtex-text-in-field-bounds): Use push.
14386         (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
14387         (bibtex-parse-preamble, bibtex-valid-entry)
14388         (bibtex-beginning-first-field): New functions.
14389         (bibtex-skip-to-valid-entry): Use bibtex-valid-entry.  Fix regexp.
14390         (bibtex-map-entries): Fix docstring.
14391         (bibtex-flash-head): New arg prompt.  Simplify.
14392         (bibtex-enclosing-field): Include code of bibtex-inside-field.
14393         (bibtex-insert-kill): Simplify.  Always insert text past the
14394         current field or entry.
14395         (bibtex-format-entry): Use bibtex-parse-field.
14396         (bibtex-pop): Use bibtex-beginning-of-entry and
14397         bibtex-end-of-entry to initiate the search.  Insert empty field if
14398         we found ourselves.
14399         (bibtex-print-help-message): New args field and comma.
14400         Handle entry keys.
14401         (bibtex-make-field): Use bibtex-beginning-of-entry.
14402         (bibtex-end-of-entry): Use bibtex-valid-entry.  Recognize any
14403         invalid entry.
14404         (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
14405         Handle preambles.  Simplify code for thorough test.
14406         (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
14407         New arg comma.  Handle entry heads.
14408         (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
14409         (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
14410         New arg comma.
14411         (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
14412         (bibtex-fill-field): Simplify.
14413         (bibtex-fill-entry): Use bibtex-beginning-first-field and
14414         bibtex-parse-field.
14415         (bibtex-convert-alien): Do not wait before calling bibtex-validate.
14416         (bibtex-complete): Use bibtex-parse-preamble.
14418 2005-12-29  Nick Roberts  <nickrob@snap.net.nz>
14420         * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
14421         Display name of expression instead of convenience variable.
14422         (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
14424         * progmodes/gud.el (gud-tooltip-dereference): Rename from
14425         toggle-gud-tooltip-dereference.
14426         (gud-tooltip-print-command): Move concatenation of "*" to expr to...
14427         (gud-tooltip-tips): ...here when dereferencing.
14429 2005-12-28  Bill Wohler  <wohler@newt.com>
14431         * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
14433 2005-12-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14435         * vc.el (vc-annotate-display): Replace optional arg `color-map' with
14436         compulsory arg `ratio'.  Inline body of vc-annotate-time-span.
14437         (vc-annotate-display-autoscale): Adjust call.
14438         (vc-annotate-display-default): Adjust call.  Make arg compulsory.
14439         Fix interactive spec.
14440         (vc-annotate-time-span): Remove.
14441         (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
14442         (vc-annotate-mode-menu, vc-annotate-display-autoscale)
14443         (vc-annotate-display-select): Use new name.
14445         * vc.el (vc-annotate-mode-map): Remove obsolete binding.
14446         (vc-annotate-mode-menu): Remove left-over redundant declaration.
14447         Correct the construction of span entries.  Simplify.
14448         (vc-annotate-display-select): Fix the nil case.
14449         (vc-annotate): Remove obsolete (and now broken) code.
14450         (vc-annotate-extract-revision-at-line): Remove obsolete code.
14451         (vc-annotate-time-span): Remove unused arg `quantize'.  Simplify.
14453 2005-12-28  Luc Teirlinck  <teirllm@auburn.edu>
14455         * subr.el (lazy-completion-table): Correct typo in docstring.
14457         * startup.el (command-line): Use `custom-reevaluate-setting' for
14458         `send-mail-function'.
14460         * mail/sendmail.el (send-mail-function): Autoload the standard-value.
14462 2005-12-05  Ralf Angeli  <angeli@iwi.uni-sb.de>
14464         * mail/smtpmail.el (smtpmail-try-auth-methods):
14465         Send credentials together with "AUTH PLAIN" command.
14467 2005-12-27  Richard M. Stallman  <rms@gnu.org>
14469         * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
14470         mouse-2, go back to previously selected window, so it's selected
14471         when mouse-2 command runs.
14473 2005-12-27  Juri Linkov  <juri@jurta.org>
14475         * descr-text.el (describe-text-sexp): Use square brackets for
14476         button [Show] to distinguish it from the property value `show'.
14477         (describe-property-list): Use `insert-text-button' with
14478         `help-face' type instead of putting face in quotes, because button
14479         is not created automatically for a list of faces.
14480         (describe-text-properties-1): Put button-type value in quotes to
14481         distinguish from plain text "button".
14482         (describe-char): Display code point values in hex.  Don't use
14483         `symbol-name' for `current-input-method' because it is a string.
14484         Use `insert-text-button' with `help-face' type instead of putting
14485         hardcoded face in quotes, because button is not created automatically.
14487 2005-12-27  Richard M. Stallman  <rms@gnu.org>
14489         * progmodes/glasses.el (glasses-face): More specific custom type.
14491         * files.el (set-visited-file-name): Doc fix.
14493         * textmodes/flyspell.el (flyspell-external-point-words):
14494         Use local var buffer-scan-pos to advance scan for next misspelling.
14495         Advance it only after we find the misspelling.
14497 2005-12-27  Agustin Martin  <agustin.martin@hispalinux.es>
14499         * textmodes/flyspell.el (flyspell-external-point-words):
14500         New criteria for finding the misspelling in the buffer.
14502 2005-12-27  Nick Roberts  <nickrob@snap.net.nz>
14504         * help-mode.el (help-insert-string): Set help-xref-stack-item
14505         rather than call help-setup-xref.
14507         * descr-text.el (describe-char): Revert previous changes for
14508         optional buffer argument.
14510 2005-12-27  Juri Linkov  <juri@jurta.org>
14512         * help-mode.el (help-insert-string): New function.  Save buffer
14513         contents in cases where it is impossible to recompute the old contents.
14515         * descr-text.el (describe-char): Set help-xref-stack-item
14516         explicitly after buffer has been generated.
14518 2005-12-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14520         * cus-start.el (all): Add x-gtk-show-hidden-files.
14522 2005-12-26  Richard M. Stallman  <rms@gnu.org>
14524         * replace.el (perform-replace): Calculate match-again
14525         before skipping read-only matches.
14527         * paren.el (paren-showing-faces): New group.
14528         (show-paren-match, show-paren-mismatch): Move to that group.
14530         * button.el (button): Put into group `basic-faces'.
14532         * progmodes/make-mode.el: Remove faces from group `faces'.
14534         * apropos.el (apropos, apropos-value): Doc fix.
14535         (apropos-documentation): Doc fix.
14537 2005-12-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14539         * subr.el (lazy-completion-table): Remove argument `args'.
14541         * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
14542         Don't use the `args' argument of lazy-completion-table.
14544 2005-12-26  Nick Roberts  <nickrob@snap.net.nz>
14546         * descr-text.el (describe-char): Add optional argument for buffer.
14547         Set buffer appropriately.  Call help-setup-xref.
14548         Suggested by Stefan Monnier.
14550 2005-12-26  Juri Linkov  <juri@jurta.org>
14552         * descr-text.el: Require `help-fns' at runtime.  Don't require
14553         `button' for byte compilation.
14554         (describe-text-widget): Add `help-echo' for first button.
14555         Use `help-info' for second.
14556         (describe-property-list): Use `help-argument-name' instead of `italic'.
14557         (describe-text-category): Add prompt to interactive spec.
14558         Call `help-setup-xref'.
14559         (describe-char): Use `help-character-set'.  Add `help-echo' for
14560         code point.  Use `help-input-method'.  Remove superfluous insert.
14562 2005-12-25  Richard M. Stallman  <rms@gnu.org>
14564         * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
14565         at point, in case of narrowing.
14567         * progmodes/delphi.el (delphi-other-face): Allow nil in type.
14569         * locate.el (locate-header-face): Allow nil in type.
14571         * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
14573 2005-12-25  Romain Francoise  <romain@orebokech.com>
14575         * battery.el (battery-linux-proc-acpi): Also try
14576         `/proc/acpi/thermal_zone/THM0/temperature'.
14578 2005-12-24  Chong Yidong  <cyd@stupidchicken.com>
14580         * custom.el (custom-push-theme): Fix docstring.
14582         * cus-edit.el (custom-variable-set, custom-variable-save)
14583         (custom-variable-save): Custom-quote widget values.
14584         (customize-save-variable): Fix custom-push-theme call.
14586 2005-12-24  Eli Zaretskii  <eliz@gnu.org>
14588         * w32-fns.el (w32-batch-update-autoloads): New function.
14590         * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
14591         Use w32-batch-update-autoloads, and don't setq generated-autoload-file
14592         from the command line.
14594 2005-12-23  Chong Yidong  <cyd@stupidchicken.com>
14596         * custom.el (custom-push-theme): Clarify docstring.  VALUE nil for
14597         reset means to remove setting from theme entirely.  Don't keep
14598         expanding theme-settings list; delete old entries if necessary.
14600         * cus-edit.el (custom-buffer-create-internal): Move "Erase
14601         customization" button one line up.
14602         (custom-themed): New face.
14603         (custom-magic-alist): New value, THEMED, for theme settings.
14604         (custom-variable-state-set, custom-face-state-set):
14605         Check theme-value instead of saved-value.
14606         (custom-variable-reset-standard, custom-face-reset-standard):
14607         Remove theme setting entirely.  Recalculate new values.
14608         (custom-variable-set, custom-variable-set)
14609         (custom-variable-reset-saved, custom-variable-reset-backup)
14610         (custom-face-set, custom-face-reset-saved): Update `user' theme.
14611         (custom-variable-save): Fix typos.
14613 2005-12-23  Juri Linkov  <juri@jurta.org>
14615         * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
14616         Add autoload cookies.
14617         (edebug-outside-d-c-i-n-s-w): New variable.
14618         (edebug-display, edebug-outside-excursion): Use it to save the
14619         original value of default-cursor-in-non-selected-windows.
14620         Set default-cursor-in-non-selected-windows to t while Edebug
14621         is active.
14622         (edebug-mode, edebug-eval-mode): Doc fix.
14624         * mouse.el (mouse-choose-completion): Replace `buffer-substring'
14625         with `buffer-substring-no-properties' to remove common substring
14626         highlighting.
14628         * info.el (info-other-window, info): Rename function argument
14629         `file' to `file-or-node'.
14630         (Info-complete-menu-item): Use local variable `complete-nodes' to
14631         keep the global value of `Info-complete-nodes' unchanged for
14632         subsequent completions.
14633         (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
14635         * simple.el (get-next-valid-buffer, last-buffer)
14636         (next-error-buffer-p, next-error-find-buffer)
14637         (minibuffer-history-sexp-flag): Doc fix.
14639         * savehist.el (savehist-mode-hook): Add `:group'.
14641         * log-view.el: Call autoload for vc-find-version.
14642         (log-view-current-file): Adjust subgroup numbers.
14643         (log-view-current-tag): Add `length'.
14645 2005-12-23  Richard M. Stallman  <rms@gnu.org>
14647         * vc.el (vc-annotate-car-last-cons): Defn moved up.
14649 2005-12-23  Juri Linkov  <juri@jurta.org>
14651         * hi-lock.el (hi-lock-archaic-interface-message-used)
14652         (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
14653         (hi-lock-mode): Display "Hi" in the mode line only when
14654         hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
14655         (hi-lock-write-interactive-patterns):
14656         Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
14657         (hi-lock-set-pattern, hi-lock-set-file-patterns)
14658         (hi-lock-font-lock-hook): Set 3rd arg `how' of
14659         font-lock-add-keywords to t.
14661 2005-12-23  David Koppelman  <koppel@ece.lsu.edu>
14663         * hi-lock.el (hi-lock-highlight-range): New variable.
14664         (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
14665         only if font-lock-fontified is non-nil.  Remove overlays.
14666         (hi-lock-set-pattern): Call font-lock-fontify-buffer if
14667         font-lock-fontified is non-nil, otherwise use overlays (instead of
14668         text properties).
14669         (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
14670         New variables.
14671         (hi-lock-string-serialize) New function.
14673 2005-12-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14675         * menu-bar.el (menu-find-file-existing): New function.
14676         (menu-bar-file-menu): Use menu-find-file-existing for Open.
14678         * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
14680 2005-12-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14682         * vc.el: Remove unnecessary leading * in docstrings.
14683         (vc-annotate-mode-map): Move initialization into declaration.
14684         (vc-static-header-alist): Nitpick on the regexp.
14685         (vc-default-init-version): New fun.
14686         (vc-register): Use it.
14687         (vc-insert-headers): Use dolist.
14688         (vc-annotate-get-backend): Remove unused function.
14689         (vc-annotate-add-menu): Remove.  Build the menu directly at toplevel.
14690         (vc-annotate-mode): Remove corresponding call.
14691         (vc-annotate-car-last-cons): Simplify.
14692         (vc-annotate-buffers): Remove var.
14693         (vc-annotate-backend): Make it buffer-local.
14694         (vc-annotate): Move the interaction to the interactive spec.
14695         Add a `buf' argument.
14696         (vc-annotate-warp-version): Use this new `buf' argument to avoid
14697         killing&creating a vc-annotate buffer, which is very disruptive when
14698         the buffers are shown in dedicated frames.
14700 2005-12-23  Nick Roberts  <nickrob@snap.net.nz>
14702         * descr-text.el: Add FSF as maintainer.
14703         (describe-text-mode, describe-text-mode-map)
14704         (describe-text-mode-hook, describe-text-done): Delete.  Use normal
14705         help-mode.
14706         (describe-text-widget, describe-text-sexp)
14707         (describe-property-list, describe-text-category)
14708         (describe-text-properties, describe-text-properties-1)
14709         (describe-char): Use help buttons instead of widgets.
14710         (describe-char-unicodedata-file): Make URL link in doc string.
14712 2005-12-22  Richard M. Stallman  <rms@gnu.org>
14714         * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
14715         (custom-buffer-create-internal): Reword the top-of-buffer help intro.
14716         Don't include buttons that write a file when there's no file.
14717         (custom-variable-menu, custom-face-menu, custom-group-menu):
14718         Don't include commands that write a file when there's no file.
14719         (customize-browse): Reword the top-of-buffer help intro.
14720         (custom-buffer-create-internal): Fix previous change.
14721         (customize-changed-options-previous-release): Prev release is 21.1.
14722         (customize-changed-options): Doc fix.
14723         (customize-changed): New alias.
14724         (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
14725         Say "standard values".
14726         (Custom-reset-standard): Doc fix.
14727         (custom-face-reset-standard): Doc fix.
14729 2005-12-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14731         * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
14732         even if font-lock-mode is non-nil since it may be t without having
14733         turned on font-lock-mode-internal.
14734         (font-lock-choose-keywords): Minor optimization.
14735         (font-lock-add-keywords, font-lock-remove-keywords)
14736         (font-lock-set-defaults): Don't call make-local-variable on a variable
14737         that we know to already be local.
14739 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14741         * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
14742         messages if in the minibuffer.
14744 2005-12-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14746         * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
14747         (tex-mode-flyspell-verify, flyspell-get-word)
14748         (flyspell-external-point-words): Don't use point-min/max uselessly.
14750         * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
14751         by Kevin Rodgers.  Instead, just hide the completions buffer if we
14752         don't need to show it.
14754 2005-12-21  Luc Teirlinck  <teirllm@auburn.edu>
14756         * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
14758 2005-12-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14760         * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
14761         delete-windows-on with an inexistent buffer.
14763 2005-12-22  Nick Roberts  <nickrob@snap.net.nz>
14765         * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
14766         Delete defcustom variable :tag names.
14768 2005-12-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14770         * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
14771         (log-view-font-lock-keywords): Ajust subgroup numbers.
14772         (log-view-current-tag): Don't hard code the number of subgroups.
14774 2005-12-20  Juri Linkov  <juri@jurta.org>
14776         * tooltip.el (tooltip): Move defgroup before define-minor-mode.
14777         (tooltip-x-offset, tooltip-y-offset): Doc fix.
14779         * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
14780         (menu-bar-non-minibuffer-window-p): Instead of checking
14781         display-multi-frame-p, use selected-frame when menu-updating-frame
14782         is nil.
14784 2005-12-20  Stuart Herring  <herring@lanl.gov>  (tiny change)
14786         * align.el (align-rules-list): Use [ \t] instead of \s-
14787         for column separators in text mode.
14789 2005-12-20  Nick Roberts  <nickrob@snap.net.nz>
14791         * help-mode.el (help-customize-variable, help-customize-face):
14792         Don't pop help-xref-stack as help-follow no longer pushes
14793         anything on to it.
14795 2005-12-20  Carsten Dominik  <dominik@science.uva.nl>
14797         * textmodes/org.el (org-agenda-custom-commands): New option.
14798         (org-agenda): Offer custom commands on splash screen.
14799         (org-make-tags-matcher): Parser for Boolean logic added.
14800         (org-agenda-set-tags): New command.
14801         (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
14802         (org-set-tags): Efficiency improvements.
14803         (org-auto-align-tags): New option.
14804         (org-todo, org-demote, org-promote): Realign tags.
14805         (org-tags-completion-function): Use also "&" and "|" as separators.
14806         (org-org-menu): Agenda commands simplified.
14808 2005-12-19  Luc Teirlinck  <teirllm@auburn.edu>
14810         * cus-edit.el (customize-apropos, customize-apropos-options):
14811         Docstring changes.
14813         * font-lock.el (font-lock): Add tags to the links in the defgroup.
14815 2005-12-19  Chong Yidong  <cyd@stupidchicken.com>
14817         * longlines.el (longlines-mode): Wrap while widened.
14818         (longlines-decode-region, longlines-encode-region): Compute max
14819         just once.
14821 2005-12-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
14823         * cus-edit.el (mac): New group.
14825         * cus-start.el (all): Add user options in macterm.c.  Add test for
14826         Mac-related built-ins.  Fix test for GTK-related built-ins.
14828         * term/mac-win.el (mac-handle-language-change)
14829         (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
14830         (mac-services-open-selection, mac-services-mail-selection)
14831         (mac-services-mail-to, mac-services-insert-text)
14832         (mac-dispatch-apple-event): Add docstrings.
14833         (x-get-selection, mac-select-convert-to-string): Select coding
14834         system from `utf-16be' and `utf-16le' using `byteorder'.
14836 2005-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14838         * subr.el (lazy-completion-table): Don't be fooled if the var holds
14839         a "list" (lambda ...) rather than a real completion list.
14841         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
14842         lexical-let when encountering ((lambda (...) ...) ...).
14844 2005-12-17  Chong Yidong  <cyd@stupidchicken.com>
14846         * progmodes/sh-script.el (sh-mode):
14847         * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
14848         * textmodes/picture.el (picture-mode): Update docstrings.
14850 2005-12-17  Eli Zaretskii  <eliz@gnu.org>
14852         * makefile.w32-in (autoloads, custom-deps): Warn that parts of
14853         commands enclosed in $(ARGQUOTE)s should not be split between two
14854         lines, as that will break with GNU Make >3.80, when sh.exe is used
14855         and arg quoting is with '..'.
14856         (autoloads): Don't break the quoted --eval expression between
14857         several lines.
14859 2005-12-17  Chong Yidong  <cyd@stupidchicken.com>
14861         * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
14862         Capture error from printing circular structures.
14864 2005-12-17  Martin Rudalics  <rudalics@gmx.at>
14866         * wid-edit.el (widget-checkbox-action): Clear undo info.
14868 2005-12-16  Bill Wohler  <wohler@newt.com>
14870         * menu-bar.el (kill-this-buffer): Set a good example by using menu
14871         bar, not menubar in comment.
14873 2005-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14875         * progmodes/cc-engine.el (c-after-change-check-<>-operators):
14876         After-change-functions should not clobber the match data.
14878 2005-12-16  Juri Linkov  <juri@jurta.org>
14880         * simple.el (choose-completion): Use `buffer-substring-no-properties'
14881         instead of `buffer-substring'.
14882         (completion-common-substring): Doc fix.
14883         (completion-setup-function): Use minibuffer-completion-contents
14884         instead of minibuffer-contents.  Don't set common-string-length
14885         initially.  Remove special handling of partial-completion-mode.
14886         Move computation of completion-base-size into one cond.
14887         Call completion-base-size-function in mainbuf.  In computation of
14888         completion-base-size for file name completion don't move point to
14889         the end of the minibuffer.  Move computation of common-string-length
14890         into one cond.  Start putting faces only when common-string-length>=0.
14891         Add condition to put completions-common-part when
14892         common-string-length>0.
14894         * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
14895         place point at the first different character in the minibuffer
14896         even if this position is at the beginning of the minibuffer.
14898         * info.el (Info-read-node-name-1): In completion-base-size-function's
14899         lambda return 1 if common-substring or minibuffer-completion-contents
14900         starts with (, and 0 otherwise.
14902         * emacs-lisp/crm.el (crm-minibuffer-completion-help):
14903         Use `crm-current-element' for second arg of `display-completion-list'.
14905 2005-12-16  Klaus Zeitler  <kzeitler@lucent.com>
14907         * files.el (set-auto-mode): Look for an interpreter specified on
14908         the first line also if search for mode specification succeeded,
14909         but the mode is not known.
14911 2005-12-16  Carsten Dominik  <dominik@science.uva.nl>
14913         * textmodes/org.el (org-tags-match-list-sublevels): New option.
14914         (org-open-at-point): Implement tag searches as links.
14915         (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
14916         (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
14917         (org-tags-sparse-tree, org-tags-view, org-set-tags)
14918         (org-agenda-dispatch): New commands.
14919         (org-use-tag-inheritance, org-tags-column): New options.
14920         (org-tab-follows-link, org-return-follows-link): New options.
14921         (org-tags): New customize group.
14922         (org-start-icalendar-file): Get local time zone.
14923         (org-tags-completion-function): New function.
14924         (org-set-font-lock-defaults): Make sure links will also be
14925         highlighted inside headlines.
14927 2005-12-16  Mark Plaksin  <happy@usg.edu>  (tiny change)
14929         * term.el (term-emulate-terminal):
14930         Let term-handle-ansi-terminal-messages override what Bash says about
14931         its current directory.
14933 2005-12-16  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
14935         * bindings.el (last-buffer): Move to simple.el.
14936         * simple.el (last-buffer): Move here.
14937         (get-next-valid-buffer): New function.
14938         (next-buffer): Use frame-local buffer list, maintain buried buffer list.
14939         (prev-buffer): Ditto.  Rename to `previous-buffer'.
14941         * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
14942         * bindings.el (global-map): Ditto.
14944 2005-12-15  Luc Teirlinck  <teirllm@auburn.edu>
14946         * cus-edit.el: Introductory comment change.
14947         (custom-magic-alist): Change message string for the `rogue' state.
14949 2005-12-15  Richard M. Stallman  <rms@gnu.org>
14951         * tooltip.el: Delete defcustom variable :tag names.
14953         * complete.el (partial-completion-mode): Doc fix.
14955         * textmodes/flyspell.el (flyspell-external-point-words):
14956         Use save-excursion to ensure we don't move backward in the
14957         search loop, not even one character.
14958         (flyspell-delete-all-overlays): Use remove-overlays directly.
14960         * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
14961         (ispell-start-process): Set that variable.
14962         Clear ispell-buffer-local-name.
14963         (ispell-internal-change-dictionary):
14964         Set ispell-current-dictionary after killing process.
14965         (ispell-buffer-local-dict):
14966         Don't set spell-personal-dictionary after killing process.
14967         (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
14968         (ispell-tex-skip-alists, ispell-html-skip-alists)
14969         (ispell-skip-region-alist): Mark as risky.
14971         * net/newsticker.el (newsticker--retrieval-timer-list)
14972         (newsticker--display-timer, newsticker-running-p)
14973         (newsticker-ticker-running-p): Definitions moved up.
14975 2005-12-16  Nick Roberts  <nickrob@snap.net.nz>
14977         * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
14979 2005-12-15  David Ponce  <david@dponce.com>
14981         * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
14982         (recentf-edit-list, recentf-open-files): Signal an error when
14983         there is no recent file.
14985 2005-12-14  Lennart Borgman  <lennart.borgman.073@student.lu.se>
14987         * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
14988         read-only except for texinfo-format-region evaluation.
14990 2005-12-14  Richard M. Stallman  <rms@gnu.org>
14992         * vc.el (vc-default-previous-version, vc-default-next-version)
14993         (vc-do-command): Doc fixes.
14995 2005-12-14  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
14997         * textmodes/bibtex.el (bibtex-expand-strings)
14998         (bibtex-autokey-expand-string, bibtex-name-part)
14999         (bibtex-entry-type-whitespace, bibtex-entry-type-str)
15000         (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
15001         (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
15002         (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
15003         (bibtex-entry-postfix, bibtex-known-entry-type-re)
15004         (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
15005         (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
15006         (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
15007         (bibtex-beginning-of-last-entry): Remove.
15008         (bibtex-parse-field-name): Use bibtex-field-name.  Issue error
15009         message if comma is missing but buffer is read-only.
15010         (bibtex-parse-field-text): Handle whitespaces at the end of field
15011         text.  Return 3-element list with beginning and end of field text
15012         and end of field.
15013         (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
15014         (bibtex-parse-field): Remove arg name.  Use bibtex-field-name.
15015         (bibtex-search-forward-field, bibtex-search-backward-field):
15016         Search always delimited by limits of entry.  Use more efficient
15017         search algorithms.
15018         (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
15019         bibtex-end-of-name-in-field.
15020         (bibtex-text-in-field-bounds): Handle BibTeX strings when
15021         extracting the content of a field.
15022         (bibtex-text-in-field): Use search limits.
15023         (bibtex-parse-string-prefix): Handle empty string keys based on
15024         bibtex-string-empty-key.
15025         (bibtex-parse-string): Fix docstring.
15026         (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
15027         (bibtex-preamble-prefix, bibtex-strings): New functions.
15028         (bibtex-skip-to-valid-entry): Include preceding whitespace in
15029         BibTeX entries (consistent with other BibTeX functions).
15030         (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
15031         (bibtex-search-entry): Fix docstring.  Simplify.
15032         (bibtex-flash-head, bibtex-complete-string-cleanup)
15033         (bibtex-count-entries, bibtex-sort-buffer): Simplify.
15034         (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
15035         (bibtex-parse-entry): New optional arg content.
15036         (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
15037         Use bibtex-text-in-field-bounds.
15038         (bibtex-print-help-message): Handle BibTeX strings and preambles.
15039         (bibtex-end-of-entry): Use bibtex-preamble-prefix and
15040         bibtex-parse-string-postfix.
15041         (bibtex-find-text-internal): New function.
15042         (bibtex-remove-delimiters): Use it.
15043         (bibtex-find-text): Use it.  New optional arg help.
15044         (bibtex-complete): Handle BibTeX string and preamble entries.
15045         (bibtex-Preamble): Fix order of closing delimiters.
15047 2005-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15049         * vc.el (vc-default-revert): New fun.
15051         * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
15053 2005-12-14  Romain Francoise  <romain@orebokech.com>
15055         * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
15056         (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
15057         (font-lock-remove-keywords): Likewise.
15059 2005-12-14  Juri Linkov  <juri@jurta.org>
15061         * log-view.el (log-view-diff): Doc fix.
15063         * isearch.el (isearch-query-replace): Use (mark) instead of
15064         isearch-opoint if mark is active in transient-mark-mode.
15066 2005-12-14  Aaron S. Hawley  <Aaron.Hawley@uvm.edu>
15068         * isearch.el (isearch-query-replace): Check for isearch-other-end.
15070 2005-12-14  Per Abrahamsen  <abraham@dina.kvl.dk>
15072         * progmodes/cpp.el (cpp-face): New widget.
15073         (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
15075 2005-12-14  Juri Linkov  <juri@jurta.org>
15077         * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
15078         around `erase-buffer' and `insert'.
15080         * descr-text.el (describe-text-properties): Replace buffer name
15081         "*Help-2*" with "*Help*<2>".
15082         (describe-char): Add functions print-help-return-message,
15083         toggle-read-only.  Use help-setup-xref with nil to not store
15084         describe-char in help-xref-stack.  Use help-make-xrefs to
15085         make [back] button.
15087         * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
15089         * wdired.el (wdired-old-point): New internal variable.
15090         (wdired-change-to-wdired-mode): Set it buffer-locally.
15091         (wdired-abort-changes): Restore point after aborting changes.
15093 2005-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15095         * vc.el (vc-do-command): Add a new value t for okstatus.
15097         * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
15098         frame in case of errors.
15100 2005-12-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15102         * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
15103         so it comes after "On the Left" in the menu.
15105 2005-12-12  Luc Teirlinck  <teirllm@auburn.edu>
15107         * cus-edit.el (customize-apropos, customize-apropos-options)
15108         (customize-apropos-faces, customize-apropos-groups): Doc fixes.
15110 2005-12-12  Bill Wohler  <wohler@newt.com>
15112         * vc-svn.el (vc-svn-registered): Fix problem of visiting
15113         non-writable Subversion-controlled files by saving window
15114         configuration before calling vc-do-command.  vc-do-command calls
15115         pop-to-buffer on error which is unexpected during registration.
15117 2005-12-12  Jay Belanger  <belanger@truman.edu>
15119         * calc/README: Update the summary of changes.
15121 2005-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15123         * descr-text.el (describe-char): Rework last fix to solve the problem
15124         is the same way it's solved for everything else in that function
15125         (i.e. by extracting the info before setting up the *Help* buffer).
15127 2005-12-12  Kim F. Storm  <storm@cua.dk>
15129         * subr.el (version-regexp-alist): Allow space as separator before
15130         non-numeric part, e.g. "1.0 alpha".
15131         (version-to-list): Interpret .X.Y version as 0.X.Y version.
15133 2005-12-12  Carsten Dominik  <dominik@science.uva.nl>
15135         * textmodes/org.el (org-agenda, org-timeline, org-todo):
15136         Implement Logging and the keep-modes setting.
15137         (org-get-category): Make sure a string is returned.
15138         (org-log-done): New function.
15139         (org-log-done, org-closed-string): New options.
15141 2005-12-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15143         * tooltip.el (tooltip-y-offset): Change default to 20.
15145 2005-12-12  Richard M. Stallman  <rms@gnu.org>
15147         * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
15149         * frame.el (display-hourglass): Doc fix.
15151         * help.el (help-for-help-internal): Simplify entry for `a'.
15153         * info.el (Info-on-current-buffer): Doc fix.
15154         (info-insert-file-contents): Don't test (featurep 'jka-compr).
15156         * startup.el (inhibit-splash-screen): Make this the real name.
15157         (inhibit-startup-message): Make this the alias.
15158         (command-line): Find only simple.el, and use its directory
15159         to fill in other preloaded files' names.
15160         (command-line): Deactivate the mark if deactivate-mark is set.
15162         * international/mule.el (load-with-code-conversion):
15163         Bind deactivate-mark.
15165         * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
15167 2005-12-11  Luc Teirlinck  <teirllm@auburn.edu>
15169         * cus-edit.el (customize-apropos): Avoid listing an option more
15170         than once under different aliases.  No longer list user options
15171         that are not defined with defcustom (unless a prefix arg is given).
15172         Doc fix.
15173         (customize-apropos-options): Doc fix.
15175 2005-12-11  Juri Linkov  <juri@jurta.org>
15177         * frame.el (set-background-color, set-foreground-color)
15178         (set-cursor-color, set-mouse-color, set-border-color):
15179         Add explicit prompts to read colors by `facemenu-read-color'.
15180         (show-trailing-whitespace, blink-cursor-delay)
15181         (blink-cursor-interval, display-hourglass, hourglass-delay):
15182         Remove tags.
15183         (display-hourglass, hourglass-delay): Doc fix.
15184         (cursor-in-non-selected-windows): Capitalize words in tag.
15186         * faces.el (frame-background-mode): Replace `choice-item' keywords
15187         with `const' to not make [default] button.  Change default value tag
15188         from `default' to `automatic'.  Doc fix.
15189         (trailing-whitespace) <defface>: Change group `whitespace' to
15190         `whitespace-faces'.
15192 2005-12-11  Richard M. Stallman  <rms@gnu.org>
15194         * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
15196 2005-12-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15198         * term/mac-win.el: Create keymap for mac-apple-event-map.
15200 2005-12-11  Nick Roberts  <nickrob@snap.net.nz>
15202         * tooltip.el (tooltip-mode): Move to start of file so that it
15203         appears at top of customize buffer.
15205         * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
15206         Add the gud groupname.
15207         (gud-tooltip-mode): Add the tooltip groupname.
15208         (gud-tooltip-echo-area): Add the gud groupname.  Remove tag to
15209         avoid conflict with tooltip-use-echo-area.
15211 2005-12-10  Romain Francoise  <romain@orebokech.com>
15213         * help.el (help-for-help-internal): Add `r' in doc string.
15215 2005-12-10  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
15217         * align.el (align-regexp, align-highlight-rule):
15218         Use region-beginning and region-end instead of point and mark, so that
15219         repetition (with `repeat-complex-command') recomputes the region
15220         bounds.
15222 2005-12-10  Lennart Borgman  <lennart.borgman.073@student.lu.se>
15224         * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
15225         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
15226         (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
15227         (balance-windows): Rewrite using the above new functions.
15229 2005-12-10  David Koppelman  <koppel@ece.lsu.edu>
15231         * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
15232         react if global-hi-lock-mode seems intended.
15233         (global-hi-lock-mode) Renamed from hi-lock-mode.
15234         (hi-lock-archaic-interface-message-used)
15235         (hi-lock-archaic-interface-deduce): New variables.
15236         (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
15237         (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
15238         (hi-lock-find-patterns, hi-lock-font-lock-hook):
15239         Replace hi-lock-buffer-mode with hi-lock-mode.
15241 2005-12-10  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
15243         * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
15244         completion list, even after a partial completion has been
15245         inserted in the current buffer.  If there are more than 1
15246         completion, redisplay the *Completions* buffer; if the
15247         completion is unique, delete the *Completions* window.
15249 2005-12-10  Eli Zaretskii  <eliz@gnu.org>
15251         * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
15252         strings and long subject lines that were broken into multiple
15253         lines at arbitrary places.  Handle subjects that have "Re: " in
15254         the middle.
15256 2005-12-10  John W. Eaton  <jwe@octave.org>
15258         * emacs/octave-mod.el (octave-electric-space): Don't indent
15259         comments or strings if octave-auto-indent is nil.
15261 2005-12-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15263         * term/mac-win.el: Require url when compiling.
15264         Call mac-process-deferred-apple-events after loading init files.
15265         (mac-apple-event-map): New defvar.  Define event handlers in it.
15266         (core-event, internet-event): New Apple event class symbols.
15267         (open-application, reopen-application, open-documents)
15268         (print-documents, open-contents, quit-application)
15269         (application-died, show-preferences, autosave-now, get-url):
15270         New Apple event ID symbols.
15271         (about): New HICommand ID symbol.
15272         (mac-event-spec, mac-event-ae): New macros.
15273         (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
15274         (mac-ae-selection-range, mac-ae-text-for-search)
15275         (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
15276         (mac-application-menu-map): Remove keymap.  Handlers for HICommand
15277         and Services menu events are now defined in mac-apple-event-map.
15278         (mac-drag-n-drop): Remove selection range handling.
15280 2005-12-10  Kenichi Handa  <handa@m17n.org>
15282         * simple.el (zap-to-char):
15283         * isearch.el (isearch-process-search-char): Translate CHAR by
15284         translation-table-for-input.
15286 2005-12-09  Chong Yidong  <cyd@stupidchicken.com>
15288         * foldout.el (foldout-exit-fold): Properly hide subtree.
15290 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
15292         * files.el (save-buffer):
15293         * international/ucs-tables.el (ucs-set-table-for-input):
15294         * mail/mail-extr.el (mail-extract-address-components):
15295         * mail/sendmail.el (mail-mode): Reformat doc string.
15297 2005-12-09  Juri Linkov  <juri@jurta.org>
15299         * isearch.el (isearch-highlight): Change main overlay priority
15300         from 1 to 1001.  Simplify.
15301         (isearch-lazy-highlight-update): Change lazy overlay priority
15302         from 0 to 1000.
15304         * replace.el (replace-highlight): Change overlay priority from
15305         1 to 1001.
15307         * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
15308         Change overlay priority from 1 to 1001.  Reuse existing overlay.
15310         * compare-w.el (compare-windows-highlight): Change overlay
15311         priority from 1 to 1000.
15313         * menu-bar.el (menu-bar-edit-menu): Add listp around
15314         pending-undo-list to disable menu item "undo" when pending
15315         undo list is empty.
15317         * locate.el (locate): Disable undo in *Locate* buffer.
15319 2005-12-09  Kim F. Storm  <storm@cua.dk>
15321         * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
15323 2005-12-09  David Ponce  <david@dponce.com>
15325         * recentf.el: Improvement of the menu code.
15326         (recentf-enabled-p): Move before first use.  Use `kill-emacs-hook'
15327         instead of menu hook.
15328         (recentf-show-menu, recentf-hide-menu): New functions.
15329         (recentf-menu-customization-changed, recentf-mode): Use them.
15330         (recentf-menu-action, recentf-max-menu-items)
15331         (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
15332         (recentf-arrange-by-rule-others)
15333         (recentf-arrange-by-rules-min-items)
15334         (recentf-arrange-by-rule-subfilter) : Don't use
15335         `recentf-menu-customization-changed'.
15336         (recentf-arrange-rules): Likewise.  Accept functions to compute
15337         sub-menu titles.
15338         (recentf-menu-filter): Likewise.  Doc fix.
15339         (recentf-menu-value-shortcut): Doc fix.
15340         (recentf-dump-variable): Quote atom value.
15341         (recentf-make-menu-items): Update to use it as a menu filter.
15342         (recentf-match-rule): New function.
15343         (recentf-arrange-by-rule): Use it.
15344         (recentf-indirect-mode-rule): New function.
15345         (recentf-build-mode-rules): Use it.
15346         (recentf-dir-rule): New function.
15347         (recentf-arrange-by-dir): Use it.
15348         (recentf-filter-changer-current): Rename from
15349         `recentf-filter-changer-state'.  All references updated.
15350         (recentf-filter-changer-alist): Update filter names.
15351         (recentf-filter-changer-select): New function.
15352         (recentf-filter-changer): Use it.  Make a sub-menu from filters
15353         available in `recentf-filter-changer-alist'.
15354         (recentf-data-cache, recentf-clear-data)
15355         (recentf-update-menu): Remove.  All references updated.
15356         (recentf-match-rule-p, recentf-build-dir-rules)
15357         (recentf-filter-changer-goto-next)
15358         (recentf-filter-changer-get-current)
15359         (recentf-filter-changer-get-next): Remove.
15361 2005-12-08  Luc Teirlinck  <teirllm@auburn.edu>
15363         * cus-edit.el (custom-buffer-create-internal): Relabel the whole
15364         buffer "Reset" button to "Reset to Current" for consistency with
15365         the State buttons.
15367 2005-12-08  John Paul Wallington  <jpw@pobox.com>
15369         * ibuf-ext.el (define-ibuffer-filter filename):
15370         If `dired-directory' is a list then really use its car.
15372 2005-12-08  Kim F. Storm  <storm@cua.dk>
15374         * emulation/cua-rect.el (cua--rectangle-aux-replace):
15375         Fix indention of text on right side of replaced rectangle.
15377 2005-12-09  Nick Roberts  <nickrob@snap.net.nz>
15379         * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
15380         No need to check gud-comint-buffer is bound.
15381         (gdb): Prevent multiple debugging when first session uses gdba.
15383 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15385         CC Mode update to 5.31.
15387         * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
15388         Emacsen which lack `define-minor-mode'.  (Currently Emacs <21.
15389         We might do this function properly in the future).
15391         * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
15392         New macros c-sentence-end and c-default-value-sentence end, to cope
15393         with Emacs 22's new function `sentence-end'.
15395 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15397         * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
15398         compat issue using `c-put-overlay' and `c-delete-overlay'.
15400         * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
15401         New compat macros to handle overlays/extents.
15403 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15405         * progmodes/cc-fix.el: Add definitions of the macros push and pop
15406         (for GNU Emacs 20.4)
15408         * progmodes/cc-defs.el:
15409         (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
15411         * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
15412         highlighting mechanism so it will work in XEmacs too.
15414         * progmodes/cc-defs.el: Insert c-int-to-char.
15416         * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
15417         call to the new macro c-int-to-char.  This solves XEmacs's
15418         regarding characters as different from integers.
15420 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15422         * progmodes/cc-fonts.el (c-make-syntactic-matcher):
15423         New internal helper.
15425         (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
15426         construct to make the indirect face lookup work in XEmacs.
15428         (c-cpp-matchers): Append the negation char face to the existing
15429         fontification, so that the cpp face doesn't disappear.
15430         Use `c-make-syntactic-matcher' to avoid negation chars in comments
15431         and strings.
15433         * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
15434         to map to `font-lock-negation-char-face' in emacsen where it exists.
15436 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15438         * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
15440         * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
15441         Rename "c-subword-move-mode" as "c-subword-mode".
15443         * progmodes/cc-mode.el: Added tty suitable bindings for C-c
15444         <delete> and C-c C-<delete>.  (To the c-hungry- delete functions).
15446 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15448         * progmodes/cc-mode.el: Added autoload directive for
15449         `c-subword-move-mode' for use in older emacsen.
15451 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15453         * progmodes/cc-mode.el:
15454         (i) Insert a binding for C-c C-backspace into
15455         c-bind-special-erase-keys which works in TTYs.
15456         (ii) Make sure that when file styles are used, any explicitly
15457         given style variables take priority over those in the style.
15458         Do this by calling `hack-local-variables' a second time.
15460         * progmodes/cc-vars.el: Add language specific customization
15461         widgets for AWK to c-doc-comment-style, c-require-final-newline
15462         and c-default-style.  Add a defcustom for awk-mode-hook.
15463         Give c-syntactic-element and c-syntactic-context doc-strings by
15464         directly setting their `variable-documentation' propery.
15465         This allows Emacs 22.1 to read these with C-h v.
15467         * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
15469 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15471         * progmodes/cc-fonts.el, cc-vars.el
15472         (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
15473         (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
15474         Masatake YAMATO.
15476         (c-doc-comment-style): Made GtkDoc default in C mode.
15478         * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
15479         and C-c C-<delete>.
15481         (c-bind-special-erase-keys): New function for use on
15482         `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
15484         * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
15485         <delete> key behavior in XEmacs according to `delete-forward-p'.
15486         C.f. `c-electric-delete'.
15488 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15490         * progmodes/cc-mode.el: Give c-hungry-backspace and
15491         c-hungry-delete-forward permanent key bindings.
15493         * progmodes/cc-cmds.el (c-electric-semi&comma):
15494         Bind c-syntactic-context for calls to "criteria functions", for
15495         consistency with other calls to user functions.
15497         * progmodes/cc-cmds.el (c-indent-command): Expunge use of
15498         `current-prefix-arg', since this might be the prefix arg to a
15499         command which calls c-indent-command as a function.  Change the
15500         interactive spec from "p" to "P".
15502         * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
15503         reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
15504         was difficult to understand.
15506 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15508         * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
15509         first char of an identifier.
15511         * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
15512         +" syntax in C++.
15514 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15516         * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
15517         auto-fill doesn't split a c-comment's last word from a hanging
15518         "*/" when a space is typed between them after fill-column.
15520         * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
15522         * progmodes/cc-styles.el (c-set-style)
15523         (c-setup-paragraph-variables): Abort the command if we're not in a
15524         CC Mode buffer.
15526         * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
15527         with blank comment-prefix, and a blank line as the comment's
15528         second line.
15530 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15532         * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
15533         Incorporate the patterns added in the Emacs development branch
15534         for the new Emacs 22 face `font-lock-negation-char-face'.
15536         * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
15537         of "red" since it stands out better in xterms and DOS terminals.
15539         * progmodes/cc-engine.el (c-literal-faces):
15540         Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
15542 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15544         * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
15545         forcibly enable c-electric-flag.
15547         * progmodes/cc-vars.el, cc-cmds.el: New clean-up
15548         `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
15549         after the comment-prefix of a C-style comment will close that comment.
15551 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15553         * progmodes/cc-fonts.el (c-basic-matchers-before)
15554         (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
15555         in Pike.
15557         * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
15558         digraphs.
15560         * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
15561         (c-cpp-message-directives, c-cpp-include-directives)
15562         (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
15563         (c-cpp-expr-directives): Introduce new language constants to
15564         control cpp syntax in a cleaner way.
15566         (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
15568         (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
15570         * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
15571         (c-multiline-string-start-char): New language constants and
15572         variables to specify how newlines in string literals work.
15574         (c-font-lock-invalid-string): Use them.
15576         * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
15577         unbalanced close brace is entered.  Optimization by avoiding going
15578         back over arbitrarily large blocks.  Removed hints that this
15579         function only would be relevant/useful in AWK.
15581         (c-electric-brace): Indent syntactically after the cleanups since
15582         lineup functions might do it differently then.
15584         * progmodes/cc-engine.el, cc-langs.el
15585         (c-opt-op-identifier-prefix): New language constant and variable.
15587         (c-just-after-func-arglist-p, c-after-special-operator-id)
15588         (c-search-decl-header-end, c-inside-bracelist-p): Use it.
15590         * progmodes/cc-align.el, cc-engine.el
15591         (c-after-special-operator-id): New helper to handle C++ operator
15592         identifiers.
15594         (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
15595         (c-guess-basic-syntax): Handle C++ operator identifiers in
15596         declarations.
15598         * progmodes/cc-langs.el (c-assignment-operators): Add the
15599         trigraph version of ^= too.
15601         * progmodes/cc-langs.el (c-assignment-operators): Add the
15602         trigraph version of |= in C++.
15604         * progmodes/cc-fonts.el (c-font-lock-declarators):
15605         Handle `c-decl-hangon-kwds' after the identifier name.
15607         * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
15608         whether an arglist is "nonempty", ignore a comment after the open
15609         paren if it isn't followed by a non-comment token on the same line.
15611         * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
15612         Enable heuristics below the point to cope with classes inside special
15613         brace lists in Pike.
15615 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15617         * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
15619 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15621         * progmodes/cc-guess.el (cc-guess-install): New function to
15622         install an already guessed style in another buffer.
15624         * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
15625         sets `inhibit-read-only' - `c-save-buffer-state' should be used
15626         anyway if the change always is undone.
15628 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15630         Implement togglable electricity:
15632         * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
15633         saying when it should be used.
15635         * progmodes/cc-engine.el: Add the new buffer-local variable,
15636         c-electric-flag.
15638         * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
15639         c-toggle-auto-newline.
15641         * progmodes/cc-mode.el: Rename c-toggle-auto-state to
15642         c-toggle-auto-newline.  Remove the binding for
15643         c-toggle-auto-hungry-state.  Add the binding C-c C-l for the new
15644         c-toggle-electric-state.
15646         * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
15648         * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
15649         c-\(forward\|backward\)-subword.
15650         (c-update-modeline): Add the new modeline flag `l' for
15651         `c-electric-flag'.  Make the auto-newline flag `a' dependent on `l'.
15652         (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
15653         Make the old name an alias of the new name.
15654         (c-toggle-electric-state): New function.
15655         (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
15656         Adapt these functions to do electric things only when
15657         c-electric-flag is non-nil.
15658         (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
15659         new functions from c-electric-brace.
15660         (c-point-syntax): Add a check for "virtual semicolons" in AWK
15661         mode, so that the tentative extra newline doesn't change the
15662         syntax of the following brace.
15663         (c-electric-brace): Restructure by extracting the above functions.
15664         Tidy up the coding somewhat.
15665         (c-electric-semi&comma, c-electric-colon, c-electric-paren):
15666         restructure a bit.
15668 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15670         * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
15671         anchor position(s) using faces.  Thanks to Masatake YAMATO for the idea.
15673         * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
15674         (c-submode-indicators): Change name from `c-auto-hungry-string'
15675         since it's now used to track another submode.
15677         (c-update-modeline): Convert to function and extended to check
15678         `c-subword-move-mode'.
15680         (c-forward-into-nomenclature, c-backward-into-nomenclature):
15681         Convert to compat aliases for `c-forward-subword' and
15682         `c-backward-subword'.
15684         * progmodes/cc-subword.el: New functions and minor mode to handle
15685         SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
15687         (c-forward-subword, c-backward-subword, c-mark-subword)
15688         (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
15689         (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
15690         Functions corresponding to the standard word handling functions.
15692         (c-subword-move-mode): Minor mode that replaces all the standard
15693         word handling functions with their subword equivalences.
15695 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15697         * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
15698         entry for one-liner-defun.
15700         * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
15701         name in its def-edebug-spec.
15703         * progmodes/cc-cmds.el (c-electric-brace): Make the
15704         one-liner-defun clean-up work with empty-defun-braces.  o-l-d now
15705         compacts space before a comment, if this will make things fit on
15706         one line.
15708         Introduce an "awk" style, mainly for auto-newline and clean-ups.
15710         * progmodes/cc-align.el: New function c-snug-1line-defun-close
15712         * progmodes/cc-cmds.el: In c-electric-brace, add code for new
15713         clean-up one-liner-defun.
15715         * progmodes/cc-styles.el: Add the new "awk" style.
15717         * progmodes/cc-vars.el: Add description of one-liner-defun to
15718         c-cleanup-list's doc-string.  New user options,
15719         c-max-one-liner-length.  In c-default-style, set the default style
15720         for AWK to "awk".
15722 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15724         * progmodes/cc-engine.el (c-forward-label): Fix fontification of
15725         macros inside labels.
15727         * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
15728         `c-at-statement-start-p' and `c-at-expression-start-p'.
15730         * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
15731         error if the mark isn't set.
15733         * progmodes/cc-engine.el (c-guess-continued-construct)
15734         (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
15735         accurately detect functions inside functions.
15737         * progmodes/cc-engine.el (c-at-expression-start-p): New function
15738         like `c-at-statement-start-p' that additionally recognizes commas
15739         and expression parentheses as delimiters.
15741         * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
15742         to avoid heuristics that doesn't work for unclosed blocks.
15743         (c-at-statement-start-p): New function.
15745         * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
15746         Objective-C directives, e.g. directives spanning lines should work
15747         reasonably well now.
15749         (c-put-c-type-property, c-clear-c-type-property): New helpers.
15751         (c-forward-objc-directive): New function to move over any ObjC
15752         directive.
15754         (c-just-after-func-arglist-p, c-guess-basic-syntax)
15755         (c-basic-matchers-before): Use it.
15757         (c-font-lock-objc-iip-decl): Remove.
15759         * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
15760         in the template arglist recognition.
15762         * progmodes/cc-styles.el (c-style-alist): Fix several
15763         inconsistencies in the Whitesmith style.
15765         * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
15766         New lineup function to get lines after Whitesmith style blocks
15767         correctly indented.
15769         (c-lineup-whitesmith-in-block): Back out the compensation for
15770         opening parens since it's done using `add' lists in the style
15771         definition instead.  Don't use the anchor position since it varies
15772         too much between the syntactic symbols. :P
15774         * progmodes/cc-vars.el (c-valid-offset): Update.
15776         * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
15777         lists where the offsets are combined according to several
15778         different methods: `first', `min', `max', and `add'.
15779         Report offset evaluation errors with `c-benign-error' so that some kind
15780         of reindentation still is done.
15782         * progmodes/cc-engine.el (c-guess-basic-syntax):
15783         Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
15784         `arglist-close'.
15786         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
15787         situations for `arglist-cont-nonempty' and `arglist-close'.
15789         * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
15791         * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
15792         cc-bytecomp-boundp' in a number of places.
15794         * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
15795         macro related issue.
15797 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15799         * progmodes/cc-awk.el: Change the terminology of regexps: A char
15800         list is now [asdf], a char class [:alpha:].
15801         Include code for char classes.
15802         Set c-awk-NL-prop on lines ending in open strings.  (Bug fix.)
15803         Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
15805         Remove (nearly all of) the cruft associated with AWK Mode's former
15806         concept of "virtual semicolons":
15808         Adapt c-beginning-of-statement, c-end-of-statement (together with
15809         subfunctions) to use the new notion of "virtual semicolon" in
15810         place of the old awkward special handling for AWK.  There remains
15811         much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
15812         * progmodes/cc-cmds.el:
15813         (c-ascertain-adjacent-literal): In the backwards direction, now
15814         recognises AWK regexp delimiters as string delimiters.
15815         (c-after-statement-terminator-p): Adapt for virtual semicolons;
15816         check more rigorously for "end of macro".
15817         (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
15818         virtual semicolons;
15819         (c-beginning-of-statement): Adapt for virtual semicolons; Separate
15820         out the code for forward movement into ...
15821         (c-end-of-statement): Now contains the code for forward movement,
15822         adapted for virtual semicolons.
15824         * progmodes/cc-engine.el:
15825         (c-ws*-string-limit-regexp): New regexp.
15826         (c-forward-single-comment, c-backward-single-comment): Comment out
15827         the (now redundant) "special" AWK stuff.
15829         * progmodes/cc-styles.el, cc-vars.el: Change the settings of
15830         c-string-par-start, c-string-par-separate to be more like Text
15831         Mode than Fundamental Mode.
15833 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15835         * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
15836         to the fontified region so that fontification doesn't occur
15837         outside it (could happen e.g. when fontifying a line with an
15838         unfinished declaration).
15840 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15842         * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
15843         start of the file.  ^L now separate sections of the file.
15844         (c-awk-non-eol-esc-pair-re,     c-awk-blank-or-comment-line-re)
15845         (c-awk-one-line-possibly-open-string-re)
15846         (c-awk-regexp-one-line-possibly-open-char-class-re)
15847         (c-awk-one-line-possibly-open-regexp-re)
15848         (c-awk-one-line-non-syn-ws*-re): New defonsts.
15849         (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
15851         Amend the concept of "virtual semicolons" (in the indentation
15852         engine) for languages like AWK, such that they are now
15853         conceptually attached to end of the last token of a statement, not
15854         the end of the line.  (In AWK Mode, however, the pertinent text
15855         property is still physically set on the EOL.)  Remove the specific
15856         tests for awk-mode, thus facilitating the introduction of other
15857         language modes where EOLs can end statements.
15858         (Note: The funtionality in cc-cmds.el, specifically
15859         c-beginning/end-of-statement has yet to be amended.)
15861         * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
15862         New macros.
15864         * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
15865         c-stmt-delim-chars.  New c-lang-defvars: c-at-vsemi-p-fn,
15866         c-vsemi-status-unknown-p-fn (in a new page).
15868         * progmodes/cc-engine.el: In c-beginning-of-statement-1,
15869         c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
15870         numerous awkward forms like
15871         (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
15872         with (c-at-vsemi-p).  Fix a few typos.  In c-guess-basic-syntax, new
15873         variable before-ws-ip, the place just after char-before-ip appears.
15875         * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
15876         a comment.
15878 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15880         * progmodes/cc-cmds.el (c-electric-brace): Clean up using
15881         `c-tentative-buffer-changes'.
15883         * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
15884         convert to macro to choose between Emacs and XEmacs at compile time.
15886         (c-set-region-active): New set counterpart to `c-region-is-active-p'.
15888         (c-tentative-buffer-changes): New macro to handle temporary buffer
15889         changes in a convenient way.
15891         (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
15892         for `c-tentative-buffer-changes'.
15894         * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
15895         the checks for paren sexps between the point and the keyword, to
15896         avoid some false alarms.
15898         * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
15899         Fixed a situation where an error could be thrown for unbalanced
15900         parens.  Changed to make use of c-keyword-member' to avoid some
15901         repeated regexp matches.
15903         (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
15904         These language variable are no longer necessary.
15906         (c-block-stmt-kwds): New language constant used by
15907         c-looking-at-inexpr-block'.
15909         (c-guess-basic-syntax): Remove an optional check that looked at
15910         the existence of the now removed language variables.
15912         * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
15913         (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
15914         object instantiation expressions as declarations in some contexts.
15915         This bug only affected languages where the declarator can't be
15916         enclosed in parentheses.
15918         * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
15919         insert newlines before and after substatement braces.
15921         * progmodes/cc-engine.el: Improved the heuristics for recognizing
15922         function declaration headers and the handling of C++ style member
15923         init lists.
15925         (c-just-after-func-arglist-p): Rewritten to use
15926         `c-forward-decl-or-cast-1'.  Now behaves a bit differently too.
15928         (c-beginning-of-member-init-list): Remove since it isn't used anymore.
15930         (c-guess-basic-syntax): Adapt case 5B for the new
15931         `c-just-after-func-arglist-p'.  Merge cases 5B.1 and 5B.3.
15932         Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
15933         covers all cases now).
15935         * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
15937 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
15939         * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
15940         c-string-par-start/separate c-sentence-end-with-esc-eol,
15941         initialised in c-setup-paragraph-variables, used in string
15942         scanning subroutines of c-beginning-of-statement.
15944         * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
15945         which precedes the newly inserted `{'.
15947 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
15949         * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
15950         function for declaration level blocks.  It should now cope with
15951         templates better and also be a lot more comprehensible.
15953         (c-looking-at-decl-block): The new function.
15955         (c-search-uplist-for-classkey): The old one.  It's now a wrapper
15956         for compatibility.
15958         (c-add-class-syntax, c-guess-continued-construct)
15959         (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
15961         (c-decl-block-key): Change to tell apart ambiguous and
15962         unambiguous keywords.  Pike specials are now handled directly in
15963         the code instead.
15965         (c-block-prefix-disallowed-chars, c-block-prefix-charset):
15966         New language constants and variables to make the backward skip in
15967         `c-looking-at-decl-block' as tight as possible.
15969         (c-nonsymbol-token-char-list): New language constant.
15971         * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
15972         find balanced template arglists backwards.
15974         * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
15975         making char classes for `c-syntactic-skip-backward'.
15977         * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
15978         16D - can't be a class-close at that point.
15980         * progmodes/cc-engine.el (c-guess-basic-syntax)
15981         (c-add-class-syntax): Don't narrow out the enclosing declaration
15982         level.  This makes everything a lot easier, and it was actually
15983         only four small places that needed it to work.  Some places that
15984         previously did `widen' are removed now, which has the effect that
15985         `c-guess-basic-syntax' never will look at things outside the
15986         current narrowment now.  The anchor position for `topmost-intro'
15987         is affected by this, but it was so bogus it was basically useless
15988         before, and now it's equally bogus but in a slightly different way.
15990         (c-narrow-out-enclosing-class): Gone.
15992         (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
15993         the narrowed region.
15995         (c-least-enclosing-brace): Remove silly optional argument.
15997         * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
15998         the point could be left directly after an open paren when finding
15999         the beginning of the first decl in the block.
16001         * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
16002         Specify which submatch to use.
16004         * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
16006         (c-decl-start-re): No longer any need for special treatment of
16007         ObjC due to the above.
16009         (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
16010         presumably follows C in that regard.
16012         * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
16013         New language constants to specify operator tokens inside
16014         identifiers in a more high level way.
16016         (c-opt-identifier-prefix-key): New internal language constant.
16018         (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
16019         (c-identifier-start, c-identifier-key): Now completely calculated
16020         from other constants.
16022         (c-identifier-last-sym-match): Decommission since it's no longer used.
16024         (c-operators): Use `c-identifier-ops'.  Document `postfix-if-paren'.
16026         * progmodes/cc-engine.el (c-forward-name): Remove the
16027         optimization when c-identifier-key is equal to c-symbol-key since
16028         it doesn't work in byte compiled files.  Don't record empty
16029         regions as identifiers.
16031         * progmodes/cc-langs.el (c-filter-ops): New helper function to
16032         simplify access to `c-operators' and its likes.
16034         (c-operator-list, c-all-op-syntax-tokens)
16035         (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
16036         (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
16037         (c-primary-expr-regexp, c-cast-parens): Use it.
16039         * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
16040         an explicit language in functions.
16042         * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
16043         variant of adornment.
16045         * progmodes/cc-langs.el (c-any-class-key): Remove unused language
16046         variable.
16048         (c-type-decl-prefix-key): Remove some now unnecessary cruft from
16049         the Pike value.
16051         * progmodes/cc-engine.el (c-on-identifier)
16052         (c-simple-skip-symbol-backward): Small fix for handling "-"
16053         correctly in `skip-chars-backward'.  Affected the operator lfun
16054         syntax in Pike.
16056         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
16057         diagnostic message about precompiled language vars not being used.
16059         * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
16060         "__attribute__" is followed by a parenthesis.
16062         (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
16063         (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
16064         language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
16066         * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
16067         Internal cleanups to properly detect the declared identifiers in
16068         various declarations.
16070         (c-decl-start-kwds): New language constant to recognize
16071         declarations that can start anywhere.  Used for class declarations
16072         in Pike.
16074         (c-specifier-key, c-not-decl-init-keywords)
16075         (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
16076         (c-find-decl-spots): Implement `c-decl-start-kwds'.
16078         (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
16079         (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
16080         handling of the compiler specific extension keywords into a new
16081         language constant `c-decl-hangon-kwds' that defines keyword
16082         clauses to be ignored in declarations.
16084         (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
16085         past unrecognized tokens when handling `c-colon-type-list-kwds'.
16086         Necessary to stop at the declared identifier in e.g. IDL valuetype
16087         declarations.
16089         (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
16090         (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
16091         (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
16092         (c-forward-decl-or-cast-1): Recognize the declared identifier in
16093         class and enum declarations as such and not as part of the type.
16095         (c-forward-decl-or-cast-1, c-forward-label): Relax the
16096         interpretation of PRECEDING-TOKEN-END when there's no preceding token.
16098         (c-forward-decl-or-cast-1): Don't disregard sure signs of
16099         declarations when there's some syntax error later on.
16101         (c-complex-decl-matchers): Did away with a reference to
16102         `c-specifier-key'.
16104         * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
16105         value - this variable is always dynamically bound.
16107         * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
16108         * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
16109         * cc-cmds.el, cc-defs.el: Change the policy for marking up
16110         functions that might do hidden buffer changes: All such internal
16111         functions are now marked instead of those that don't.
16113         (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
16114         (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
16115         (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
16116         (c-literal-type): Allow these functions to make hidden buffer changes,
16117         so that they are free to use text property caching later on.
16119         (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
16120         (c-electric-brace, c-electric-slash, c-electric-star)
16121         (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
16122         (c-electric-paren, c-electric-continued-statement, c-indent-command)
16123         (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
16124         (c-context-line-break): Add `c-save-buffer-state' calls to comply
16125         with the changed semantics of the functions above.
16127         * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
16128         when macros occur in obscure places.  Optimized the sexp movement
16129         a bit.
16131 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16133         Enhancements for c-beginning-of-statement to work in AWK Mode:
16135         * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
16136         (completed statement) with `}' (statement completed by closing
16137         brace or semicolon) and `$' (statement completed by EOL).
16139         (c-awk-virtual-semicolon-ends-prev-line-p)
16140         (c-awk-virtual-semicolon-ends-line-p)
16141         (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
16142         (c-awk-at-statement-end-p): New functions.
16144         * progmodes/cc-cmds.el: Simplify the structure of functions
16145         c-forward-over-illiterals, c-back-over-illiterals.  Enhance these
16146         two functions and c-beginning-of-statement to handle AWK Mode.
16148         * progmodes/cc-engine.el: Enhance c-forward-single-comment,
16149         c-backward-single-comment for AWK mode.  Attempt to clarify their
16150         doc-strings.
16152         * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
16154 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16156         * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
16157         label handling.  Labels are now recognized in a uniform and more
16158         robust way, regardless of context.  Text properties are put on all
16159         labels to recognize the following declarations better.
16160         Multiword labels are handled both in indentation and fontification for
16161         the benefit of language extensions like Qt.  For consistency, keywords
16162         in labels are now fontified with the label face instead.
16163         That also applies to "case" and "default".
16165         (c-beginning-of-statement-1): Fix some bugs in the label
16166         handling.  Disregard `c-nonlabel-token-key' in labels that begin
16167         with `c-label-kwds'.
16169         (c-find-decl-spots): Support that the callback adds more
16170         `c-decl-end' spots to find.
16172         (c-forward-decl-or-cast-1): Don't treat a list of plain
16173         identifiers followed by a colon as a declaration.
16175         (c-forward-label): New function to recognize labels.
16177         (c-guess-basic-syntax): Replace uses of `c-label-key' with
16178         `c-forward-label'.  Moved the label recognition cases (14 and 15)
16179         earlier since they aren't so context sensitive now.  Handle labels
16180         on the top level gracefully.  Moved access label recognition to
16181         the generic label case (CASE 15) - removed CASE 5E.
16183         (c-font-lock-declarations): Add recognition of labels in the
16184         same round since we need to handle labels in parallell with other
16185         declarations to recognize both accurately.  It should also improve
16186         speed.
16188         (c-simple-decl-matchers, c-basic-matchers-after):
16189         Move `c-font-lock-labels' so that it only is used on decoration level 2
16190         since `c-font-lock-declarations' handles it otherwise.
16192         (c-complex-decl-matchers): Remove the simplistic recognition of
16193         access labels.
16195         (c-decl-prefix-re): Remove the kludges that was necessary to cope
16196         with labels earlier.
16198         (c-decl-start-re): New language variable to make
16199         `c-font-lock-declarations' stop for the special protection labels
16200         in Objective-C that start with `@'.
16202         (c-label-key): Remove since it's no longer used.
16204         (c-recognize-colon-labels, c-label-prefix-re): New language
16205         constants to support recognition of generic colon-terminated labels.
16207         (c-type-decl-end-used): `c-decl-end' is now used whenever there
16208         are colon terminated labels.
16210         * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
16211         first argument starts with a special brace list.
16213         * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
16214         (c-font-lock-declarations): Break out the declaration and cast
16215         recognition from `c-font-lock-declarations' to a new function, so
16216         that it can be used in the indentation engine.
16218         * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
16219         up to the start of the literal.  Fixed bug with the point on the
16220         wrong side of the search limit that could happen when the start
16221         position is inside a literal.
16223         * progmodes/cc-engine.el (c-parse-state)
16224         (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
16225         so that it's kept a little bit back to increase the hit rate.
16227         (c-parse-state): Change the macro handling and fixed some
16228         glitches.  Macro context is checked more often than necessary now,
16229         but otoh less garbage conses are generated.
16231         * progmodes/cc-engine.el (c-parse-state)
16232         (c-invalidate-state-cache): Cache the last position where
16233         `c-state-cache' applies.  This can speed up refontification quite
16234         a bit in blocks where there are many non-brace parens before the point.
16236         (c-state-cache-end): New variable for this.
16238         (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
16239         cache variable.
16241         * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
16242         get close initial continue positions when the start position is
16243         inside a literal or macro.  Do not call the callback for spots
16244         before the start position (which can happen e.g. for `c-decl-end'
16245         spots inside comments).  Optimize better in special cases when the
16246         region is a single line inside a literal or macro (typically when
16247         the current line is refontified).
16249         * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
16250         to `c-add-stmt-syntax' - there's no need to explicitly whack off
16251         entries from the paren state.
16253         * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
16254         special case for "else if" clauses.
16256         * progmodes/cc-engine.el (c-looking-at-inexpr-block)
16257         (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
16259         * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
16260         New language variable to recognize the gcc extension with statement
16261         blocks inside expressions.
16263         * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
16264         it somewhat more comprehensible.  The argument AT-BLOCK-START is
16265         no longer used and hence removed.
16267         (c-guess-continued-construct, c-guess-basic-syntax): Update calls
16268         to `c-add-stmt-syntax'.
16270         * progmodes/cc-engine.el (c-backward-to-decl-anchor):
16271         Use `c-beginning-of-statement-1' instead of duplicating parts of it.
16272         This fixes bogus label recognition.
16274         * progmodes/cc-engine.el (c-add-type, c-check-type)
16275         (c-forward-name, c-forward-type): Improve storage of template
16276         types in `c-found-types' so that they can be recognized better.
16278         (c-syntactic-content): Add option to skip past nested parens.
16280         * progmodes/cc-engine.el (c-forward-name):
16281         Set `c-last-identifier-range' all the time.  It's less work that way.
16282         Handle that there might not be an identifier to store in
16283         `c-last-identifier-range'.
16285         (c-forward-type): Handle that `c-last-identifier-range' might be
16286         nil from `c-forward-name'.
16288         * progmodes/cc-defs.el (c-safe-scan-lists)
16289         (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
16291         * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
16292         to work even if the form fails.
16294         * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
16295         down in a large file in one go.
16297         (c-get-fallback-start-pos): New helper function for `c-parse-state'.
16299         * progmodes/cc-align.el (c-lineup-assignments): New lineup
16300         function which is like `c-lineup-math' but returns nil instead of
16301         `c-basic-offset' when it doesn't match.
16303         (c-lineup-math): Change to use `c-lineup-assignments'.
16305 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16307         * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
16308         c-beginning-of-statement.  New subfunctions
16309         c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
16311 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16313         * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
16314         hardcoded char classes whereever possible.  Changed a couple of
16315         places to use skip by syntax instead of skip by char class.
16317         * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
16318         Fix a bug in the regexp that caused extreme backtracking.
16320         * progmodes/cc-langs.el (c-block-comment-starter)
16321         (c-block-comment-ender): New language constants to specify in a
16322         single place how block comments look.
16324         (c-comment-start-regexp, c-block-comment-start-regexp)
16325         (comment-start, comment-end, comment-start-skip)
16326         (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
16327         (c-syntactic-ws, c-nonempty-syntactic-ws)
16328         (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
16329         `c-line-comment-starter', `c-block-comment-starter' and
16330         `c-block-comment-ender'.
16332         (c-block-comment-regexp, c-unterminated-block-comment-regexp):
16333         New language constants to break up things a bit.
16335         (c-simple-ws): New language constant for simple whitespace.
16337         * progmodes/cc-defs.el (c-concat-separated): New convenience function.
16339         * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
16340         in `regexp-opt' in Emacs 20 and XEmacs when strings contain
16341         newlines.  Allow and ignore nil elements in the list.
16343 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16345         * progmodes/cc-cmds.el: Comment out a (n almost certainly
16346         superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
16348         * progmodes/cc-cmds.el: Tidy up the comments in
16349         c-beginning-of-statement and subfunctions.
16351         * progmodes/cc-awk.el: Replace calls to put-text-property to the
16352         more flexible c-put-char-property and c-clear-char-properties.
16353         Add the author's email address.
16355         * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
16357         * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
16358         closing "*/" of a block comment.
16360         * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
16361         subfunctions) so that it works at BOB and EOB.
16363         * progmodes/cc-cmds.el, cc-vars.el: More updating of
16364         c-beginning-of-statement, including new variable
16365         c-block-comment-start-regexp.
16367 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16369         * progmodes/cc-langs.el (c-known-type-key): Optimize simple
16370         symbols from `*-font-lock-extra-types' so that there's no need to
16371         use `regexp-opt' on those lists.
16373         * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
16374         `c-type-modifier-kwds' is empty.
16376         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
16377         there are several strings on the same line.
16379         * progmodes/cc-engine.el (c-literal-limits): Remove the
16380         compatibility function for older emacsen.  `c-literal-limits-fast'
16381         has now taken the place of this function.
16383         * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
16384         with older emacsen: We now require `pps-extended-state'.
16386 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16388         * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
16389         which obviates the need to hack sentence-end.  This now handles
16390         escaped newlines in strings correctly.  Correct minor bugs in
16391         c-move-over-sentence and in c-beginning-of-statement.
16393         * progmodes/cc-cmds.el (c-beginning-of-statement (and
16394         subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
16395         that movement over macros and code are rigorously separated from
16396         eachother.  Correct a few incidental bugs.
16398         * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
16399         Improve its doc-string.  Improve the handling of certain specific cases.
16401 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16403         * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
16404         (c-guess-basic-syntax): Change the way class-level labels are
16405         recognized; they can now contain essentially any symbols.
16407         (c-opt-extra-label-key): New language variable to cope with the
16408         special protection label syntax in Objective-C.
16410         (c-opt-access-key): Remove; this is now handled better by
16411         `c-nonlabel-token-key' and `c-opt-extra-label-key'.
16413         (c-complex-decl-matchers): Update to handle that
16414         `c-opt-access-key' no longer exists.
16416         * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
16417         improved label recognition in `c-beginning-of-statement-1'.
16419         * progmodes/cc-engine.el (c-beginning-of-member-init-list):
16420         Recognize bitfields better.
16422         * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
16423         Remove some cruft and fixed a bug that could cause it to go to a
16424         position further down.
16426         * progmodes/cc-langs.el, cc-engine.el
16427         (c-beginning-of-statement-1): Improve detection of labels in
16428         declaration contexts.
16430         (c-beginning-of-decl-1): Use it.
16432         (c-nonlabel-token-key): New language constant and variable needed
16433         by `c-beginning-of-statement-1'.
16435         * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
16436         manifested itself due to the correction in `c-forward-sexp'.
16438         * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
16439         Make these behave as documented when used at the buffer limits.
16441         * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
16442         (c-type-decl-end-used): Made this a language variable.
16444         * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
16445         correctly when `combine-after-change-calls' is used together with
16446         temporary narrowings.
16448         * progmodes/cc-engine.el (c-beginning-of-statement-1):
16449         Report labels correctly when the start point is immediately after the
16450         colon.
16452         * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
16453         Remove since it isn't used anymore.
16455         * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
16456         bracket arglists such as template parens in C++.
16458         * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
16459         in the last check-in.  Some optimization.
16461         * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
16462         where it could stop at the same level in a preceding sexp when
16463         PAREN-LEVEL is set.
16465         * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
16466         text property lookup only when it's needed.
16468         * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
16469         Change the policy for paren marked angle brackets to be more
16470         persistent; once marked they remain marked even when they're found
16471         to be unbalanced in the searched region.  This should keep the
16472         paren syntax around even when individual lines are refontified in
16473         multiline template arglists.
16475         (c-parse-and-markup-<>-arglists): New dynamically bound variable
16476         to control markup so that incorrect angle bracket arglists aren't
16477         marked in contexts where the correct value for
16478         `c-disallow-comma-in-<>-arglists' isn't known.
16480         (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
16481         argument has become `c-parse-and-markup-<>-arglists'.
16483         (c-remove-<>-arglist-properties): Remove - no longer used.
16485         (c-after-change-check-<>-operators): New function used on
16486         `after-change-functions' to avoid that "<" and ">" characters that
16487         are part of longer operators have paren syntax.
16489         (c-<>-multichar-token-regexp): New language variable used by
16490         `c-after-change-check-<>-operators'.
16492         (c-after-change): Call `c-after-change-check-<>-operators'.
16494         (c-font-lock-<>-arglists): Use the context properties set by
16495         `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
16496         correctly to avoid doing invalid markup.
16498         (c-font-lock-declarations): Remove code that undoes the invalid
16499         markup done by `c-font-lock-<>-arglists'.
16501         (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
16502         after `c-font-lock-declarations'.
16504         * progmodes/cc-engine.el (c-syntactic-skip-backward):
16505         Add paren-level feature.
16507         (c-guess-basic-syntax): Improve the anchor position for
16508         `template-args-cont' in nested template arglists.  There's still
16509         much to be desired in this area, though.
16511 2005-12-08  Alan Mackenzie  <bug-cc-mode@gnu.org>
16513         * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
16514         Make the "Text Filling and Line Breaking" commands work for AWK buffers.
16516 2005-12-08  Martin Stjernholm  <bug-cc-mode@gnu.org>
16518         * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
16519         Removed; (c-major-mode-is 'awk-mode) can be used instead now.
16521         * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
16522         it doesn't work no longer are supported.
16524         * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
16525         * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
16526         requires support for the syntax-table' text property, which rules
16527         out Emacs 19 and XEmacs < 21.4.  Removed various compatibility
16528         cruft associated with those versions.
16530         * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
16531         for the `syntax-table' text property, which rules out Emacs 19 and
16532         XEmacs < 21.4.  Removed various compatibility cruft associated
16533         with those versions.
16535         * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
16536         support for the `syntax-table' text property.
16538         * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
16539         variable and use an extra quoted face name instead.  All the
16540         emacsen flavors handle that correctly.
16542         * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
16543         (c-font-lock-declarators, c-font-lock-declarations)
16544         (c-complex-decl-matchers, c-basic-matchers-after): Use a text
16545         property to mark the items in in declarator lists to handle
16546         refontification inside multiline declarations better.
16548         * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
16549         construct like "a * b = c;" as a declaration.
16551 2005-12-08  Kim F. Storm  <storm@cua.dk>
16553         * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
16554         (cua-rectangle-modifier-key): ... this.  New defcustom.  Can now
16555         select either meta, hyper, or super modifier for rectangle commands.
16556         (cua--rectangle-modifier-key): New defvar.
16557         (cua--M/H-key): Use it.  Remove special case for `space'.
16558         (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
16559         on X, to meta otherwise.  Always bind C-return to toggle
16560         rectangle.  Pass ?\s instead of `space' to cua--M/H-key.
16562         * emulation/cua-rect.el (cua-help-for-rectangle):
16563         Use cua--rectangle-modifier-key.  Handle super modifier too.
16564         (cua--init-rectangles): Always bind C-return to toggle rectangle.
16565         Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
16567         * ido.el: Move Acknowledgements and History after Commentary.
16568         Minor changes to Commentary.
16570         * emulation/cua-base.el (cua--select-keymaps): Enable repeat
16571         keymap if cua--prefix-override-timer is `shift'.
16572         (cua--shift-control-prefix): New function; emulate "type prefix
16573         key twice" functionality to handle shifted prefix key override.
16574         (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
16575         New commands.
16576         (cua--init-keymaps): Bind them to S-C-c and S-C-x.
16578 2005-12-08  Carsten Dominik  <dominik@science.uva.nl>
16580         * textmodes/org.el (org-insert-heading): Try to do items before
16581         headings.
16582         (org-agenda-mode): Quote `org-agenda-mode-hook'.
16583         (org-insert-item): New function.
16584         (org-renumber-ordered-list): Don't skip to higher level lists.
16586 2005-12-08  Juri Linkov  <juri@jurta.org>
16588         * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
16590         * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
16592         * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
16594         * pcvs.el (defun-cvs-mode): Put `definition-name' property on
16595         the constructed function name fun-1.
16597         * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
16598         because such links don't lead to parent documentation.
16600 2005-12-08  Kenichi Handa  <handa@m17n.org>
16602         * descr-text.el (describe-char): Use *Help-2* buffer if the
16603         current buffer is *Help*.  Call describe-text-properties while
16604         setting the original buffer.
16606 2005-12-07  Bill Wohler  <wohler@newt.com>
16608         * files.el (auto-mode-alist): Remove mh-letter-mode.  Unnecessary,
16609         and causes problems with non-MH users (such as Gnus users).
16611 2005-12-08  Nick Roberts  <nickrob@snap.net.nz>
16613         * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
16614         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
16615         (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
16616         command "info sources".  Move calls to GDB command "list".
16617         (gdb-find-file-hook): Just use gdb-source-file-list.
16618         (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
16619         (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
16620         (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
16621         (gdb-data-list-register-values-handler): Use correct trigger name.
16623 2005-12-07  Kim F. Storm  <storm@cua.dk>
16625         * ido.el (ido-completion-map): Rename from ido-mode-map.
16626         (ido-common-completion-map, ido-file-completion-map)
16627         (ido-file-dir-completion-map, ido-buffer-completion-map):
16628         Rename from ido-mode-....-map.
16629         (ido-init-completion-maps): Rename from ido-init-mode-maps.
16630         (ido-setup-completion-map): Rename from ido-define-mode-map.
16631         (ido-read-internal): Bind minibuffer-local-filename-completion-map
16632         to ido-completion-map.
16634 2005-12-07  Kenichi Handa  <handa@m17n.org>
16636         * international/mule-cmds.el
16637         (set-display-table-and-terminal-coding-system): If the coding
16638         system specified in `unibyte-display' property is different from
16639         the arg coding-system, don't setup standard-display-table.
16641 2005-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16643         * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
16644         that comments end at \n, regardless of selective-display.
16646 2005-12-07  Nick Roberts  <nickrob@snap.net.nz>
16648         * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
16649         (gdb-version): New variables.
16650         (gdb-source-file-list, gdb-register-names)
16651         (gdb-changed-registers): New variables for use with GDB 6.4+.
16652         (gdb-ann3): Replace with...
16653         (gdb-init-1, gdb-init-2): ...two new functions.
16654         (gdba, gdb-prompt): Call gdb-init-1.
16655         (gdb-get-version): New function.  Call gdb-init-2 from here.
16656         (gud-watch): Make it work with mouse events too.
16657         (gdb-post-prompt): Don't add to queue until GDB version is known.
16658         (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
16659         (gdb-locals-mode): Use gdb-version.
16660         (gdb-memory-format-map, gdb-memory-unit-map)
16661         (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
16662         (gdb-locals-font-lock-keywords-1)
16663         (gdb-locals-font-lock-keywords-2): New variables.
16664         (gdb-find-file-hook): Make it work with GDB 6.4+ too.
16665         (gdb-set-gud-minor-mode-existing-buffers-1)
16666         (gdb-var-list-children-1, gdb-var-list-children-handler-1)
16667         (gdb-var-update-1, gdb-var-update-handler-1)
16668         (gdb-data-list-register-values-handler)
16669         (gdb-data-list-register-values-custom)
16670         (gdb-get-changed-registers, gdb-get-changed-registers-handler)
16671         (gdb-stack-list-locals-handler, gdb-get-register-names):
16672         New functions for use with GDB 6.4+.
16673         (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
16674         (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
16675         (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
16676         (gdb-stack-list-locals-regexp)
16677         (gdb-data-list-register-names-regexp): New regexps for use with
16678         GDB 6.4+.
16680 2005-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16682         * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
16684 2005-12-06  Nozomu Ando  <nand@mac.com>
16686         * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
16687         prompts work for AUTH PLAIN.  Also reported by Steve Allan
16688         <seallan@verizon.net>.
16690 2005-12-06  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
16692         * frame.el (set-frame-parameter): Add doc string.
16694 2005-12-06  Carsten Dominik  <dominik@science.uva.nl>
16696         * textmodes/org.el (org-occur-highlights): New variable.
16697         (org-highlight-new-match, org-remove-occur-highlights): New functions.
16698         (org-highlight-sparse-tree-matches): New option.
16699         (org-do-occur): New function.
16700         (org-get-heading): Make it work also at beginning of line.
16701         (org-category-table): New variable.
16702         (org-get-category-table, org-get-category)
16703         (org-camel-to-words, org-link-search): New functions.
16704         (org-select-this-todo-keyword): New variable.
16705         (org-todo-list): New command.
16706         (org-shiftright, org-shiftleft): New commands.
16707         (org-agenda-todo): Add prefix argument.
16708         (org-show-hierarchy-above): New option.
16709         (org-show-todo-tree): Numerical prefix creates tree for specific
16710         TODO keyword.
16711         (org-outline-level): New function, to assign a level to plain
16712         lists items.
16713         (org-cycle-include-plain-lists): New option.
16714         (org-mode): Use `org-outline-level' as value of `outline-level'.
16715         (org-cycle): Temporarily switch `outline-regexp' if
16716         `org-cycle-include-plain-lists' is non-nil.
16717         (org-start-icalendar-file): Fix format bug.
16718         (org-agenda-get-day-entries): Create category table.
16719         (org-agenda-get-todos, org-agenda-get-timestamps)
16720         (org-agenda-get-deadlines, org-agenda-get-scheduled)
16721         (org-agenda-get-blocks): Use `org-get-category'.
16722         (org-context-in-file-links): Rename from
16723         `org-line-numbers-in-file-links'.
16725 2005-12-06  Romain Francoise  <romain@orebokech.com>
16727         * window.el (balance-windows): Delete extraneous third arg in call
16728         to `enlarge-window'.
16730 2005-12-06  Kenichi Handa  <handa@m17n.org>
16732         * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
16734 2005-12-06  Nick Roberts  <nickrob@snap.net.nz>
16736         * progmodes/gdb-ui.el (gdb-var-create-handler)
16737         (gdb-var-evaluate-expression-handler, gdb-frame-handler)
16738         (gdb-var-list-children-handler, gdb-var-update-handler):
16739         Current buffer is already gdb-partial-output-buffer, don't
16740         make it current again.
16742 2005-12-05  Luc Teirlinck  <teirllm@auburn.edu>
16744         * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
16745         (list-buffers-noselect): Use it.
16747 2005-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16749         * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
16750         (mail-yank-ignored-headers): Use regexp-opt.
16751         (mail-mode-map): Move initialization into declaration.
16752         (mail-sent-via): Remove unused shadowed var `to-line'.
16753         (mail-mailer-swallows-blank-line): Use with-temp-buffer.
16754         (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
16755         (mail-do-fcc): Use dolist and push.
16756         (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
16757         (mail-yank-ignored-headers): Don't autoload.
16759 2005-12-05  Kenichi Handa  <handa@m17n.org>
16761         * international/mule-cmds.el (set-language-info-internal): New fun.
16762         (set-language-info): Call set-language-info-internal to update
16763         language-info-alist.  If LANG-ENV is the current one, call
16764         set-language-environment to make INFO effective now.
16765         (set-language-info-alist): Likewise.
16766         (locale-language-names): With locale "en", use English
16767         lang. env. but set the default codings to iso-8859-1.
16769 2005-12-04  Nick Roberts  <nickrob@snap.net.nz>
16771         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
16772         (gdb-speedbar-auto-raise): Echo new state in minibuffer.
16773         (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
16774         for plain strings.
16775         (gdb-frames-mode): Remove redundant call to font-lock-mode.
16776         (gdb-all-registers): Rename from toggle-gdb-all-registers.
16777         Create registers buffer if necessary.  Echo new state in minibuffer.
16778         (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
16780 2005-12-03  Chong Yidong  <cyd@stupidchicken.com>
16782         * info.el (Info-fontify-node): Match external links using
16783         non-directory part of filename.
16785 2005-12-04  Juri Linkov  <juri@jurta.org>
16787         * font-core.el (global-font-lock-mode): Use define-global-minor-mode
16788         instead of easy-mmode-define-global-mode.  Add `:group font-lock'.
16789         (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
16790         because there is no customization option for it.
16792         * font-lock.el (lisp-font-lock-keywords-1):
16793         Add define-global-minor-mode.
16795         * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
16797         * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
16798         properties on the constructed variable names.
16800         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
16801         Put `definition-name' properties on the constructed function names
16802         next-sym and prev-sym.
16804         * emacs-lisp/find-func.el (find-function-regexp):
16805         Add define-global-minor-mode.  Replace `easy-mmode-define-global-mode'
16806         with `easy-mmode-define-[a-z-]+'.  Add easy-menu-define.
16807         (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
16808         and easy-menu-define.
16810         * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
16811         easy-mmode-define-global-mode and define-global-minor-mode.
16812         (lisp-imenu-generic-expression): Add define-global-minor-mode.
16814         * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
16815         instead of easy-mmode-define-global-mode.
16817         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16818         Use define-minor-mode instead of easy-mmode-define-minor-mode.
16820         * cus-edit.el (customize-group, customize-group-other-window):
16821         Filter out autoloaded options from the group completion list by
16822         using heuristics that autoloaded groups don't have `custom-autoload'
16823         property on their symbols (they have only `custom-loads').
16825         * simple.el (completion-setup-function): Put completions-common-part
16826         face on complete completion string too (i.e. completion string
16827         without completions-first-difference face).
16829         * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
16831 2005-12-03  Eli Zaretskii  <eliz@gnu.org>
16833         * view.el (view-mode): Doc fix.
16835         * disp-table.el (standard-display-european): Add to the warning
16836         message a reference to the doc string.
16838         * play/yow.el (apropos-zippy): Call print-help-return-message,
16839         similar to other Help and Apropos commands.
16841         * help.el (print-help-return-message): If pop-up-frames is
16842         non-nil, set up help-return-method to delete the help window and,
16843         possibly, its frame as well, and don't display message about
16844         scrolling the help window.  Doc fix.
16845         (help-return-method): Doc fix.
16847 2005-12-03  Martin Rudalics  <rudalics@gmx.at>
16849         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
16850         whereby names of length one or names starting with a
16851         symbol-constituent character would not be returned.
16853 2005-12-03  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
16855         * subr.el (atomic-change-group): Add edebug and indentation spec.
16857 2005-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16859         * completion.el (save-completions-file-name): Fix typo in last change.
16861 2005-12-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
16863         * info.el: Move back/forward history to the beginning of the tool bar.
16865 2005-12-02  Ken Manheimer  <ken.manheimer@gmail.com>
16867         * allout.el (eval-when-compile): Remove unnecessary load of cl.
16868         Add fset of allout-real-isearch-abort during compile to fix
16869         byte-compilation warnings.
16870         (allout-mode-p): Move definition of this macro above all uses, or
16871         byte compilation in barren Emacs (eg, during Emacs build) will
16872         lack the definition.
16873         (allout-mode): Move this variable above any uses, or byte
16874         compilation will fail.
16875         (allout-resolve-xref): Remove use of personal file-reference function.
16876         (allout-toggle-current-subtree-encryption): Do the current (ie,
16877         visible containing) topic, rather than nearest around point.  Doc fix.
16878         (allout-toggle-subtree-encryption): New function, workhorse that
16879         works on nearest topic containing point.
16880         (allout-encrypt-string): Signal requirement for newer version of pgg.
16881         (allout-resumptions): Doc fix.
16883 2005-12-02  Eli Zaretskii  <eliz@gnu.org>
16885         * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
16887 2005-12-02  Agustin Martin  <agustin.martin@hispalinux.es>
16889         * textmodes/flyspell.el (flyspell-external-point-words):
16890         Consider a misspelling as found in the string search if: (a) misspelling
16891         and found string lengths match, or (b) misspelling is found as
16892         element in a boundary-chars separated longer string, or (c)
16893         ispell-program-name is really ispell and misspelling is found as
16894         part of a TeX string.  After successful match move beginning of
16895         search region to end of match.  Warn about not found misspellings
16896         once the process is done.
16897         (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
16899 2005-12-02  Nick Roberts  <nickrob@snap.net.nz>
16901         * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
16902         tool bar (removed inadvertently).
16904 2005-12-02  Juri Linkov  <juri@jurta.org>
16906         * log-view.el (log-view-diff): Clarify doc string.
16908 2005-12-01  Bill Wohler  <wohler@newt.com>
16910         * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
16911         triggers lm-verify errors.
16913 2005-12-01  Luc Teirlinck  <teirllm@auburn.edu>
16915         * simple.el (transient-mark-mode, line-number-mode)
16916         (column-number-mode, size-indication-mode): Remove `:require nil'.
16918 2005-12-01  Nick Roberts  <nickrob@snap.net.nz>
16920         * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
16921         in the margin also.
16922         (gdb-breakpoints-mode-map): Use D instead of d for
16923         gdb-delete-breakpoint.
16924         (gdb-get-frame-number): Require a number to match on.
16925         (gdb-threads-mode-map): Add follow-link binding.
16927 2005-11-30  Jason Rumney  <jasonr@gnu.org>
16929         * isearch.el (isearch-mode-map): Avoid exiting search on
16930         language-change event.
16932 2005-11-30  Romain Francoise  <romain@orebokech.com>
16934         * speedbar.el (speedbar-default-position): New defcustom.
16935         (speedbar-frame-reposition-smartly): Use it.
16937         * dframe.el (dframe-reposition-frame-emacs): Fix position
16938         computation for `left' location.
16939         Update copyright year.
16941 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16943         * help.el (help-map): Move initialization into declaration.
16945         * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
16947         * help-fns.el (help-argument-name): Don't autoload.
16948         It's useless and triggers a bug in cus-dep.el causing ldefs-boot
16949         to be re-loaded when customizing the `help' group.
16951 2005-11-30  John Paul Wallington  <jpw@gnu.org>
16953         * help-fns.el (describe-function-1): Fill arglist output.
16955 2005-11-30  Kim F. Storm  <storm@cua.dk>
16957         * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
16958         (cua--rectangle-post-command): Cleanup overlays and deactivate mark
16959         after revert-buffer (or anything else which kills all local variables).
16961         * apropos.el (apropos-parse-pattern): Doc fix.
16962         Set apropos-regexp directly, rather than expecting callers to do so.
16963         (apropos-command, apropos, apropos-value, apropos-documentation):
16964         Simplify calls to apropos-parse-pattern.
16966 2005-11-29  Chong Yidong  <cyd@stupidchicken.com>
16968         * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
16969         (hi-lock-face-phrase-buffer): Use hi-yellow face.
16970         (hi-lock-write-interactive-patterns): Use comment-region.
16972         * longlines.el (longlines-mode): Add mail-setup-hook.
16974         * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
16976         * simple.el (sendmail-user-agent-compose, next-line):
16977         Conditionally use hard-newline.
16979 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
16981         * international/latexenc.el (latex-inputenc-coding-alist):
16982         Reword doc string.
16984 2005-11-29  Chong Yidong  <cyd@stupidchicken.com>
16986         * help.el (describe-key-briefly, describe-key): Recognize default
16987         bindings.
16989 2005-11-29  Romain Francoise  <romain@orebokech.com>
16991         * view.el (view-inhibit-help-message): New defcustom.
16992         (view-mode-enter): Use it.
16994 2005-11-29  Michael Kifer  <kifer@cs.stonybrook.edu>
16996         * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
16997         Preserve user position.
16999 2005-11-28  Luc Teirlinck  <teirllm@auburn.edu>
17001         * font-lock.el: Throw error if facemenu is not loaded to prevent
17002         accidental change of loading order in loadup.el.  (Suggested by RMS.)
17004         * loadup.el: Add comment explaining why facemenu must be loaded
17005         before font-lock.
17007 2005-11-28  Jay Belanger  <belanger@truman.edu>
17009         * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
17010         (calc-dispatch-map): Add more keys for `calc-same-interface'.
17012         * calc/calc-misc.el (calc-dispatch-help): Update docstring.
17014         * calc/calc-embed.el (calc-do-embedded): Update help message.
17016         * calc/calc-prog.el (calc-user-define-invokation): Update help message.
17018 2005-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17020         * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
17022         * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
17023         called-interactively-p.
17024         (elp-profilable-p): Rename from elp-not-profilable-p.
17025         Invert result and take into account macros and autoloaded functions.
17026         (elp-instrument-function): Update call.
17027         (elp-instrument-package): Update call.  Add completion.
17028         (elp-pack-number): Use match-string.
17029         (elp-results-jump-to-definition-by-mouse): Merge into
17030         elp-results-jump-to-definition and then remove.
17031         (elp-output-insert-symname): Make help echo text single-line.
17033         * replace.el (query-replace-map): Move initialization into declaration.
17034         (occur-engine): Use with-current-buffer.
17035         (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
17036         (occur-mode-mouse-goto): Replace with an alias.
17038 2005-11-28  Juri Linkov  <juri@jurta.org>
17040         * simple.el (quoted-insert): Let-bind input-method-function to nil.
17042         * term/w32-win.el: Bind [S-tab] to [backtab].
17044         * info.el (Info-fontify-node): Set 2nd arg `noerror' of
17045         `Info-find-file' to t.
17047         * replace.el (occur-mode-mouse-goto): Pop, don't switch.
17048         (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
17049         and same-window-regexps.
17050         (occur-next-error): Don't move point for arg 0.
17052 2005-11-28  Chong Yidong  <cyd@stupidchicken.com>
17054         * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
17056 2005-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17058         * log-edit.el (log-edit-changelog-use-first): New var.
17059         (log-edit-changelog-ours-p): Use it.
17060         (log-edit-insert-changelog): Set it with new arg `use-first'.
17061         (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
17062         (log-edit-hook): Add them to the list of suggested options.
17064         * textmodes/flyspell.el (flyspell-last-buffer): New var.
17065         (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
17066         redundant work.
17067         (flyspell-mode-on): Use add-hook for after-change-functions.
17068         (flyspell-mode-off): Use remove-hook for after-change-functions.
17069         (flyspell-changes): Make it buffer-local.
17070         (flyspell-after-change-function): Make it non-interactive.  Use push.
17071         (flyspell-post-command-hook): Check input-pending-p while processing
17072         the potentially long list of buffer changes.
17074 2005-11-28  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
17076         * buff-menu.el (list-buffers-noselect): Display the selected
17077         frame's buffer list, not the global one.
17079 2005-11-28  Nick Roberts  <nickrob@snap.net.nz>
17081         * xt-mouse.el (xterm-mouse-event): Set last-input-event so
17082         that (list last-input-event) works as in interactive spec.
17084 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
17086         * loadup.el ("facemenu"): Load facemenu before font-lock, because
17087         `facemenu-keymap' needs to be defined when font-lock is loaded.
17088         Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
17090 2005-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17092         * completion.el: Remove useless leading * in defcustom docstrings.
17093         (save-completions-file-name): Use ~/.emacs.d if available.
17094         (completion-standard-syntax-table): Rename from
17095         cmpl-standard-syntax-table and fold initialization into declaration,
17096         thus removing cmpl-make-standard-completion-syntax-table.
17097         (completion-lisp-syntax-table, completion-c-syntax-table)
17098         (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
17099         (cmpl-saved-syntax, cmpl-saved-point): Remove.
17100         (symbol-under-point, symbol-before-point)
17101         (symbol-under-or-before-point, symbol-before-point-for-complete)
17102         (add-completions-from-c-buffer): Use with-syntax-table.
17103         (make-completion): Don't return a list of completion entries.
17104         Update callers.
17105         (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
17106         (completion-initialize): Rename from initialize-completions.
17107         (completion-find-file-hook): Rename from cmpl-find-file-hook.
17108         (kill-emacs-save-completions): Collect stats here.
17109         (save-completions-to-file, load-completions-from-file):
17110         Use with-current-buffer.
17111         (completion-def-wrapper): Rename from def-completion-wrapper.  Make it
17112         into a function.  Move all calls to toplevel.
17113         (completion-lisp-mode-hook): New fun.
17114         (completion-c-mode-hook, completion-setup-fortran-mode):
17115         Set the syntax-table here.  Use local-set-key.
17116         (completion-saved-bindings): New var.
17117         (dynamic-completion-mode): Make it into a proper minor mode.
17118         (load-completions-from-file): Remove unused var `num-uses'.
17120         * emacs-lisp/cl-macs.el (defstruct): Don't define the default
17121         constructor if it is explicitly overridden.
17123         * complete.el (PC-completion-as-file-name-predicate):
17124         Use minibuffer-completing-file-name.
17125         (partial-completion-mode): Use find-file-not-found-functions.
17126         (PC-lisp-complete-symbol): Use with-syntax-table.
17127         (PC-look-for-include-file): Remove dead setq.
17128         (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
17129         (PC-complete): Use with-current-buffer.
17131         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
17132         escape single quotes.
17134 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
17136         * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
17137         of `if' whose condition always returned nil.  Doc fix.
17139         * buff-menu.el (Buffer-menu-revert-function): Make the selected
17140         window's buffer the current buffer around the call to
17141         `list-buffers-noselect'.  This is necessary to mark that buffer
17142         with a `.' in the Buffer Menu when called from Lisp, for instance
17143         by Auto Revert Mode.
17145 2005-11-28  Nick Roberts  <nickrob@snap.net.nz>
17147         * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
17148         attaching to it.
17149         (gdb-pre-prompt): Make sure gdb-error is reset.
17151         * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
17152         with a child process, detect it.
17153         (gud-speedbar-buttons): Match regexp more carefully.
17155 2005-11-27  Richard M. Stallman  <rms@gnu.org>
17157         * mouse.el (mouse-drag-move-window-bottom):
17158         Use adjust-window-trailing-edge.
17160 2005-11-27  Luc Teirlinck  <teirllm@auburn.edu>
17162         * simple.el (blink-matching-open): Ignore
17163         `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
17164         (blink-matching-paren-on-screen): Update docstring.
17166         * paren.el (show-paren-mode): No longer change
17167         `blink-matching-paren-on-screen'.
17169 2005-11-27  John Paul Wallington  <jpw@pobox.com>
17171         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
17172         (gdb-threads-select, gdb-edit-register-value):
17173         Use `posn-set-point' instead of `mouse-set-point' because the
17174         latter is not fbound when configured without X.
17176 2005-11-27  Kim F. Storm  <storm@cua.dk>
17178         * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
17179         existing face when partially highlighting a TAB in a rectangle.
17181 2005-11-26  Kim F. Storm  <storm@cua.dk>
17183         * ido.el (ido-mode-map): Doc fix.
17184         (ido-mode-common-map, ido-mode-file-map)
17185         (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
17186         (ido-define-mode-map): Rewrite.  Select one of the new maps as
17187         parent for ido-mode-map instead of building from scratch.
17188         (ido-init-mode-maps): New defun to initialize new maps.
17189         (ido-mode): Call it.
17190         (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
17191         (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
17193 2005-11-26  John Paul Wallington  <jpw@pobox.com>
17195         * arc-mode.el (archive-extract): Use `posn-set-point' instead of
17196         `mouse-set-point' because the latter is not fbound when configured
17197         without X.
17199 2005-11-26  Thien-Thi Nguyen  <ttn@gnu.org>
17201         * files.el (file-relative-name): Doc fix.
17203 2005-11-26  Kurt Hornik  <Kurt.Hornik@wu-wien.ac.at>
17205         * progmodes/octave-inf.el (inferior-octave-startup): Force a
17206         non-empty string for secondary prompt PS2.
17208 2005-11-25  Chong Yidong  <cyd@stupidchicken.com>
17210         * progmodes/compile.el (compilation-setup): Fix last change.
17212 2005-11-26  Nick Roberts  <nickrob@snap.net.nz>
17214         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
17215         (gdb-mouse-toggle-breakpoint-margin)
17216         (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
17217         Add gdb-server-prefix to keep out of command history.
17218         (gdb-edit-register-value): New function.
17219         (gdb-registers-mode-map): Bind mouse-2 and RET to it.
17220         (gdb-info-registers-custom): Use above map.
17222 2005-11-25  Chong Yidong  <cyd@stupidchicken.com>
17224         * custom.el (enable-theme): Signal error if argument is not a
17225         theme.  Don't recalculate a face if it's not loaded yet.
17227         * cus-face.el (custom-theme-set-faces): Don't change saved-face if
17228         the `user' theme is in effect.
17230         * info.el (Info-on-current-buffer): Record actual filename in
17231         Info-current-file, instead of t, or a fake filename if a non-file
17232         buffer.  Make autoload.
17233         (Info-find-node, Info-revert-find-node): No need to check for
17234         Info-current-file nil.
17235         (Info-set-mode-line, Info-up, Info-copy-current-node-name):
17236         Info-current-file is now never `t'.
17237         (Info-fontify-node): Many simplifications due to Info-current-file
17238         always being valid.  Use Info-find-file to find node filename.
17240 2005-11-25  David Kastrup  <dak@gnu.org>
17242         * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
17243         new character, then delete" in order to preserve markers.
17245 2005-11-25  David Ponce  <david@dponce.com>
17247         * recentf.el (recentf-arrange-by-rule): Handle a special
17248         `auto-mode-alist'-like "strip suffix" rule.
17249         (recentf-build-mode-rules): Handle second level auto-mode entries.
17251 2005-11-25  Michael Kifer  <kifer@cs.stonybrook.edu>
17253         * viper-keym.el (viper-ESC-key): Use different values in terminal and
17254         window modes.
17256         * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
17257         jde-javadoc-checker-report-mode.
17259         * ediff-wind (ediff-make-wide-display): Slight simplification.
17261         * ediff.el (ediff-date): Change the date of last update.
17263 2005-11-24  Chong Yidong  <cyd@stupidchicken.com>
17265         * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
17266         Use define-minor-mode, and make it a local mode.  Turn on font-lock.
17267         (hi-lock-mode): New global minor mode.
17268         (turn-on-hi-lock-if-enabled): New function.
17269         (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
17270         Change arguments to regexp and face instead of a font-lock pattern.
17271         Directly set face property, instead of refontifying.
17272         (hi-lock-font-lock-hook): Check if font-lock is being turned on.
17273         (hi-lock-find-patterns): Use line-number-at-pos.
17275         (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode.  Use new
17276         arguments for hi-lock-set-pattern.
17277         (hi-lock-unface-buffer, hi-lock-set-file-patterns):
17278         Call font-lock-fontify-buffer.
17279         (hi-lock-find-file-hook, hi-lock-current-line)
17280         (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
17282         (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
17283         turned off.
17285         * progmodes/compile.el (compilation-setup): Don't fiddle with
17286         font-lock-defaults.
17288 2005-11-25  Nick Roberts  <nickrob@snap.net.nz>
17290         * progmodes/gdb-ui.el (gdb-var-create-handler)
17291         (gdb-var-list-children-handler): Find values for all variable
17292         objects.  gud-speedbar-buttons decides whether to display them.
17294 2005-11-24  Romain Francoise  <romain@orebokech.com>
17296         * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
17297         buffer name with a space.
17299 2005-11-24  Carsten Dominik  <dominik@science.uva.nl>
17301         * textmodes/org.el (org-export-plain-list-max-depth): Rename from
17302         `org-export-local-list-max-depth'.  Change default value to 3.
17303         (org-auto-renumber-ordered-lists)
17304         (org-plain-list-ordered-item-terminator): New options.
17305         (org-at-item-p, org-beginning-of-item, org-end-of-item)
17306         (org-get-indentation, org-get-string-indentation)
17307         (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
17308         New functions.
17309         (org-move-item-down, org-move-item-up): New commands.
17310         (org-export-as-html): New classes for CSS support.  Bug fix in
17311         regular expression detecting fixed-width regions.  Respect
17312         `org-local-list-ordered-item-terminator'.
17313         (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
17314         also a list item.
17315         (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
17316         New item moving functions.
17318 2005-11-24  Juri Linkov  <juri@jurta.org>
17320         * isearch.el (isearch-repeat): With empty search ring set
17321         `isearch-error' to the error string instead of signaling error
17322         with the function `error'.
17324 2005-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17326         * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
17328 2005-11-24  Nick Roberts  <nickrob@snap.net.nz>
17330         * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
17331         and variable.
17332         (gdb-var-create-handler, gdb-var-list-children-handler):
17333         Don't match on "char **...".
17334         (gdb-var-update-handler): Find values for all variable objects.
17335         (gdb-info-frames-custom): Identify frames by leading "#".
17337         * progmodes/gud.el (gud-speedbar-menu-items): Add
17338         gdb-speedbar-auto-raise as radio button.
17339         (gud-speedbar-buttons): Raise speedbar if requested.
17340         Don't match on "char **...".
17341         (gud-speedbar-buttons): Add (pointer) value for non-leaves.
17342         Make it editable.
17344 2005-11-23  Chong Yidong  <cyd@stupidchicken.com>
17346         * info.el (Info-fontify-node): Handle the case where
17347         Info-current-file is t.
17349 2005-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17351         * simple.el (blink-matching-open): Fix off-by-one in last change.
17353 2005-11-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17355         * term/mac-win.el: Don't change default directory.
17357 2005-11-22  Luc Teirlinck  <teirllm@auburn.edu>
17359         * cus-edit.el (Custom-reset-standard): Make it handle Custom group
17360         buffers correctly.  (It used to throw an error in such buffers.)
17361         Make it ask for confirmation in group buffers and other Custom
17362         buffers containing more than one customization item.
17364 2005-11-22  John Paul Wallington  <jpw@gnu.org>
17366         * net/goto-addr.el (goto-address-fontify): Put `follow-link'
17367         property on mail and url overlays.
17368         (goto-address-at-point): Use `posn-set-point' instead of
17369         `mouse-set-point' because the latter is not fbound when configured
17370         without X.
17372 2005-11-22  Lars Hansen  <larsh@soem.dk>
17374         * ls-lisp.el (ls-lisp-parse-symlink): Delete.
17375         (ls-lisp-classify, ls-lisp-format): Delete call to
17376         ls-lisp-parse-symlink.
17377         (ls-lisp-handle-switches): Handle symlinks to directories as
17378         directories when ls-lisp-dirs-first in non-nil.
17380 2005-11-21  Luc Teirlinck  <teirllm@auburn.edu>
17382         * startup.el (command-line): Make sure that loaddefs.el is handled
17383         correctly in load-history.
17385 2005-11-22  Nick Roberts  <nickrob@snap.net.nz>
17387         * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
17388         (gdb-struct-string, gdb-array-string): New constants.
17389         (gdb-info-locals-handler): Use them.
17390         (gdb-reset): Reset gdb-var-list to nil.
17392 2005-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17394         * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
17395         in patterns.
17397 2005-11-21  Juri Linkov  <juri@jurta.org>
17399         * custom.el (defcustom): Update link types in docstring.
17401 2005-11-20  Martin Rudalics  <rudalics@gmx.at>
17403         * custom.el (defgroup): Add doc-string-elt info.
17405         * widget.el (define-widget): Don't use declare for the doc-string-elt.
17407 2005-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17409         * newcomment.el (comment-enter-backward): Fix last fix.
17411         * simple.el (blink-matching-open):
17412         * paren.el (show-paren-function): Allow new paren-class info.
17414 2005-11-20  Chong Yidong  <cyd@stupidchicken.com>
17416         * faces.el: Revert 2005-11-17 change.  :ignore-defface is now
17417         handled automagically.
17419 2005-11-20  Andreas Schwab  <schwab@suse.de>
17421         * descr-text.el (describe-char): When copying overlays put them
17422         over the full char description instead of just the first character
17423         of it.
17425 2005-11-20  Juri Linkov  <juri@jurta.org>
17427         * simple.el (what-cursor-position):
17428         * descr-text.el (describe-char): Use Lisp-readable syntax
17429         for octal and hex.  Reorder decimal, octal and hex values.
17430         Remove excess whitespace in the output.  Use `=' in `column='
17431         like in `point=' and `Hscroll='.
17433         * international/mule-cmds.el (encoded-string-description):
17434         Use Lisp-readable syntax for hex.
17436 2005-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17438         * newcomment.el (comment-enter-backward): Handle the case where the
17439         comment is closed by EOB.
17441 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
17443         * longlines.el (longlines-before-revert-hook)
17444         (longlines-after-revert-hook): New functions.
17445         (longlines-mode): Turn off longlines temporarily when reverting.
17446         Add a message-setup-hook.
17447         (longlines-decode-buffer): New function.
17448         (longlines-wrap-line): Preserve marker positions.
17450 2005-11-19  Andreas Schwab  <schwab@suse.de>
17452         * emacs-lisp/shadow.el: Handle compressed files.
17454 2005-11-19  Romain Francoise  <romain@orebokech.com>
17456         * net/browse-url.el (browse-url-default-browser): Signal an error
17457         if no usable browser can be found, rather than try to load w3.
17459 2005-11-16  Ryan Yeske  <rcyeske@gmail.com>
17461         * net/rcirc.el (rcirc-mangle-text): Add bold face property without
17462         replacing existing properties.
17463         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
17464         (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
17465         tty specs.
17466         (rcirc-server-prefix, rcirc-server): New faces.
17467         (rcirc-url-regexp): Generate with rx macro.
17468         (rcirc-last-server-message-time): New variable.
17469         (rcirc-filter): Record time of last message.
17470         (rcirc-keepalive): Kill processes that did not send a message
17471         since the last ping.
17472         (rcirc-mode): Give rcirc-topic a local binding here.
17474 2005-11-19  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
17476         * subr.el (read-passwd): Fontify the prompt as we do with other
17477         prompts.
17479 2005-11-19  Ryan Yeske  <rcyeske@gmail.com>
17481         * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
17482         binding buffer-read-only to nil.
17484 2005-11-19  Eli Zaretskii  <eliz@gnu.org>
17486         * complete.el (partial-completion-mode):
17487         Mention completion-auto-help in the doc string.
17489         * man.el (Man-highlight-references): Doc fix.  Reformat code in a
17490         more Lisp-ish way.
17492 2005-11-19  Slawomir Nowaczyk  <slawomir.nowaczyk.847@student.lu.se>  (tiny change)
17494         * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
17495         digits, not 8, to avoid misalignment for files larger than 100MB.
17497 2005-11-19  Eli Zaretskii  <eliz@gnu.org>
17499         * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
17500         Mention "keyboard shortcuts" in the help text.
17502 2005-11-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17504         * startup.el (fancy-splash-default-action): Discard only
17505         mouse-down and succeeding mouse-up events in the splash screen
17506         window so that drag-n-drop event can be processed.
17508 2005-11-18  Chong Yidong  <cyd@stupidchicken.com>
17510         * longlines.el (longlines-mode): Add hacks for mail-mode and
17511         message-mode.
17513 2005-11-18  Carsten Dominik  <dominik@science.uva.nl>
17515         * textmodes/org.el (org-table-sort-lines): New command.
17516         (org-tbl-menu): Add entry for `org-table-sort-lines'.
17517         (org-add-file): Command removed, use `org-agenda-file-to-front'
17518         instead.
17519         (org-export-icalendar): Use `org-icalendar-combined-name'.
17520         (org-cycle-agenda-files, org-agenda-file-to-end)
17521         (org-agenda-file-to-front): New commands.
17522         (org-table-tab-jumps-over-hlines, org-export-html-style):
17523         New options.
17524         (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
17525         (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
17526         New functions.
17527         (org-fill-paragraph): Call `org-table-align' in tables.
17528         (org-mode): Call `org-set-autofill-regexps'.
17529         (org-export-as-html): Support for local handformatted lists.
17530         Modified to produce valid HTML 4.0.  Use `org-export-html-style'.
17531         (org-export-local-list-max-depth): New option.
17532         (org-html-expand): Use `org-html-protect'.
17534 2005-11-18  Nick Roberts  <nickrob@snap.net.nz>
17536         * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
17537         to "p".
17538         (gdb): Move definition of gud-pp to...
17540         * progmodes/gdb-ui.el (gdb-ann3): ...here.  Make it work in the
17541         speedbar.
17542         (gdb-find-watch-expression): New function.
17544 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
17546         * faces.el (face-attribute, set-face-attribute): Mention existence
17547         of `:ignore-defface' setting in docstring.
17549 2005-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17551         * simple.el (completion-setup-function): Fix last change.
17553 2005-11-17  John Paul Wallington  <jpw@pobox.com>
17555         * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
17556         Use `posn-set-point' instead of `mouse-set-point' because the
17557         latter is not fbound when configured without X.
17559         * comint.el (comint-insert-input): Likewise.
17561 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
17563         * simple.el (hard-newline): New variable.
17564         (sendmail-user-agent-compose, next-line): Use it.
17566         * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
17567         (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
17568         (mail-mail-reply-to, mail-mail-followup-to)
17569         (mail-position-on-field, mail-signature, mail-yank-original)
17570         (mail-attach-file): Likewise.
17572         * mail/mailheader.el (mail-header-format)
17573         (mail-header-format-function): Likewise.
17575         * add-log.el (add-change-log-entry, change-log-merge): Likewise.
17577 2005-11-17  Juri Linkov  <juri@jurta.org>
17579         * font-lock.el (font-lock-faces): Rename this defgroup from
17580         `font-lock-highlighting-faces'.
17581         (font-lock-comment-face, font-lock-comment-delimiter-face)
17582         (font-lock-string-face, font-lock-doc-face)
17583         (font-lock-keyword-face, font-lock-builtin-face)
17584         (font-lock-function-name-face, font-lock-variable-name-face)
17585         (font-lock-type-face, font-lock-constant-face)
17586         (font-lock-warning-face, font-lock-negation-char-face)
17587         (font-lock-preprocessor-face)
17588         (font-lock-regexp-grouping-backslash)
17589         (font-lock-regexp-grouping-construct): Rename :group from
17590         `font-lock-highlighting-faces' to `font-lock-faces'.
17592         * cus-edit.el (lisp, c, tex):
17593         * progmodes/ada-mode.el (ada):
17594         * progmodes/asm-mode.el (asm):
17595         * progmodes/cperl-mode.el (cperl-faces):
17596         * progmodes/cpp.el (cpp):
17597         * progmodes/dcl-mode.el (dcl):
17598         * progmodes/f90.el (f90):
17599         * progmodes/fortran.el (fortran):
17600         * progmodes/icon.el (icon):
17601         * progmodes/idlwave.el (idlwave-misc):
17602         * progmodes/m4-mode.el (m4):
17603         * progmodes/make-mode.el (makefile):
17604         * progmodes/meta-mode.el (meta-font):
17605         * progmodes/modula2.el (modula2):
17606         * progmodes/octave-mod.el (octave):
17607         * progmodes/pascal.el (pascal):
17608         * progmodes/perl-mode.el (perl):
17609         * progmodes/prolog.el (prolog):
17610         * progmodes/ps-mode.el (PostScript-edit):
17611         * progmodes/scheme.el (scheme):
17612         * progmodes/sh-script.el (sh-script):
17613         * progmodes/simula.el (simula):
17614         * progmodes/tcl.el (tcl):
17615         * textmodes/nroff-mode.el (nroff):
17616         * textmodes/reftex-vars.el (reftex-fontification-configurations):
17617         * textmodes/sgml-mode.el (sgml):
17618         * textmodes/texinfo.el (texinfo):
17619         Add :link (custom-group-link font-lock-faces) to defgroup.
17621         * hi-lock.el (hi-lock): Rename this defgroup from
17622         `hi-lock-interactive-text-highlighting'.  Change parent group from
17623         `faces' to `font-lock'.  Add link to the manual.
17624         (hi-lock-mode, hi-lock-file-patterns-range)
17625         (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
17626         `hi-lock-interactive-text-highlighting' to `hi-lock'.
17627         (hi-lock-faces): Add :group `faces'.
17629         * cus-edit.el (custom-variable-prompt): Clarify the code.
17631         * faces.el (face-read-string): Set the default value arg of
17632         completing-read.
17634 2005-11-16  Luc Teirlinck  <teirllm@auburn.edu>
17636         * rfn-eshadow.el (file-name-shadow-properties)
17637         (file-name-shadow-tty-properties, file-name-shadow-mode):
17638         Remove autoloads, because the file is now preloaded.
17640 2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17642         * printing.el (easy-menu-intern): Don't define.
17643         (pr-get-symbol): Use easy-menu-intern only if defined.
17645         * simple.el (blink-matching-open): Simplify a bit.
17646         (completion-setup-function): Fix the case of partial-completion-mode
17647         when the minibuffer's contents start with "-".
17648         Obey completion-base-size-function even when
17649         minibuffer-completing-file-name is non-nil.
17651 2005-11-16  Richard M. Stallman  <rms@gnu.org>
17653         * net/eudcb-ph.el (eudc-ph-open-session):
17654         Use set-process-query-on-exit-flag.
17656         * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
17658         * international/ucs-tables.el (ucs-set-table-for-input):
17659         Use make-local-variable, not make-variable-buffer-local.
17661         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
17662         Improve warning message text.
17664         * savehist.el (savehist-save-hook): Add :group.
17666         * menu-bar.el (menu-bar-help-menu):
17667         Rename Find Extra Packages to External Packages.
17669         * cus-edit.el (Custom-reset-standard): Verify that
17670         :custom-standard-value prop exists before calling it.
17672         * apropos.el (apropos-calc-scores): Use apropos-pattern.
17674 2005-11-16  Martin Rudalics  <rudalics@gmx.at>
17676         * wid-edit.el (color): Enclose %t in %{...%}.
17678         * cus-edit.el (face): Enclose %t in %{...%}.
17680 2005-11-16  Hrvoje Niksic  <hniksic@xemacs.org>
17682         * savehist.el (savehist-mode-hook): Re-add the var.
17683         (savehist-mode): Use it.
17685 2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17687         * textmodes/flyspell.el: Fix commenting convention.
17688         Remove unnecessary leading * in custom docstrings.
17689         (flyspell-emacs): Remove unused var.
17690         (flyspell-delete-region-overlays): Use remove-overlays.
17691         (flyspell-accept-buffer-local-defs): Use save-current-buffer.
17692         (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
17693         (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
17694         (flyspell-debug-signal-word-checked): Use with-current-buffer.
17695         (make-flyspell-overlay): Don't locally reuse a global name.
17696         (flyspell-highlight-incorrect-region)
17697         (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
17698         (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
17699         (flyspell-notify-misspell): Remove unused args `start' and `end'.
17700         (flyspell-word): Adjust call accordingly.  Use ispell-send-string.
17701         Wrap calls to accept-process-output inside with-local-quit since it's
17702         often called from a post-command-hook.
17703         (flyspell-correct-word, flyspell-auto-correct-word):
17704         Use ispell-send-string.
17705         (flyspell-xemacs-popup): Remove unused arg `event'.  Update call.
17707         * calendar/diary-lib.el (diary-list-entries): Also hide the
17708         terminating newline.
17710 2005-11-16  Carsten Dominik  <dominik@science.uva.nl>
17712         * textmodes/reftex.el (reftex-use-fonts): Remove the check for
17713         window-system, to allow fonts on tty.
17715 2005-11-17  Nick Roberts  <nickrob@snap.net.nz>
17717         * progmodes/gud.el (gud-speedbar-item-info): New function.
17718         (gud-install-speedbar-variables): Use it to display data type
17719         of watch expression as a tooltip in speedbar.
17721 2005-11-15  Luc Teirlinck  <teirllm@auburn.edu>
17723         * font-core.el (global-font-lock-mode): Add :version keyword,
17724         because default was changed.
17726         * jka-cmpr-hook.el (auto-compression-mode): Ditto.
17728         * startup.el (command-line): Use `custom-reevaluate-setting' for
17729         `file-name-shadow-mode'.
17731         * loadup.el: Preload rfn-eshadow.
17733         * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
17734         Add :version keyword.
17735         (file-name-shadow-properties, file-name-shadow-tty-properties)
17736         (file-name-shadow): Add :version keyword.
17738         * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
17739         instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
17740         in the custom-group property of the symbol frames and the fringe
17741         group got no link to its parent group frames.
17742         Doc fix.
17744 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
17746         * progmodes/gud.el (gud-stop-subjob): New function.
17747         (gud-menu-map, gud-tool-bar-map): Use it.
17749 2005-11-16  Kim F. Storm  <storm@cua.dk>
17751         * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
17752         than kill it.
17753         (gud-tool-bar-map): Likewise.  Move cont/until/finish buttons
17754         to a more useful/logical place.
17756 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
17758         * progmodes/gud.el (gud-menu-map): Make visibility of stop and
17759         go buttons complementary.
17761 2005-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17763         * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
17764         (rfn-eshadow-sifn-equal): New function.
17765         (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
17767 2005-11-15  Michael Kifer  <kifer@cs.stonybrook.edu>
17769         * viper-utils.el (viper-non-word-characters-reformed-vi):
17770         Quote `-' in string.
17772         * viper.el (viper-emacs-state-mode-list): Ensure that
17773         rcirc-mode buffers come up in Emacs state.
17775         * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
17776         operation.
17778 2005-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
17780         * term.el (term-termcap-format): Fix typos.
17781         (term-down): Fix the negative argument case.
17783 2005-11-16  Nick Roberts  <nickrob@snap.net.nz>
17785         * progmodes/gdb-ui.el: Remove face-alias left over from change on
17786         2005-08-15.
17787         (gdb-ann3): New command gud-go.
17788         (menu): Accomodate gdb-mi.el.
17789         (gdb-assembler-custom): Make buffer of selected window current
17790         so that set-window-point works.
17792         * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
17793         buttons and include new ones.
17795 2005-11-16  Kim F. Storm  <storm@cua.dk>
17797         * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
17798         (gud-menu-map): Use it.
17800 2005-11-14  Luc Teirlinck  <teirllm@auburn.edu>
17802         * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
17803         that works correctly for Custom and that does not override a user
17804         who disables it.
17806         * help-mode.el (help-make-xrefs, help-xref-on-pp)
17807         (help-xref-interned, help-follow): Make hyperlinks for variables
17808         that are unbound, but have a non-nil variable-documentation property.
17810         * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
17811         mode hook.  (It conflicted with defcustoms for some mode hooks.)
17812         Use the `variable-documentation' property to give the mode hook a
17813         docstring and expand that docstring.
17815 2005-11-14  Hrvoje Niksic  <hniksic@xemacs.org>
17817         * savehist.el (savehist-mode): Don't bother with
17818         `custom-set-minor-mode'.
17819         (savehist-coding-system): Check XEmacs version.
17820         (history-length): Declare also at run time.
17821         (savehist-mode): Don't emit a message.  Don't run the minor mode hook.
17822         Don't set the customize state.
17823         (savehist-minibuffer-hook): Special case for when
17824         minibuffer-history-variable is equal to t.
17826 2005-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
17828         * files.el (write-file): Refresh VC status.
17830         * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
17831         (mark-diary-entries, make-diary-entry): Check default-major-mode rather
17832         than fundamental-mode to see if the mode was set.
17834 2005-11-14  Romain Francoise  <romain@orebokech.com>
17836         * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
17837         dummy function in `eval-when-compile' to avoid compiler warning.
17838         Require `man' at compile time.
17840 2005-11-14  Jay Belanger  <belanger@truman.edu>
17842         * calc-alg.el (calcFunc-write-out-power): Rename it to
17843         calcFunc-powerexpand.
17844         (math-write-out-power): Rename it to math-powerexpand; have it
17845         handle negative exponents.
17846         (calc-writeoutpower): Rename it to calc-powerexpand.
17848         * calc-ext.el: Change calcFunc-writeoutpower and
17849         calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
17850         autoloads.
17851         Add calcFunc-ldiv to autoloads.
17853         * calc-arith.el (calcFunc-ldiv): New function.
17855         * calc.el (calc-left-divide): New function.
17857 2005-11-14  Juri Linkov  <juri@jurta.org>
17859         * cus-edit.el (custom-variable-prompt): Set the default value arg
17860         of completing-read.
17862         * cus-dep.el (custom-make-dependencies): Reverse the list of
17863         found dependencies.
17865 2005-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
17867         * menu-bar.el (menu-bar-options-menu): Delete "Syntax
17868         Highlighting" entry, it is on by default now.
17869         (menu-bar-options-save): Do not save global-font-lock-mode.
17871 2005-11-13  Richard M. Stallman  <rms@gnu.org>
17873         * textmodes/flyspell.el (flyspell-large-region):
17874         Call flyspell-accept-buffer-local-defs.
17876 2005-11-13  Agustin Martin  <agustin.martin@hispalinux.es>
17878         * textmodes/flyspell.el (flyspell-notify-misspell):
17879         Fix misspelling of "Misspelling".
17880         (flyspell-process-localwords): New function.
17881         (flyspell-large-region): Call flyspell-process-localwords and
17882         flyspell-delete-region-overlays.
17883         (flyspell-delete-region-overlays): New function.
17884         (flyspell-delete-all-overlays): Call that.
17886 2005-11-13  Richard M. Stallman  <rms@gnu.org>
17888         * help.el (help-for-help-internal): Improve doc of C-h a.
17889         (describe-key): Improve prompt; doc fix.
17891 2005-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
17893         * vc-svn.el (vc-svn-registered): Catch all errors.
17895         * cus-dep.el (custom-make-dependencies): Typo.
17897 2005-11-13  Michael Albinus  <michael.albinus@gmx.de>
17899         * net/tramp-util.el (top): Fix compilation warning.
17901 2005-11-13  Kim F. Storm  <storm@cua.dk>
17903         * help.el (help-for-help-internal): Fix `a' entry.  Add `d' entry.
17905 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
17907         * progmodes/gud.el (gud-menu-map): Move parentheses (again).
17908         (gud-speedbar-buttons): Match on "const char *" too.
17910         * progmodes/gdb-ui.el (gdb-var-create-handler)
17911         (gdb-var-list-children-handler): Match on "const char *" too.
17912         (gdb-var-evaluate-expression-handler): Match on empty string.
17913         (gdb-var-update-handler): Only call
17914         gdb-var-evaluate-expression-handler when required.
17916 2005-11-13  Nick Roberts  <nickrob@snap.net.nz>
17918         * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
17919         selected window.  This still doesn't work for speedbar.
17920         (gud-speedbar-buttons): Handle string expressions properly.
17922         * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
17923         (gdb-var-create-handler): Handle string expressions properly.
17924         (gdb-var-list-children-regexp, gdb-var-list-children-handler):
17925         Handle string expressions properly.  Move "type" field into regexp.
17927 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
17929         * bookmark.el (bookmark-maybe-message): New function to reduce
17930         code duplication: invokes `message' iff baud-rate is high enough.
17931         (bookmark-write-file): Use above instead of an inline conditional.
17932         (bookmark-load): Same.
17934 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
17936         * bookmark.el (bookmark-write-file): Don't visit the destination
17937         file, just write the data to it using write-region.  This is
17938         similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
17939         change to avoid visiting the file in the first place.
17941 2005-11-12  Chong Yidong  <cyd@stupidchicken.com>
17943         * hi-lock.el (hi-lock-mode): Set the default value of
17944         font-lock-defaults.
17946 2005-11-11  Luc Teirlinck  <teirllm@auburn.edu>
17948         * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
17949         arg to `file-attributes'.
17950         (find-lisp-format): The UID and GID can now be strings.
17952 2005-11-12  Kim F. Storm  <storm@cua.dk>
17954         * help.el (help-map): Bind C-h d to apropos-documentation.
17956         * simple.el (what-cursor-position): Print (EOB) instead of (100%)
17957         when point is at end-of-buffer.
17959         * apropos.el (apropos-match-face): Doc fix.
17960         (apropos-sort-by-scores): Add new choice `verbose'.
17961         (apropos-documentation-sort-by-scores): New defcustom.
17962         (apropos-pattern): Now contains the pattern entered by the user.
17963         (apropos-pattern-quoted): New defvar.
17964         (apropos-regexp): New defvar, containing the regexp corresponding
17965         to apropos-pattern.
17966         (apropos-all-words-regexp): Rename from apropos-all-regexp.
17967         (apropos-read-pattern): New defun.  Use it to read pattern arg in
17968         interactive calls; returns list of words for a word list, and
17969         string for a regexp.
17970         (apropos-parse-pattern): Rename from apropos-rewrite-regexp.  Now
17971         parses a list of words or regexp as returned by apropos-read-pattern.
17972         (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
17973         (apropos-score-doc): Return a very high score if the string
17974         entered by the user matches literally.
17975         (apropos-variable): Doc fix.  Use apropos-read-pattern.
17976         (apropos-command): Doc fix.  Use apropos-read-pattern and
17977         apropos-parse-pattern.  Call apropos-print with nosubst=t.
17978         (apropos, apropos-value): Doc fix.  Use apropos-read-pattern and
17979         apropos-parse-pattern.
17980         (apropos-documentation): Doc fix.  Use apropos-read-pattern and
17981         apropos-parse-pattern.  Locally bind apropos-sort-by-scores to
17982         apropos-documentation-sort-by-scores.  Call apropos-print with
17983         nosubst=t.
17984         (apropos-documentation-internal): Pass doc string through
17985         substitute-key-definition before adding text properties.
17986         Highlight substring matching literal user input if possible.
17987         (apropos-documentation-check-doc-file): Remove locals beg and end.
17988         Fix calculation of score (as added twice).  Pass doc string through
17989         substitute-key-definition before adding text properties.
17990         (apropos-documentation-check-elc-file): Pass doc string through
17991         substitute-key-definition before adding text properties.
17992         Highlight substring matching literal user input if possible.
17993         (apropos-print): Add new arg NOSUBST; if set, command and variable
17994         doc strings have already been passed through substitute-key-definition.
17995         Add code to handle apropos-accumulator items without score element
17996         for backwards compatibility (e.g. with woman package).
17997         Only show scores if apropos-sort-by-scores is `verbose'.
17999 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18001         * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
18002         Add jka-compr-load-suffixes to load-suffixes.
18004         * jka-compr.el: Require jka-cmpr-hook.
18005         (jka-compr-info-compress-message, jka-compr-info-compress-program)
18006         (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
18007         (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
18008         (jka-compr-info-can-append, jka-compr-info-strip-extension)
18009         (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
18010         (jka-compr-info-regexp): Remove.  Provided by jka-cmpr-hook.
18011         (jka-compr-uninstall): Remove entries from
18012         jka-compr-added-to-file-coding-system-alist after they are used.
18013         (jka-compr-error): Remove unused var `curbuf'.
18014         (jka-compr-file-local-copy): Remove unused var `notfound'.
18016 2005-11-10  Romain Francoise  <romain@orebokech.com>
18018         * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
18020 2005-11-11  Nick Roberts  <nickrob@snap.net.nz>
18022         * progmodes/gud.el (gud-menu-map): Move parentheses.
18023         (gdb): New command gud-pv.
18025 2005-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18027         * tar-mode.el: Remove spurious or unnecessary leading stars
18028         in docstrings.
18029         (tar-header-block-tokenize): Also obey default-file-name-coding-system.
18030         (tar-parse-octal-integer-safe): Use mapc.
18031         (tar-header-block-summarize): Remove unused var `ck'.
18032         (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
18033         cleared before.  Obey default-enable-multibyte-characters.
18034         Use mapconcat.  Simplify setting of tar-header-offset.
18035         (tar-mode-map): Move initialization inside delcaration.
18036         (tar-flag-deleted): Use `abs'.
18037         (tar-expunge-internal): Remove unused var `line'.
18038         (tar-expunge-internal): Don't hardcode point-min==1.
18039         (tar-expunge): Widen while doing set-buffer-multibyte.
18040         (tar-rename-entry): Use file-name-coding-system.
18041         (tar-alter-one-field): Don't hardcode point-min==1.
18042         (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
18043         (tar-pad-to-blocksize): Don't hardcode point-min==1.  Clarify the code.
18045 2005-11-10  Masatake YAMATO  <jet@gyve.org>
18047         * add-log.el (add-log-current-defun): Handle class::method
18048         notation of c++.  Fix incorrect comment.
18050 2005-11-10  Alan Mackenzie  <acm@muc.de>
18052         * help-fns.el (describe-variable): Make C-h v work when a variable
18053         has variable documentation yet is unbound.
18055 2005-11-10  Masatake YAMATO  <jet@gyve.org>
18057         * man.el (Man-highlight-references): Set an empty
18058         string to `Man-arguments' if it is nil.
18059         Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
18061 2005-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
18063         * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
18064         commenting conventions.
18066         * cus-dep.el (custom-make-dependencies): Simplify.
18067         Better follow the commenting conventions.
18069 2005-11-09  Richard M. Stallman  <rms@gnu.org>
18071         * apropos.el (apropos-pattern): Rename from apropos-regexp.
18072         (apropos-orig-pattern): Rename from apropos-orig-regexp.
18073         All uses changed.
18074         (apropos-rewrite-regexp): Doc fix.
18075         (apropos-variable, apropos-command, apropos, apropos-value):
18076         Change prompt; carry through the argument renaming.
18078 2005-11-09  Luc Teirlinck  <teirllm@auburn.edu>
18080         * find-lisp.el: Require dired.
18081         (find-lisp-find-dired-internal): Do not call
18082         `abbreviate-file-name' on DIR.
18084 2005-11-10  Nick Roberts  <nickrob@snap.net.nz>
18086         * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
18088 2005-11-09  Nick Roberts  <nickrob@snap.net.nz>
18090         * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
18091         when using the speedbar.
18092         (gdb): New command gud-pp.
18093         (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
18095 2005-11-09  Juri Linkov  <juri@jurta.org>
18097         * replace.el (occur-excluded-properties): New defcustom.
18098         (occur-1, occur-engine, occur-accumulate-lines): Use it.
18100 2005-11-08  Jay Belanger  <belanger@truman.edu>
18102         * calc/calc-units.el (math-convert-units): Replace any composite
18103         unit by its definition.
18105 2005-11-08  Lars Hansen  <larsh@soem.dk>
18107         * emacs-lisp/autoload.el (update-directory-autoloads):
18108         Add obsolete function alias.
18110 2005-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
18112         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
18113         comment-indent-function.
18114         (lisp-comment-indent): Replace by an alias for comment-indent-default.
18116         * reveal.el (reveal-post-command): Rework the handling of
18117         reveal-open-spots, so as to be more reliable.  There were several
18118         tricky corner cases where an open spot might be lost, or where
18119         a closed spot might end up on the list of open spots.
18120         Only reveal text that's ellipsised.
18122 2005-11-07  Carsten Dominik  <dominik@science.uva.nl>
18124         * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
18126 2005-11-07  John Paul Wallington  <jpw@gnu.org>
18128         * ibuffer.el (ibuffer): Search iconified frames too when
18129         getting Ibuffer buffer's window.
18131 2005-11-06  Richard M. Stallman  <rms@gnu.org>
18133         * progmodes/compile.el (compilation-internal-error-properties):
18134         save-excursion around the computation of MARKER.
18136 2005-11-06  Piet van Oostrum  <piet@cs.uu.nl>
18138         * textmodes/flyspell.el (flyspell-external-point-words):
18139         flyspell-get-word returns a list, not just a string.
18141 2005-11-06  John Paul Wallington  <jpw@pobox.com>
18143         * ibuffer.el (ibuffer): Search all visible frames when getting
18144         Ibuffer buffer's window.
18146 2005-11-07  Masatake YAMATO  <jet@gyve.org>
18148         * man.el (Man-reference-regexp): Accept spaces between
18149         `Man-name-regexp' and `Man-section-regexp'.
18150         (Man-apropos-regexp): New variable.
18151         (Man-abstract-xref-man-page): Use value for `Man-target-string'
18152         if available.
18153         (Man-highlight-references, Man-highlight-references0):
18154         Handle the case when `Man-arguments' includes "-k".
18155         (Man-highlight-references0): Rename the argument `TARGET-POS' to
18156         `TARGET'. `TARGET' can be a number, function or nil.
18158 2005-11-06  Nick Roberts  <nickrob@snap.net.nz>
18160         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
18161         (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
18162         (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
18163         (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
18164         (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
18165         (gdb-send-item): Use buffer-local-value and simplify.
18167 2005-11-05  Luc Teirlinck  <teirllm@auburn.edu>
18169         * startup.el (command-line): Use `custom-reevaluate-setting' for
18170         `global-font-lock-mode'.
18172         * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
18173         by default, except in batch mode or when the -D option is given.
18175         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
18176         specified keyword args on to `define-minor-mode'.  Update docstring.
18178 2005-11-05  Romain Francoise  <romain@orebokech.com>
18180         * replace.el (occur-engine): Add marker at end of line, too.
18182 2005-11-04  Ken Manheimer  <ken.manheimer@gmail.com>
18184         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
18185         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18186         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18187         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18188         argument to all these routines, so the passphrase can be managed
18189         externally and passed in to the system.
18190         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
18191         pgg-add-passphrase-to-cache function.
18193         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
18194         (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
18195         (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
18196         (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
18197         argument to all these routines, so the passphrase can be managed
18198         externally and passed in to the system.
18199         (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
18200         function.
18202 2005-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
18204         * font-lock.el: Don't deal with font-lock-face-attributes here,
18205         move the code ...
18207         * startup.el (command-line): ... here.  Use face-spec-set instead
18208         of custom-declare-face.
18210         * faces.el (face-spec-set): Reset the face if spec is not nil.
18212 2005-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18214         * newcomment.el (comment-region-internal): Box more tightly in the
18215         common case where there's no TAB in the boxed text.
18217 2005-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
18219         * info.el (info-tool-bar-map): Use images prev-node, next-node and
18220         up-node.
18222 2005-11-04  Ulf Jasper  <ulf.jasper@web.de>
18224         * newsticker.el: Commentary updated.  Code formatting changed.
18225         (newsticker-version): Change to "1.9".
18226         (newsticker, newsticker-feed): Doc fix.
18227         (newsticker-url-list): Doc fix.  Add option "Weekly".
18228         (newsticker-retrieval-interval): Add option "Weekly".
18229         (newsticker-headline-processing): Doc fix.
18230         (newsticker-auto-mark-filter): Remove.
18231         (newsticker-auto-mark-filter-list): New.
18232         (newsticker-layout, newsticker-sort-method): Doc fix.
18233         (newsticker-hide-old-items-in-newsticker-buffer)
18234         (newsticker-heading-format, newsticker-item-format)
18235         (newsticker-desc-format): Doc fix.
18236         (newsticker-show-all-rss-elements): Remove.
18237         (newsticker-show-all-news-elements): New.
18238         (newsticker-faces, newsticker-ticker): Doc fix.
18239         (remove-from-invisibility-spec): Code formatting.
18240         (newsticker--process-ids): New.
18241         (newsticker-mode): Doc fix.
18242         (newsticker-mode): Change mode-line-format.
18243         (newsticker-start): Remove debug output.
18244         (newsticker-start-ticker): Doc fix.  Add autoload cookie.
18245         (newsticker-w3m-show-inline-images): Code formatting.
18246         (newsticker-next-item): Call `force-mode-line-update'.
18247         (newsticker-previous-item): Call `force-mode-line-update'.
18248         (newsticker-next-feed): Call `force-mode-line-update'.
18249         (newsticker-previous-feed): Call `force-mode-line-update'.
18250         (newsticker-mark-all-items-at-point-as-read): Code formatting.
18251         (newsticker-show-old-items): Do not show descs.
18252         (newsticker-hide-entry): Hide too much.
18253         (newsticker-hide-entry, newsticker-show-entry)
18254         (newsticker-toggle-auto-narrow-to-feed): Code formatting.
18255         (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
18256         (newsticker-toggle-auto-narrow-to-item): Code formatting.
18257         (newsticker-set-auto-narrow-to-item): Update buffer immediately.
18258         (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
18259         (newsticker-get-news): Call `force-mode-line-update'.
18260         Collect process ids.
18261         (newsticker--sentinel): Change coding system handling.
18262         Move image retrieval to new functions newsticker--get-logo-url-*.
18263         Move feed parsing to new functions newsticker--parse-*.
18264         Update list of process ids.
18265         (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
18266         (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
18267         (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
18268         (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
18269         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
18270         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
18271         (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
18272         (newsticker--decode-coding-string): Remove.
18273         (newsticker--decode-numeric-entities): Check input.  Format code.
18274         (newsticker--remove-whitespace): Check input.
18275         (newsticker--do-forget-preformatted): Doc fix.
18276         (newsticker--decode-rfc822-date): Allow for missing time.
18277         (newsticker--update-process-ids): New.
18278         (newsticker--image-sentinel): Change comment.
18279         (newsticker--image-read): Change error message.
18280         (newsticker--imenu-goto): Doc fix.  Show headline title.
18281         (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
18282         (newsticker--buffer-do-insert-text): Clean whitespace in
18283         html-rendered headline title.  Code formatting.
18284         Call `newsticker--buffer-print-extra-elements'.
18285         (newsticker--buffer-print-extra-element): Remove.
18286         (newsticker--buffer-print-extra-elements): New.
18287         (newsticker--buffer-do-print-extra-element): New.
18288         (newsticker--buffer-insert-enclosure): Doc fix.  Use MBytes for
18289         large sizes.
18290         (newsticker--run-auto-mark-filter)
18291         (newsticker--do-run-auto-mark-filter):
18292         Use `newsticker-auto-mark-filter-list'.
18294 2005-11-04  Ryan Yeske  <rcyeske@gmail.com>
18296         * net/rcirc.el: Use split-string OMIT-NULLS argument.
18297         (rcirc-print): Force redisplay before running hooks.  Do long
18298         buffer truncation after making new text read-only.  Deal with nil
18299         text when decoding strings.  If TARGET is nil, use either the
18300         currently selected buffer, if it is an rcirc buffer and of the
18301         same process or the process buffer.
18302         (rcirc-mode): Remove header-line.  Recompute short buffer names.
18303         Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
18304         (rcirc-short-buffer-name): Add variable.
18305         (rcirc-kill-buffer-hook): Recompute short buffer names.
18306         Remove nick from private channel.
18307         (rcirc-send-input): Send command text to current-buffer.
18308         Don't clear overlay arrow here.
18309         (rcirc-short-buffer-name): Return a short buffer name.
18310         (rcirc-update-short-buffer-names, rcirc-abbreviate)
18311         (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
18312         buffer-name abbreviations.
18313         (rcirc-kill-buffer-hook-1): Split to make debugging easier.
18314         Do not touch nick-table when killing a parted channel.
18315         (rcirc-window-configuration-change): Rename from rcirc-update-activity.
18316         Clear arrow from current buffer if it is now hidden.
18317         (rcirc-current-buffer): Add variable.
18318         (rcirc-my-nick, rcirc-other-nick, rcirc-server)
18319         (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
18320         Remove -face from names.
18321         (rcirc-update-activity-string): Print "DND" when globally ignoring
18322         activity.
18323         (rcirc-ignore-buffer-activity-flag): Rename from
18324         rcirc-ignore-channel-activity.
18325         (rcirc-ignore-all-activity-flag): Doc fix.
18326         (rcirc-channels): Remove variable.
18327         (rcirc-kill-buffer-hook):
18328         (rcirc-get-buffer-create): Add nick to private channel.
18329         (rcirc-multiline-edit-submit): Remove tabs.
18330         (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
18331         folded.
18332         (rcirc-remove-nick-channel): Bug fix.
18333         (rcirc-toggle-ignore-buffer-activity): Rename from
18334         rcirc-toggle-ignore-channel-activity.
18335         (rcirc-record-activity): Add buffers to the front of the list.
18336         (rcirc-update-activity): Remove killed buffers from list.
18337         (rcirc-process-server-response-1): Remove last argument if it is
18338         null before calling handler.
18339         (rcirc): Add "rcirc" defcustom prefix.
18340         (rcirc-prompt): Simplify default prompt.
18341         Use custom-initialize-default.
18342         (rcirc-private-chats): Remove variable.
18343         (rcirc-prompt): Change initialization.
18344         (rcirc-version): Remove function.
18345         (rcirc-id-string): Add constant.
18346         (rcirc-last-buffer): Remove variable.
18347         (rcirc-buffer-alist): Add variable.
18348         (rcirc-connect): Update variable setup.
18349         (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
18350         (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
18351         default.
18352         (rcirc-handler-generic): Trigger activity.
18353         (rcirc-send-message): Create the buffor of the target.
18354         (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
18355         (rcirc-get-buffer): Just return nil if there is no matching buffer.
18356         (rcirc-multiline-edit-cancel): Remove function.
18357         (rcirc-set-last-buffer): Remove function.
18358         (rcirc-get-any-buffer): Add function.
18359         (rcirc-join-channels): Don't print /join text.
18360         (rcirc-toggle-ignore-channel-activity): Add and update echo area
18361         messages.
18362         (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
18363         (rcirc-handler-NOTICE): Recognize CTCP responses.
18364         (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
18365         constructing TOPIC string for buffers we are not JOINed.
18366         (rcirc-handler-CTCP-response): Add handler.
18367         (rcirc-multiline-edit-submit): Restore the window-configuration
18368         before adjusting point.
18369         (rcirc): Add customization group.
18370         (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
18371         (rcirc-user-full-name, rcirc-startup-channels-alist)
18372         (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
18373         (rcirc-ignore-all-activity-flag, rcirc-time-format)
18374         (rcirc-input-ring-size, rcirc-read-only-flag)
18375         (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
18376         (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
18377         Change defvar to defcustom.
18378         (rcirc-update-prompt): Add optional ALL arg, which will update
18379         prompts in all rcirc buffers.  Regexp quote replacement text.
18380         (rcirc-fill-column): Accept frame-width as a value.
18381         (rcirc-set-changed): Add function.
18382         (rcirc-next-active-buffer): Write more meaningful messages.
18383         (rcirc-faces): Add customization group.
18384         (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
18385         (rcirc-nick-in-message-face, rcirc-prompt-face)
18386         (rcirc-mode-line-nick-face): Move into rcirc-faces group.
18387         (with-rcirc-process-buffer): Move before first usage.
18388         (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
18389         (rcirc-debug-flag): Rename from `rcirc-log-p'.
18390         (rcirc-debug): Rename from `rcirc-log'.
18391         (rcirc-format-response-string): Do not print `-' chars for a
18392         NOTICE with no sender.  Simplify output of server responses.
18394 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
18396         (rcirc-browse-url-map, rcirc-browse-url-at-point)
18397         (rcirc-browse-url-at-mouse, rcirc-mangle-text):
18398         Make urls mouse and RET clickable.
18400 2005-11-04  Henrik Enberg  <henrik.enberg@telia.com>
18402         * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
18404 2005-11-04  Ken Manheimer  <ken.manheimer@gmail.com>
18406         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
18407         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18408         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18409         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18410         argument to all these routines, so the passphrase can be managed
18411         externally and passed in to the system.
18412         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
18413         pgg-add-passphrase-to-cache function.
18415         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
18416         (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
18417         (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
18418         (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
18419         argument to all these routines, so the passphrase can be managed
18420         externally and passed in to the system.
18421         (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
18422         function.
18424 2005-11-04  Edward O'Connor  <hober0@gmail.com>  (tiny change)
18426         * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
18427         from goto-address-url-regexp.
18429 2005-11-04  Carsten Dominik  <dominik@science.uva.nl>
18431         * textmodes/org.el (org-read-date, org-goto-calendar)
18432         (org-recenter-calendar, org-agenda-goto-calendar):
18433         Temporarily clear `calendar-move-hook'.
18435 2005-11-04  Michael Kifer  <kifer@cs.stonybrook.edu>
18437         * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
18438         merging.
18440         * ediff-util.el (ediff-previous-difference): Don't skip regions that
18441         have merge clashes.
18443 2005-11-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
18445         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
18446         Undo previous change.
18448         * startup.el (command-line): Use `custom-reevaluate-setting' for
18449         mouse-wheel-down-event and mouse-wheel-up-event.  Don't call
18450         tty-register-default-colors on Mac.
18452 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
18454         * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
18455         (gdb-buffer-type): Make it automatically buffer local...
18456         (gdb-get-create-buffer): ...and set it accordingly.
18457         (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
18458         actually work.
18460 2005-11-03  Dan Nicolaescu  <dann@ics.uci.edu>
18462         * font-lock.el (font-lock-warning-face): Use the more vivid red1,
18463         not red.
18465 2005-11-04  Nick Roberts  <nickrob@snap.net.nz>
18467         * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
18468         case GUD buffer is not visible.
18469         (gdb-goto-breakpoint): Try to force display in source buffer.
18470         (gdb-frame-gdb-buffer): Copy other similar functions.
18471         (gdb-restore-windows): Don't display source if not asked for.
18472         (gdb-assembler-buffer-name): Don't capitalise.
18474 2005-11-03  Richard M. Stallman  <rms@gnu.org>
18476         * wid-edit.el (key-sequence): New widget type.
18478         * simple.el (set-mark-command-repeat-pop): New variable.
18479         (set-mark-command): Only interpret plan C-@ after a pop as a pop
18480         if set-mark-command-repeat-pop is true.
18482         * info.el (Info-fontify-node): Don't display extra "see" if there
18483         already is one here.
18485         * mouse.el: Fix special handling of DEL after dragging a region:
18486         (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
18487         (mouse-region-delete-keys): Change to defcustom.  Add [backspace].
18489         * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
18491         * textmodes/ispell.el (ispell-command-loop): Change `i' description
18492         not to assume it pertains to an affix.
18494         * textmodes/flyspell.el (flyspell-post-command-hook):
18495         Bind deactivate-mark to prevent deactivation.
18497 2005-11-03  Lars Hansen  <larsh@soem.dk>
18499         * dired-x.el: Add menu bindings for dired-do-find-marked-files,
18500         dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
18501         dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
18503 2005-11-03  Romain Francoise  <romain@orebokech.com>
18505         * net/eudcb-mab.el: Now part of GNU Emacs.  Update FSF's address.
18506         Update copyright years.
18508 2005-11-03  Sam Steingold  <sds@gnu.org>
18510         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
18511         Use system-type instead of window-system because window-system is not
18512         correctly defined during loadup.
18514 2005-11-02  Mark A. Hershberger  <mah@everybody.org>
18516         * xml.el (xml-syntax-table): Allow xml.el to compile in XEmacs.
18517         (xml-parse-tag): Join strings separated by a comment properly.
18519 2005-11-02  Andreas Schwab  <schwab@suse.de>
18521         * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
18523 2005-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18525         * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
18526         (byte-optimize-pure-func): Quote the eval'd value.
18528         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
18529         Rename from perl-font-lock-syntactic-face-function.
18530         Change the calling convention so it can be used as a font-lock MATCHER.
18531         Do the parse-partial-sexp loop outselves.
18532         (perl-font-lock-syntactic-keywords): Use it.
18533         (perl-mode): Don't set font-lock-syntactic-face-function any more.
18535 2005-11-02  Nick Roberts  <nickrob@snap.net.nz>
18537         * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
18538         disassembly buffer too.
18539         (gdb-exited): Remove overlay arrows when execution has finished.
18540         (gdb-info-frames-custom, gdb-info-threads-custom)
18541         (gdb-info-registers-custom): Don't add inappropriate text
18542         properties if inferior is not active.
18544 2005-11-02  Glenn Morris  <rgm@gnu.org>
18546         * progmodes/fortran.el (fortran-blink-match):
18547         Use `blink-matching-delay'.
18549 2005-11-02  John Mongan  <jmongan@mccammon.ucsd.edu>  (tiny change)
18551         * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
18553 2005-11-02  Lars Hansen  <larsh@soem.dk>
18555         * net/tramp.el (tramp-action-out-of-band): Handle scp message
18556         "Permission denied".
18558 2005-11-01  Richard M. Stallman  <rms@gnu.org>
18560         * textmodes/flyspell.el (flyspell-external-point-words):
18561         Pass nil to flyspell-get-word.
18563 2005-11-02  Kim F. Storm  <storm@cua.dk>
18565         * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
18566         item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
18568 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18570         * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
18571         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
18572         (calendar-mouse-print-dates): Add optional `event' argument.
18573         Update interactive-spec.
18574         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
18575         Use `calendar-event-to-date' instead of `event'.
18577 2005-11-02  Masatake YAMATO  <jet@gyve.org>
18579         * progmodes/ld-script.el (ld-script-builtins):
18580         Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
18581         "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
18582         (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
18584 2005-11-01  Romain Francoise  <romain@orebokech.com>
18586         * vc-sccs.el: Update copyright year.
18587         * ezimage.el: Likewise.
18589 2005-11-01  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>  (tiny change)
18591         * info.el (Info-fontify-node): Use `string-width' for fontifying
18592         underlined titles.
18594 2005-11-01  Juri Linkov  <juri@jurta.org>
18596         * info.el (Info-fontify-node): Downcase node header keywords Node,
18597         Prev, Next, Up before comparison.
18598         (Info-history): Insert absolute directory name, and put invisible
18599         property on it.
18601 2005-11-01  Juri Linkov  <juri@jurta.org>
18603         * info.el (Info-file-supports-index-cookies): New variable.
18604         (Info-find-node-2): Check makeinfo version for index cookie support.
18605         (Info-index-nodes): Search for nodes with index cookies only when
18606         Info-file-supports-index-cookies is t.  Otherwise, search nodes
18607         with "Index" in the node name.
18608         (Info-index-node): Search index cookie in the current node only when
18609         Info-file-supports-index-cookies is t.  Otherwise, check the word
18610         "Index" in the node name.
18611         (Info-find-emacs-command-nodes): Remove code that searches nodes
18612         with "Index" node name in the top menu.
18614 2005-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18616         * progmodes/scheme.el (scheme-mode-variables): Use the default
18617         comment-indent-function.
18619         * faces.el (face-attribute): Handle the case where a face inherits from
18620         a non-existent face.
18622         * simple.el (eval-expression-print-format): Use lisp-readable syntax
18623         for octal and hexa output, and merge the char into the paren.
18624         (kill-new): Use push.
18625         (copy-to-buffer): Use with-current-buffer.
18626         (completion-setup-function): Move code in loop to remove redundancy.
18627         (minibuffer-local-must-match-map): Don't add bindings that duplicate
18628         those inherited from minibuffer-local-completion-map.
18630         * savehist.el (savehist-mode) <defcustom>:
18631         Use custom-set-minor-mode if available.
18632         (savehist-mode) <defun>: Run the minor mode hook, set the custom state
18633         and emit a message if applicable.
18635 2005-11-01  Hrvoje Niksic  <hniksic@xemacs.org>
18637         * savehist.el: Sync up to version 19.
18638         (savehist-mode): New minor mode.
18639         (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
18640         (savehist-length): Remove (use history-length instead).
18641         (savehist-file-modes): Rename from savehist-modes.
18642         (savehist-save-hook, savehist-loaded): New vars.
18643         (savehist-load): Use savehist-mode.  Try to smooth up transition from
18644         old format to new format.
18645         (savehist-install): Allow savehist-autosave-interval to be nil.
18646         (savehist-save): Run the new hook.  Be more careful to only trim the
18647         history variables.
18648         (savehist-trim-history): New fun.  Replaces savehist-process-for-saving.
18649         (savehist-printable): Print into a buffer rather than char-by-char.
18651 2005-11-01  John Wiegley  <johnw@newartisans.com>
18653         * iswitchb.el (iswitchb-define-mode-map): Re-enable the
18654         toggle-ignore keybinding (C-a).  The author said it had been
18655         disabled much earlier due to a possible incompatibility, but after
18656         many months of usage I have encountered no problems (and it is a
18657         rather useful option, especially for switching to " *temp*").
18659         * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
18660         support for OS/X's AddressBook, by calling out to the open source
18661         program "contacts" (installable through Fink).
18663         * net/eudc.el (eudc-expand-inline): If the
18664         `eudc-multiple-match-handling-method' is set to `all', delete the
18665         query string before inserting the query result.
18667         * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
18668         flag, to prevent Eshell from using the system ls when
18669         `eshell-ls-insert-directory' is in used.
18670         (eshell-ls-insert-directory): Disable font-lock in directory
18671         buffer so that Eshell's own fontification is seen.  This broke
18672         recently due to changes in font-lock, so this goes back to version
18673         21 behavior.
18675 2005-11-01  Nick Roberts  <nickrob@snap.net.nz>
18677         * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
18678         (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
18679         (gdb-many-windows): Doc fix.
18681 2005-10-31  Romain Francoise  <romain@orebokech.com>
18683         * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
18685 2005-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
18687         * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
18688         that global-font-lock-mode can be enabled by default.
18690         * font-lock.el (font-lock-keywords, font-lock-mode-internal)
18691         (font-lock-add-keywords, font-lock-remove-keywords)
18692         (font-lock-fontify-buffer): Remove autoload cookies.
18694         * jit-lock.el (jit-lock-register): Likewise.
18696         * emacs-lisp/syntax.el (syntax-ppss): Likewise.
18698 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
18700         * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
18701         intact if there is no gud-comint-buffer.
18703 2005-10-31  Luc Teirlinck  <teirllm@auburn.edu>
18705         * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
18706         old prompt comint-prompt-read-only is t and GDB commands are
18707         issued from tool bar etc.
18709 2005-10-31  Masatake YAMATO  <jet@gyve.org>
18711         * vc.el (vc-directory-exclusion-list): Add "{arch}".
18713 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
18715         * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
18716         (thumbs-thumbsdir): Make .emacs.d if it does not exist.
18718 2005-10-30  Michael Albinus  <michael.albinus@gmx.de>
18720         * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
18721         starting at beginning of line.  Fontification is messed up when
18722         `open-paren-in-column-0-is-defun-start' set to t.
18723         Reported by John Paul Wallington <jpw@pobox.com>.
18725 2005-10-30  Luc Teirlinck  <teirllm@auburn.edu>
18727         * comint.el (comint-send-input): Call `comint-update-fence' when
18728         `comint-process-echoes' and `comint-prompt-read-only' are both
18729         non-nil, to avoid leftover read-only newline.
18731 2005-10-30  Richard M. Stallman  <rms@gnu.org>
18733         * textmodes/flyspell.el (flyspell-external-point-words):
18734         Detect when WORD can't be checked properly because
18735         flyspell-get-word finds just part of it, and move on.
18737         * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
18738         boundarychar for Polish.
18739         (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
18740         (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
18742 2005-10-31  Nick Roberts  <nickrob@snap.net.nz>
18744         * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
18745         (gdb-registers-font-lock-keywords): Delete.
18746         (gdb-registers-mode): Don't fontify.
18747         (gdb-info-registers-custom): Use text properties instead as, in
18748         future, changed register values will use font-lock-warning-face.
18749         (gdb-local-font-lock-keywords): Rename to...
18750         (gdb-locals-font-lock-keywords): ...for consistency.
18752 2005-10-30  Andre Spiegel  <spiegel@gnu.org>
18754         * vc.el (vc-switch-backend): Better error message if the buffer is
18755         not visiting a file under version control.
18757         * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
18759 2005-10-29  Chong Yidong  <cyd@stupidchicken.com>
18761         * startup.el (command-line): Use ~/.emacs.d/init.el instead of
18762         ~/.emacs.d/.emacs.
18764 2005-10-29  Richard M. Stallman  <rms@gnu.org>
18766         * replace.el (occur-mode-mouse-goto): Always go to other window.
18767         (occur-mode-goto-occurrence): Always switch in same window.
18769         * simple.el (undo): Display message at end, not at start.
18771         * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
18772         New arg REUSE-CELL.
18773         (cancel-timer-internal): New function.
18774         (timer-event-handler): Use cancel-timer-internal,
18775         and pass the cell it returns to timer-activate...
18777         * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
18778         (jit-lock-deferred-fontify, jit-lock-context-fontify)
18779         (jit-lock-after-change): Test memory-full.
18781 2005-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
18783         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
18784         part of the decoded armor to find the key-identifier.
18785         (pgg-gpg-lookup-key-owner): New function to return the
18786         human-readable identifier of a key owner.
18787         (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
18788         key itself.
18789         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
18790         the key value) if we have a key and can match it against a secret
18791         key.  Also, added a note pointing out fact that the prompt only
18792         indicates the first matching key.
18794         * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
18795         pgg-decrypt-region.
18796         (pgg-pending-timers): A new hash for tracking the passphrase cache
18797         timers, so that new ones supercede old ones.
18798         (pgg-add-passphrase-to-cache): Rename from
18799         `pgg-add-passphrase-cache' to reduce confusion (all callers
18800         changed).  Modified to cancel old timers when new ones are added.
18801         (pgg-remove-passphrase-from-cache): Rename from
18802         `pgg-remove-passphrase-cache' to reduce confusion (all callers
18803         changed).  Modified to cancel old timers when their keys are
18804         removed from the cache.
18805         (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
18806         XEmacs, an indirection to delete-itimer.
18807         (pgg-read-passphrase-from-cache, pgg-read-passphrase):
18808         Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
18809         users can only check cache without risk of prompting.  Correct bug in
18810         notruncate behavior.
18811         (pgg-read-passphrase-from-cache, pgg-read-passphrase)
18812         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
18813         Add informative docstrings.
18814         (pgg-decrypt): Convey provided passphrase in subordinate call to
18815         pgg-decrypt-region.
18817         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
18818         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
18819         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
18820         `passphrase' argument, so the passphrase can be managed externally
18821         and then passed in to the system.
18823         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
18824         (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
18825         so the passphrase cache can be used reliably with identifiers
18826         besides a pgp packet's key id.
18828         * pgg-gpg.el (pgg-pgp-encrypt-region)
18829         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18830         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18831         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18832         argument to all these routines, so the passphrase can be managed
18833         externally and passed in to the system.
18835         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
18836         `notruncate' argument, so the passphrase cache can be used
18837         reliably with identifiers besides a pgp packet's key id.
18839 2005-10-29  Sascha Wilde  <swilde@sha-bang.de>
18841         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
18842         symmetric encryption.
18843         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
18844         encrypted session key.
18845         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
18846         message ask for the passphrase in a proper way.
18848         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
18849         New user commands for symmetric encryption.
18851 2005-10-29  Roland Winkler  <roland.winkler@physik.uni-erlangen.de>
18853         * textmodes/conf-mode.el (conf-assignment-sign)
18854         (conf-assignment-regexp): Fix docstrings.
18855         (conf-mode-initialize): New function.
18856         (conf-mode): Remove optional args.  Use delay-mode-hooks to
18857         recognize recursive calls.
18858         (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
18859         (conf-space-mode, conf-colon-mode, conf-ppd-mode)
18860         (conf-xdefaults-mode): Use define-derived-mode and
18861         conf-mode-initialize.
18863 2005-10-29  Romain Francoise  <romain@orebokech.com>
18865         * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
18867 2005-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
18869         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
18870         part of the decoded armor to find the key-identifier.
18871         (pgg-gpg-lookup-key-owner): New function to return the
18872         human-readable identifier of a key owner.
18873         (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
18874         key itself.
18875         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
18876         the key value) if we have a key and can match it against a secret
18877         key.  Also, added a note pointing out fact that the prompt only
18878         indicates the first matching key.
18880         * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
18881         pgg-decrypt-region.
18882         (pgg-pending-timers): A new hash for tracking the passphrase cache
18883         timers, so that new ones supercede old ones.
18884         (pgg-add-passphrase-to-cache): Rename from
18885         `pgg-add-passphrase-cache' to reduce confusion (all callers
18886         changed).  Modified to cancel old timers when new ones are added.
18887         (pgg-remove-passphrase-from-cache): Rename from
18888         `pgg-remove-passphrase-cache' to reduce confusion (all callers
18889         changed).  Modified to cancel old timers when their keys are
18890         removed from the cache.
18891         (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
18892         XEmacs, an indirection to delete-itimer.
18893         (pgg-read-passphrase-from-cache, pgg-read-passphrase):
18894         Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
18895         users can only check cache without risk of prompting.  Correct bug in
18896         notruncate behavior.
18897         (pgg-read-passphrase-from-cache, pgg-read-passphrase)
18898         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
18899         Add informative docstrings.
18900         (pgg-decrypt): Convey provided passphrase in subordinate call to
18901         pgg-decrypt-region.
18903 2005-10-20  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
18905         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
18906         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
18907         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
18908         `passphrase' argument, so the passphrase can be managed externally
18909         and then passed in to the system.
18911         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
18912         (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
18913         so the passphrase cache can be used reliably with identifiers
18914         besides a pgp packet's key id.
18916         * pgg-gpg.el (pgg-pgp-encrypt-region)
18917         (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
18918         (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
18919         (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
18920         argument to all these routines, so the passphrase can be managed
18921         externally and passed in to the system.
18923         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
18924         `notruncate' argument, so the passphrase cache can be used
18925         reliably with identifiers besides a pgp packet's key id.
18927 2005-10-29  Sascha Wilde  <swilde@sha-bang.de>
18929         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
18930         symmetric encryption.
18931         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
18932         encrypted session key.
18933         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
18934         message ask for the passphrase in a proper way.
18936         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
18937         New user commands for symmetric encryption.
18939 2005-10-28  Bill Wohler  <wohler@newt.com>
18941         * help-mode.el (help-url): New button type.  Calls browse-url.
18942         (help-xref-url-regexp): New regexp to recognize URLs in docstring.
18943         Similar to Info nodes: URL `url'.
18944         (help-make-xrefs): Create help-url buttons for
18945         help-xref-url-regexp matches.
18947 2005-10-29  Nick Roberts  <nickrob@snap.net.nz>
18949         * tool-bar.el (tool-bar-add-item-from-menu)
18950         (tool-bar-local-item-from-menu): Fix doc strings.
18952 2005-10-28  Romain Francoise  <romain@orebokech.com>
18954         * ldefs-boot.el: Update.
18956         * subr.el (locate-library): Move from help-fns.el.
18957         * help-fns.el (locate-library): Move to subr.el.
18959 2005-10-28  Richard M. Stallman  <rms@gnu.org>
18961         * net/tramp.el (tramp-completion-mode): defvar moved up.
18963         * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
18965         * tool-bar.el (tool-bar-mode): Delete autoload cookie.
18967         * files.el (find-file-noselect): Use %d to format large file size.
18969         * bindings.el (mode-line-format): Add %e.
18971         * loadup.el ("facemenu"): Load unconditionally.
18972         ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
18973         ("x-dnd"): Load, when appropriate.
18975         * startup.el (command-line): Call before-init-hook earlier.
18976         Warn about some bad characters in -u user name.
18978         * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
18979         (flyspell-external-point-words): Error if misspelled word is not found.
18980         Set flyspell-large-region-beg at end of word.
18982 2005-10-28  Andreas Schwab  <schwab@suse.de>
18984         * view.el (View-revert-buffer-scroll-page-forward):
18985         Use view-page-size-default.
18987 2005-10-28  Juri Linkov  <juri@jurta.org>
18989         * international/quail.el (quail-get-current-str): Translate last
18990         raw character for deterministic input methods.
18992 2005-10-27  Jay Belanger  <belanger@truman.edu>
18994         * calc/calc-ext.el: Add functions to autoloads.
18995         (math-identity-matrix-p, math-ident-row-p): New functions.
18997         * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
18998         multiplication by an identity matrix; don't turn multiplication by
18999         an inverse matrix into division.
19000         (math-div-symbol-fancy): Replace division by matrices with
19001         multiplication by inverse.
19003         * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
19005         * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
19006         (calc-writeoutpower): New functions.
19008 2005-10-27  Romain Francoise  <romain@orebokech.com>
19010         * replace.el (occur-engine): Include colon in mouse-face highlight.
19012         * dired-x.el: Change Maintainer field.
19014 2005-10-26  Chong Yidong  <cyd@stupidchicken.com>
19016         * longlines.el (longlines-mode): Bind after-change-functions to
19017         nil during initial decoding and final encoding.
19019 2005-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
19021         * term.el (term-emulate-terminal, term-handle-colors-array)
19022         (term-handle-ansi-escape): Specify the terminfo capabilities
19023         implemented.
19025 2005-10-26  Richard M. Stallman  <rms@gnu.org>
19027         * info.el (Info-fontify-node): Fix detection of sentence-break
19028         before *Note.
19030 2005-10-26  Romain Francoise  <romain@orebokech.com>
19032         * smerge-mode.el: Add `tools' to file keywords.
19034 2005-10-26  Nick Roberts  <nickrob@snap.net.nz>
19036         * progmodes/gud.el (gud-menu-map): Only display gud-until icon
19037         when the fringe is not available.
19039         * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
19040         (def-gdb-auto-update-trigger): Simplify construction.
19041         (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
19042         def-gdb-auto-updated-buffer as gdb-info-locals-handler is
19043         defined explicitly.
19044         (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
19045         def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
19046         defined explicitly.
19047         (gdb-info-locals-custom): Remove as it's a no-op.
19049 2005-10-25  Chong Yidong  <cyd@stupidchicken.com>
19051         * longlines.el (longlines-mode): Remove narrowing before
19052         performing the initial decoding or final encoding.
19054 2005-10-25  Romain Francoise  <romain@orebokech.com>
19056         * emacs-lisp/find-func.el (find-library-name): Also strip
19057         extension if library name ends in .el, to take advantage of
19058         `find-library-suffixes'.
19060 2005-10-25  Richard M. Stallman  <rms@gnu.org>
19062         * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
19064 2005-10-25  Juri Linkov  <juri@jurta.org>
19066         * textmodes/texinfo.el (texinfo-mode): Change charset of one
19067         quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
19069 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19071         * play/blackbox.el (blackbox-mode-map): Move init into declaration.
19072         (blackbox-redefine-key): Add argument `map'.
19074         * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
19075         regions when moving the jit-lock-context-unfontify-pos boundary.
19077 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19079         * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
19081 2005-10-25  Masatake YAMATO  <jet@gyve.org>
19083         * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
19085 2005-10-25  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>
19087         * play/blackbox.el (blackbox-redefine-key): New function.
19088         (blackbox-mode-map): Use it to remap existing bindings for cursor
19089         motion instead of binding literal keys.
19091 2005-10-25  Glenn Morris  <rgm@gnu.org>
19093         * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
19094         diary does not end in a newline.  Do not assume a blank line at
19095         the start of the diary file.
19097 2005-10-25  Kenichi Handa  <handa@m17n.org>
19099         * international/quail.el (quail-translate-key): If the input
19100         method is deterministic and failed to handle the last key, restart
19101         the key handling loop from an appropriate key.
19103 2005-10-25  Michael Albinus  <michael.albinus@gmx.de>
19105         * vc.el (vc-dired-mode): Extend comment for binding of
19106         `directory-listing-before-filename-regexp'.
19108 2005-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19110         * textmodes/texinfo.el (texinfo-mode):
19111         * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
19112         not to unnecessarily expose emacs-mule's internal char codes.
19114 2005-10-25  Nick Roberts  <nickrob@snap.net.nz>
19116         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
19117         Display hand pointer and help-echo on disabled icon too.
19118         (gdb-mouse-until): New function.
19119         (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
19121 2005-10-24  Chong Yidong  <cyd@stupidchicken.com>
19123         * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
19124         with 2005-10-23 change to doctor.el.
19126         * finder.el (finder-mode-map): Add follow-link binding.
19128 2005-10-25  Kim F. Storm  <storm@cua.dk>
19130         * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
19131         to gdb-mouse-toggle-breakpoint-fringe.
19132         (gdb-mouse-toggle-breakpoint-margin): Rename from
19133         gdb-mouse-toggle-breakpoint.  Fix doc.
19134         (gdb-mouse-toggle-breakpoint-fringe): New defun.
19135         (gdb-put-string): Add optional SPROPS arg.  Add props to string.
19136         (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
19137         string properties also for fringe breakpoint bitmaps.
19139 2005-10-24  Carsten Dominik  <dominik@science.uva.nl>
19141         * textmodes/org.el (org-start-icalendar-file): Fix format form.
19143 2005-10-25  Masatake YAMATO  <jet@gyve.org>
19145         * simple.el (completion-common-substring):
19146         Use `completion-common-substring' prior to `completion-base-size'.
19148 2005-10-24  Hrvoje Niksic  <hniksic@xemacs.org>
19150         * savehist.el: Require CL while compiling.
19151         (savehist-history-variables): Remove.
19152         (savehist-save-minibuffer-history, savehist-additional-variables)
19153         (savehist-minibuffer-history-variables): New vars.
19154         (savehist-save): Use them.
19155         (savehist-uninstall, savehist-minibuffer-hook): New funs.
19156         (savehist-install): New fun, extracted from savehist-load.
19157         (savehist-load): Use them.
19159 2005-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19161         * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
19162         a dummy doc-string-elt property.
19163         (defalias, defvaralias, define-category): Add a docstring property.
19165         * image.el (defimage):
19166         * widget.el (define-widget):
19167         * custom.el (defface, defcustom): Add `doc-string' declaration.
19169         * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
19170         (defadvice): Add `doc-string' declaration.
19172         * emacs-lisp/byte-run.el (macro-declaration-function):
19173         Handle `doc-string' declarations.
19174         (define-obsolete-function-alias, define-obsolete-variable-alias):
19175         Add `doc-string' declaration.
19177 2005-10-24  Kenichi Handa  <handa@m17n.org>
19179         * international/utf-7.el (utf-7): Add autoload cookie.
19181         * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
19183 2005-10-24  Eli Zaretskii  <eliz@gnu.org>
19185         * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
19186         list of directories passed to batch-update-autoloads.  Add "." to
19187         the list of the echoed directories.
19189         * pgg-def.el:
19190         * pgg-gpg.el:
19191         * pgg-parse.el:
19192         * pgg-pgp.el:
19193         * pgg-pgp5.el:
19194         * pgg.el: Moved here from the gnus subdirectory.
19196 2005-10-24  Nick Roberts  <nickrob@snap.net.nz>
19198         * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
19199         in case comint-prompt-read-only is set to t.
19201         * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
19202         in case comint-prompt-read-only is set to t.
19204 2005-10-24  Ulf Jasper  <ulf.jasper@web.de>
19206         * calendar/icalendar.el (icalendar-version): Increase to 0.13.
19207         Now a string.
19208         (icalendar-import-format): Handle CLASS, STATUS, URL.
19209         Rename `subject' to `summary'.
19210         (icalendar-import-format-summary): Rename from
19211         `icalendar-import-format-subject'.
19212         (icalendar-import-format-url, icalendar-import-format-status)
19213         (icalendar-import-format-class): New variables.
19214         (icalendar--rris): Take variable argument list.
19215         (icalendar--datestring-to-isodate): Remove unnecessary
19216         calendar-style check when converting dates with explicit month names.
19217         (icalendar-export-region): Change return type of conversion
19218         subroutines.  Bury current buffer unless error occurred.
19219         (icalendar--convert-to-ical)
19220         (icalendar--parse-summary-and-rest): New functions.
19221         (icalendar--convert-ordinary-to-ical)
19222         (icalendar--convert-weekly-to-ical)
19223         (icalendar--convert-yearly-to-ical)
19224         (icalendar--convert-block-to-ical)
19225         (icalendar--convert-cyclic-to-ical)
19226         (icalendar--convert-anniversary-to-ical): Change return type.
19227         Strip trailing blanks from subject.
19228         (icalendar--convert-sexp-to-ical): Change return type.
19229         Strip trailing blanks from subject.  Handle simple sexp
19230         entries as generated by icalendar.el.
19231         (icalendar--convert-float-to-ical)
19232         (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
19233         (icalendar-import-file): Doc fix.
19234         (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
19235         Correct call to icalendar--rris.
19236         (icalendar--convert-ical-to-diary): Doc fix.  Rename `subject' to
19237         `summary'.
19238         (icalendar--add-diary-entry): Rename `subject' to `summary'.
19240 2005-10-24  Romain Francoise  <romain@orebokech.com>
19242         * server.el (server-sentinel): Set query-on-exit flag to nil on
19243         new client processes (it isn't inherited from the server process).
19245         * replace.el (occur-engine): Rearrange text properties.
19247 2005-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19249         * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
19250         case-fold-search is nil.
19251         (debug-help-follow): Use help-xref-interned directly.
19253 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19255         * thumbs.el (thumbs-image-type): Add .pbm.
19257 2005-10-23  Richard M. Stallman  <rms@gnu.org>
19259         * faces.el (inhibit-face-set-after-frame-default): New variable.
19260         (set-face-attribute): Bind it.
19261         (face-set-after-frame-default): Test it.
19263         * help-fns.el (describe-simplify-lib-file-name): New function.
19264         (describe-function-1, describe-variable): Use it.
19266         * faces.el (describe-face): Use describe-simplify-lib-file-name.
19268         * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
19269         Eliminate nil as possible value.
19270         (tooltip-hide-delay): Reduce internal-border-width.
19272         * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
19273         (menu-bar-file-menu) <new-file>: Likewise.
19275         * simple.el (line-move-finish): Ignore fields computing LINE-END.
19277         * international/mule.el (load-with-code-conversion):
19278         Pass full file name to `eval-buffer' unless preloading.
19280         * textmodes/flyspell.el (flyspell-large-region):
19281         Call ispell-check-version.
19283         * textmodes/ispell.el (ispell-local-dictionary-overridden):
19284         Fix the make-variable-buffer-local call that was supposed
19285         to be for this variable.
19286         (ispell-aspell-supports-utf8): Doc fix.
19287         (ispell-find-aspell-dictionaries): Preserve elements of
19288         ispell-dictionary-alist for dictionaries that aspell doesn't report.
19289         (ispell-aspell-find-dictionary): Return nil on error.
19291         * play/doctor.el (doctor-doc): Don't say "psychiatrist".
19292         (doctor-symptoms): Likewise.
19294         * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
19296 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19298         * cus-edit.el (custom-button, custom-button-pressed): New vars.
19299         (custom-raised-buttons): Add :set spec.
19300         (custom-button-unraised, custom-button-pressed-unraised):
19301         New faces, so that custom-raised-buttons actually does something.
19302         (custom-mode): Use custom-button and custom-button-pressed.
19304         * wid-edit.el (widget-specify-button): Don't ignore
19305         widget-mouse-face on graphic terminals.
19306         (widget-move-and-invoke): Cleanup.
19308 2005-10-23  Thien-Thi Nguyen  <ttn@gnu.org>
19310         * whitespace.el (whitespace-cleanup): Doc fix.
19312 2005-10-23  Romain Francoise  <romain@orebokech.com>
19314         * emulation/viper.el (viper-set-hooks): Quote forms passed to
19315         `eval-after-load' to avoid evaluating their result.
19317 2005-10-23  Michael Albinus  <michael.albinus@gmx.de>
19319         * files.el (directory-listing-before-filename-regexp):
19320         New defvar.  Replaces `dired-move-to-filename-regexp' from dired.el.
19322         * dired.el (dired-move-to-filename-regexp): Remove.
19323         All occurences replaced by `directory-listing-before-filename-regexp'.
19325         * dired-x.el, locate.el, vc.el:
19326         Replace `dired-move-to-filename-regexp' by
19327         `directory-listing-before-filename-regexp'.  In vc.el it is
19328         overwritten locally; maybe this can be handled in files.el too.
19330         * net/ange-ftp.el (ange-ftp-date-regexp): Remove.  All occurences
19331         replaced by `directory-listing-before-filename-regexp'.
19333 2005-10-23  Andreas Schwab  <schwab@suse.de>
19335         * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
19336         and eval-next-after-load.
19338 2005-10-23  MIYOSHI Masanori  <miyoshi@meadowy.org>  (tiny change)
19340         * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
19341         exist, create it.
19343 2005-10-23  Ken Manheimer  <ken.manheimer@gmail.com>
19345         * allout.el: Remove autoloads for mailcrypt and crypt++.
19346         Require pgg, pgg-gpg during compilation.
19347         (allout-version): Increment version number to 2.1, and use a literal
19348         rather than RCS Id.
19349         (allout-default-encryption-scheme): Remove.
19350         (allout-passphrase-verifier-handling)
19351         (allout-passphrase-verifier-string)
19352         (allout-file-passphrase-verifier-string)
19353         (allout-passphrase-hint-string): Rename -key- to -passphrase-.
19354         (allout-passphrase-hint-handling): Rename and simplify.
19355         (allout-init): Use `find-file-hook' if available, otherwise
19356         `find-file-hooks'.
19357         (allout-mode): Use `write-file-functions' if available, otherwise
19358         `local-write-file-hooks' and, instead of making auto-save-hook
19359         buffer local, make the write-file-hook activity contingent to
19360         allout-mode.
19361         (allout-mode): Use key-binding substitution in the docstring.
19362         (allout-kill-line): Spell-out kill ring data structure mutation
19363         instead of using byte-compiler-complaint-provoking `pop'.
19364         (allout-insert-listified): Use `insert' rather than `insert-string'
19365         (allout-toggle-current-subtree-encryption): Update docstring, adjust
19366         to new gpp-based encryption, use new `allout-encrypted-topic-p'.
19367         (allout-encrypt-string): Totally revamped vis new underlying
19368         encryption facilities.
19369         (allout-mc-activate-passwd): Remove.
19370         (allout-obtain-passphrase): New, more or less replaces
19371         allout-mc-activate-passwd.
19372         (allout-encrypted-key-info): More or less replaces
19373         allout-encrypted-text-type.
19374         (outlineify-sticky, outlinify-sticky): Add autoload cookie.
19375         (my-mark-marker): Use `(featurep 'xemacs)'.
19377 2005-10-23  Lars Hansen  <larsh@soem.dk>
19379         * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
19380         (byte-compile-file-form-defmumble, byte-compile-defun)
19381         (byte-compile-defmacro): Use it.
19382         (byte-compile-form): Don't call byte-compile-set-symbol-position
19383         when a byte-compile handler is called.
19385 2005-10-22  Romain Francoise  <romain@orebokech.com>
19387         * savehist.el (savehist-history-variables): Add `grep-find-history'.
19389         * subr.el (eval-after-load): Convert library name to an absolute
19390         file name using locate-library, since load-history no longer has
19391         library names in it.
19393 2005-10-22  Richard M. Stallman  <rms@gnu.org>
19395         * files.el (make-temp-file): Move from subr.el.
19396         * subr.el (make-temp-file): Move to files.el.
19398         * window.el (get-buffer-window-list): Move from subr.el.
19399         * subr.el (get-buffer-window-list): Move to window.el.
19401         * image.el (image-load-path): Use eval-at-startup to initialize.
19403         * subr.el (eval-at-startup): New macro.
19405         * subr.el: Much rearrangement of functions and division
19406         into pages.  No code changes.
19408 2005-10-22  Kenichi Handa  <handa@m17n.org>
19410         * tar-mode.el (tar-extract): Be sure to call
19411         find-operation-coding-system if set-auto-coding doesn't find a
19412         coding system.
19414 2005-10-22  Kim F. Storm  <storm@cua.dk>
19416         * image.el (image-type-header-regexps): Rename from image-type-regexps.
19417         Change users.
19418         (image-type-file-name-regexps): New defconst.
19419         (image-type-from-data): Simplify loop.
19420         (image-type-from-buffer): New defun.
19421         (image-type-from-file-header): Use it instead of image-type-from-data.
19422         Use image-search-load-path instead of only looking in data-directory.
19423         (image-type-from-file-name): New defun.
19424         (image-search-load-path): Change `pathname' to `filename'.
19425         Make PATH arg optional, default to image-load-path.
19427 2005-10-21  Richard M. Stallman  <rms@gnu.org>
19429         * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
19431         * textmodes/paragraphs.el (sentence-end-base): New variable.
19432         (sentence-end): Use sentence-end-base.
19434 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19436         * font-lock.el (font-lock-default-fontify-region): Check the multiline
19437         property independently from the font-lock-multiline variable.
19439 2005-10-21  Richard M. Stallman  <rms@gnu.org>
19441         * emacs-lisp/find-func.el (find-library-name): Doc fix.
19443         * startup.el (command-line): Convert library names
19444         in `load-history' to absolute file names.
19446         * subr.el (symbol-file): Doc fix.
19448         * loadhist.el (file-loadhist-lookup): Call locate-library
19449         instead of find-library-name.  Don't try converting
19450         abs file names to library names, since load-history no longer
19451         has library names in it.
19452         (file-dependents, file-provides, file-requires): Doc fixes.
19454 2005-10-21  Juri Linkov  <juri@jurta.org>
19456         * progmodes/etags.el (tags-table-mode): New function.
19457         (tags-verify-table): Replace initialize-new-tags-table with
19458         tags-table-mode.
19460         * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
19461         default value.
19462         (desktop-modes-not-to-save): Add tags-table-mode to the
19463         default value.
19465         * info.el (Info-index-next): Add total number of index
19466         alternatives to the message.
19468         * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
19469         backward only space (instead of space and period) before looking
19470         at sentence end.
19472         * simple.el (set-variable): Use user-variable-p instead of symbolp.
19473         Add the old variable value as 4th default-value arg of read-string.
19475 2005-10-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19477         * cus-face.el (custom-declare-face): Make face from X resources
19478         also on Mac.
19480         * disp-table.el (standard-display-g1, standard-display-graphic):
19481         Refuse to use string glyphs also on Mac.
19482         (standard-display-european): Don't set terminal coding system also
19483         on Mac.
19485         * frame.el (display-screens): Use x-display-screens also on Mac.
19487 2005-10-21  Romain Francoise  <romain@orebokech.com>
19489         * net/rcirc.el: Now part of GNU Emacs.  Update FSF's address.
19491 2005-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19493         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
19494         and $? into sexps.
19496         * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
19497         warning face on open-paren-in-column-0.
19499         * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
19500         boundary case.  Fix typo.
19501         Suggested by Martin Rudalics <rudalics@gmx.at>.
19503 2005-10-21  Carsten Dominik  <dominik@science.uva.nl>
19505         * textmodes/org.el (org-combined-agenda-icalendar-file)
19506         (org-icalendar-include-todo, org-icalendar-combined-name): New options.
19507         (org-export-icalendar-this-file)
19508         (org-export-icalendar-all-agenda-files)
19509         (org-export-icalendar-combine-agenda-files): New commands.
19510         (org-export-icalendar, org-print-icalendar-entries)
19511         (org-start-icalendar-file, org-finish-icalendar-file)
19512         (org-ical-ts-to-string): New functions.
19513         (org-read-date, org-goto-calendar)
19514         (org-agenda-goto-calendar): Inhibit displaying diary entries by
19515         call to `calendar'.
19516         (orgtbl-setup): Remove the :keys arguments from the menu description.
19517         (org-after-save-iCalendar-file-hook): New variable.
19519 2005-10-21  Kenichi Handa  <handa@m17n.org>
19521         * language/vietnamese.el (tcvn-5712): Make it an alias of
19522         vietnamese-tcvn coding-system.
19524 2005-10-20  Michael Albinus  <michael.albinus@gmx.de>
19526         * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
19527         group id is given.
19529 2005-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19531         * progmodes/sh-script.el (sh-escaped-line-re): New var.
19532         (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
19533         (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
19534         whose line is either continued or ends with a comment.
19536 2005-10-20  Romain Francoise  <romain@orebokech.com>
19538         * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
19540         * replace.el (occur-engine): Add follow-link property.
19542         * font-core.el (font-lock-mode): Doc fix.
19544 2005-10-20  Richard M. Stallman  <rms@gnu.org>
19546         * net/rcirc.el: New file.
19548 2005-10-20  Bryan Henderson  <bryanh@giraffe-data.com>  (tiny change)
19550         * term.el (term-term-name): Initialize to "eterm-color".
19552 2005-10-20  Ken Manheimer  <ken.manheimer@gmail.com>
19554         * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
19555         for encryption functionality.
19556         Move allout customization subgroup from `editing' to `outlines' group.
19557         Fix commentary keywords to legitimate ones.
19558         Update author info (using my current email address, obscurified).
19559         (allout-encrypt-string, allout-encryption-produce-work-buffer)
19560         (allout-encrypted-topic-p, allout-encrypted-text-type)
19561         (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
19562         (allout-situate-encryption-key-verifier)
19563         (allout-get-encryption-key-verifier, allout-verify-key)
19564         (allout-next-topic-pending-encryption)
19565         (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
19566         (outline-topic-encryption-bullet, outline-default-encryption-scheme)
19567         (outline-key-verifier-handling, outline-key-hint-handling)
19568         (outline-encrypt-unencrypted-on-saves): New defcustoms.
19569         (allout-file-key-verifier-string, allout-encryption-scheme)
19570         (allout-key-verifier-string, allout-key-hint-string)
19571         (allout-after-save-decrypt): New variables.
19572         (allout-write-file-hook-handler, allout-auto-save-hook-handler)
19573         (allout-after-saves-handler): New hook functions.
19574         (allout-post-command-business): Do allout-after-save-decrypt.
19575         (allout-enable-file-variable-adjustment): Custom var to enable
19576         mechanism for adding and adjusting settings of Emacs file variables.
19577         (allout-adjust-file-variable, allout-file-vars-section-data):
19578         New functions, implement the mechanism.
19579         (outlineify-sticky): Use the file vars mechanism.
19580         (allout-inhibit-protection, allout-during-write-cue)
19581         (allout-override-protect, allout-before-change-protect): Remove.
19582         (allout-flag-region, allout-open-topic): Adjust read-only text.
19583         (allout-open-line-not-read-only): Add to facilitate read-only
19584         text based protection.
19585         (allout-kill-line): Revise to adjust read-only text, clue the
19586         user about the inhibition.
19587         (allout-unprotected): Use unwind-protect.
19588         (allout-shift-in, allout-shift-out): Disallow manually shifting a
19589         topic deeper than the offspring depth of the previous topic -
19590         avoiding confusing "containment discontinuities".
19591         (allout-reindent-bodies): Fix retention of body relative hanging
19592         indent during promotion of collapsed bodies.
19593         (allout-open-topic): Make it easy to open new topic with same
19594         bullet as current topic - topic creation functions provided with
19595         any universal argument provokes now prompt for bullet, defaulting
19596         to the bullet of the previous topic.
19597         (allout-plain-bullets-string, allout-distinctive-bullets-string):
19598         Plain bullet alternates `.' period and `,' comma only.  All other
19599         bullets are relegated to special status (but customizable).
19600         (allout-end-of-entry): Rename from allout-end-of-current-entry
19601         since it actually operates w.r.t. most immediately containing
19602         entry, visible or not.
19603         (allout-hide-current-entry, allout-show-current-entry): Use the
19604         revised version.
19605         (allout-old-expose-topic): Solidify deprecation.
19606         (allout-end-of-subtree): Add so we can span concealed as well
19607         as visible topics.
19608         (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
19609         (allout-end-of-current-heading): Tweak to just respect the first line.
19610         (allout-get-body-text): Add.
19611         (allout-ascend-to-depth, allout-ascend): Position at end of prefix
19612         when invoked interactively.
19613         (allout-up-current-level): Use `interactive-p'.
19614         (allout-mode, allout-init): Miscellaneous docstring and
19615         operational refinements, as well as hookups of new encryption stuff.
19616         (allout-beginning-of-current-entry): Now works as advertised.
19617         (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
19618         (allout-isearch-rectification): Refine condition for isearching.
19619         (allout-isearch-abort, allout-enwrap-isearch)
19620         (allout-flag-region, my-region-active-p): Relocate some macros.
19621         (allout-title): Fallback title is (buffer-name), not
19622         non-existing (current-buffer-name).
19623         (subst-char-in-string): Define if absent (for some XEmacs versions).
19625 2005-10-20  Jari Aalto  <jari.aalto@cante.net>
19627         * mail/sendmail.el (mail-setup-hook, mail-aliases)
19628         (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
19629         (mail-citation-prefix-regexp, mail-signature-file)
19630         (mail-default-headers, mail-bury-selects-summary)
19631         (mail-send-nonascii): Add autoload cookies.
19633 2005-10-20  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
19635         * frame.el (blink-cursor-mode): Add `mac' to the list of
19636         window-system's that support blinking cursor.
19638 2005-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
19640         * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
19642 2005-10-20  Eli Zaretskii  <eliz@gnu.org>
19644         * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
19645         Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
19646         to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
19648 2005-10-20  Kim F. Storm  <storm@cua.dk>
19650         * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
19651         (ido-set-current-directory): Don't add / after final @.
19652         (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
19653         Explicitly handle ange-ftp completion oddities.
19654         (ido-make-file-list): Don't rotate list at tramp root to avoid
19655         triggering tramp file handler for expand-file-name via get-file-buffer.
19657 2005-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
19659         * savehist.el (savehist-coding-system): Revert to checking XEmacs.
19661 2005-10-19  Jay Belanger  <belanger@truman.edu>
19663         * calc/calc-units.el (math-standard-units): Add units, adjust
19664         symbols and update values.
19665         (math-unit-prefixes): Add more prefixes.
19667 2005-10-19  Romain Francoise  <romain@orebokech.com>
19669         * bookmark.el (bookmark-menu-heading): New face.
19670         (bookmark-bmenu-list): Use it.
19671         Don't fiddle with `baud-rate' at top-level.
19673 2005-10-18  Chong Yidong  <cyd@stupidchicken.com>
19675         * image.el (create-image, find-image): Mention max-image-size in
19676         docstring.
19678 2005-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
19680         * savehist.el (savehist-load): Revert to checking XEmacs.
19682         * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
19683         Various docstring and line-width fixups.
19684         (conf-mode): Use cond.
19685         Set font-lock-defaults.  Don't set comment-use-syntax.
19687 2005-10-18  David Ponce  <david@dponce.com>
19689         * tree-widget.el (tree-widget-button-click): New function.
19690         (tree-widget-button-keymap): Use it.
19692 2005-10-18  Romain Francoise  <romain@orebokech.com>
19694         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
19695         (bookmark-bmenu-hide-filenames): Add follow-link property.
19696         Improve help-echo text.
19698         * ffap.el (find-file-at-point): Doc fix.
19700 2005-10-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19702         * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
19704 2005-10-18  Masatake YAMATO  <jet@gyve.org>
19706         Install to the CVS repository what I forgot to install in my
19707         2005-10-16 changes.
19709         * progmodes/python.el (python-complete-symbol): Pass the common
19710         prefix substring of completion to `display-completion-list'.
19712         * textmodes/org.el (org-complete): Ditto.
19714 2005-10-18  Masatake YAMATO  <jet@gyve.org>
19716         Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
19718         * woman.el (WoMan-xref-man-page): New button type derived
19719         from `Man-abstract-xref-man-page'.
19720         (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
19722         * man.el (Man-abstract-xref-man-page): New button type.
19723         (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
19724         (Man-highlight-references): Add new optional argument `xref-man-type'.
19726 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
19728         * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
19730 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19732         * cus-edit.el (Custom-move-and-invoke): Delete.
19733         (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
19735         * wid-edit.el (widget-move-and-invoke): New function, from
19736         Custom-move-and-invoke.
19738 2005-10-17  Bill Wohler  <wohler@newt.com>
19740         Move all remaining images from lisp/toolbar to etc/images, move
19741         lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar.  Place
19742         the low resolution images in their own directory (low-color).
19744         * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
19745         * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
19746         * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
19747         * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
19748         * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
19749         * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
19750         * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
19752         * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
19753         * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
19754         * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
19755         * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
19756         * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
19757         * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
19758         * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
19759         * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
19760         * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
19761         * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
19762         * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
19763         * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
19764         * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
19765         * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
19766         * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
19768         To conform with convention, replace the underscore (_) in the
19769         following image names with dash (-) or (/) as appropriate.
19771         * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
19772         * toolbar/fld_open.*: Move to etc/images/fld-open.*.
19773         * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
19774         * toolbar/jump_to.*: Move to etc/images/jump-to.*.
19775         * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
19776         * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
19777         * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
19778         * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
19779         * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
19780         * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
19781         * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
19782         * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
19783         * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
19784         * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
19785         * toolbar/mail_send.*: Move to etc/images/mail/send.*.
19787         * info.el (info-tool-bar-map): Replace underscores in image names
19788         with dashes.
19790         * makefile.w32-in (WINS): Remove toolbar.
19792         * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
19794         * tool-bar.el: Move to lisp from toolbar.  Now that
19795         toolbar is empty, it should be deleted when folks run "cvs up -P".
19797 2005-10-18  Jay Belanger  <belanger@truman.edu>
19799         * calc/calc-store.el (calc-store-into): Get the proper variable name
19800         to display in message.
19802 2005-10-18  Nick Roberts  <nickrob@snap.net.nz>
19804         * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
19805         expressions display in speedbar for all buffers when debugging.
19806         (gdb-speedbar-expand-node): Ensure node contraction is always updated.
19808         * speedbar.el (speedbar-set-mode-line-format): Indent properly.
19809         (speedbar-insert-button, speedbar-make-button):
19810         Use add-text-properties.
19811         (speedbar-update-localized-contents)
19812         (speedbar-update-directory-contents)
19813         (speedbar-update-special-contents): Use dolist.
19814         (speedbar-buffer-easymenu-definition): Add a menu separator.
19816 2005-10-17  Jason Rumney  <jasonr@gnu.org>
19818         * makefile.w32-in: Use $(lisp) consistently.
19819         (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
19820         for shell specific generation of mh-autoloads.
19822 2005-10-17  Richard M. Stallman  <rms@gnu.org>
19824         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
19826 2005-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19828         * jit-lock.el (jit-lock-fontify-now):
19829         Move jit-lock-context-unfontify-pos to avoid wasted work.
19831 2005-10-17  Michael Albinus  <michael.albinus@gmx.de>
19833         * net/tramp.el (tramp-completion-mode): New defvar.  Used in
19834         `tramp-completion-mode' for checking if we are in completion mode.
19835         (tramp-completion-handle-file-name-all-completions): Reorder code
19836         in order to complete for file names only in case there are no
19837         method/user/host completions.  This is necessary for cooperation
19838         with ido.  Reported by Kim F. Storm <storm@cua.dk>.
19840 2005-10-16  Chong Yidong  <cyd@stupidchicken.com>
19842         * longlines.el (longlines-search-forward)
19843         (longlines-search-backward): Match any number of spaces.
19845 2005-10-16  Thien-Thi Nguyen  <ttn@gnu.org>
19847         * diff-mode.el (diff-mode): Doc fix.
19849 2005-10-16  David Reitter  <david.reitter@gmail.com>
19851         * mail/sendmail.el (send-mail-function): Use mailclient-send-it
19852         as default on darwin and windows systems.
19854 2005-10-16  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
19856         * arc-mode.el (archive-zip-extract): Doc fix.
19858 2005-10-16  Romain Francoise  <romain@orebokech.com>
19860         * mouse.el (mouse-1-click-follows-link): Doc fix.
19862 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19864         * savehist.el: Don't require CL at runtime.
19865         (savehist-xemacs): Remove.
19866         (savehist-coding-system): Use utf-8 if present, regardless of religion.
19867         (savehist-no-conversion): Use (featurep 'xemacs).
19868         (savehist-load): Check existence of start-itimer rather than XEmacs.
19869         Use an idle timer.
19870         (savehist-process-for-saving): Replace use of CL funs `subseq' and
19871         `delete-if-not'.
19873 2005-10-16  Hrvoje Niksic  <hniksic@xemacs.org>
19875         * savehist.el: Newer version.
19876         (savehist-autosave-interval, savehist-coding-system, savehist-timer)
19877         (savehist-last-checksum, savehist-no-conversion): New vars.
19878         (savehist-autosave, savehist-process-for-saving, savehist-printable):
19879         New functions.
19880         (savehist-load, savehist-save): Use them.
19881         (savehist-delimit): Remove.
19883 2005-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19885         * progmodes/compile.el (compilation-goto-locus): Display the
19886         compilation buffer first and the source buffer second, in case they're
19887         in overlapping frames.  Don't raise the compilation frame if it was the
19888         selected window upon entry.  Pass the `other-window' arg to
19889         pop-to-buffer.
19891         * info.el (Info-fontify-node): Use dolist.
19892         Change add-text-properties to put-text-property.
19894 2005-10-16  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
19896         * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
19897         bound of search.
19899 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19901         * dabbrev.el (dabbrev-completion): Pass the common
19902         prefix substring of completion to `display-completion-list'.
19904         * filecache.el (file-cache-minibuffer-complete)
19905         (file-cache-complete): Ditto.
19907         * tempo.el (tempo-display-completions): Ditto.
19909         * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
19911         * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
19913         * eshell/em-hist.el (eshell-list-history): Ditto.
19915         * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
19917         * mail/mailalias.el (mail-complete): Ditto.
19919         * progmodes/etags.el (complete-tag): Ditto.
19921         * progmodes/make-mode.el (makefile-complete): Ditto.
19923         * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
19925         * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
19927         * progmodes/pascal.el (pascal-complete-word)
19928         (pascal-show-completions): Ditto.
19930         * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
19932         * simple.el (completion-common-substring): New variable.
19933         (completion-setup-function): Use `completion-common-substring'
19934         to put faces.
19936 2005-10-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19938         * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
19939         (x-get-selection, mac-select-convert-to-string): Convert from/to
19940         UTF-16 clipboard data as in native byte order, no BOM.
19942 2005-10-16  Nick Roberts  <nickrob@snap.net.nz>
19944         * progmodes/gud.el (gud-tool-bar-map): Rename the images
19945         appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
19946         (gud-sentinel): Use speedbar-frame to check for speedbar.
19948 2005-10-15  Richard M. Stallman  <rms@gnu.org>
19950         * savehist.el: New file.
19952 2005-10-14  Karl Chen  <quarl@cs.berkeley.edu>
19954         * textmodes/tex-mode.el (tex-font-lock-keywords-2):
19955         Fix bug in \bf fontification.
19957 2005-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19959         * pcvs.el (cvs-edit-log-files): New var.
19960         (cvs-mode-edit-log): New arg `file'.
19961         (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
19962         Instead force the use of the original file and nothing else.
19963         (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
19964         the cvs-minor-wrap-function is set.
19965         (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
19967 2005-10-14  Bill Wohler  <wohler@newt.com>
19969         * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
19970         * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
19971         * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
19972         * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
19973         * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
19974         * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
19975         * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
19976         * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
19977         * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
19978         * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
19979         * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
19980         * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
19981         * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
19982         * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
19983         * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
19985         * progmodes/gud.el (gud-tool-bar-map): Rename the images
19986         appropriately (for example, gud-break to gud/break).
19988 2005-10-14  Chong Yidong  <cyd@stupidchicken.com>
19990         * longlines.el (longlinges-search-function)
19991         (longlines-search-forward, longlines-search-backward): New functions.
19992         (longlines-mode): Set isearch-search-fun-function to
19993         longlinges-search-function.
19995         * mouse.el (mouse-drag-region-1): Handle the case where a
19996         double-click event is bound to an arbitrary function.
19998 2005-10-14  David Ponce  <david@dponce.com>
20000         * recentf.el (recentf-track-opened-file)
20001         (recentf-track-closed-file, recentf-update-menu)
20002         (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
20003         (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
20004         mouse-1-click-follows-link.
20006 2005-10-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20008         * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
20009         Gnome file-manager.png.  Suggested by
20010         Joachim Nilsson <joachim.nilsson@vmlinux.org>.
20012         * toolbar/README: Add diropen.xpm.
20014 2005-10-13  Bill Wohler  <wohler@newt.com>
20016         * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
20017         restrictions.  Suggested by David Robinow <drobinow@gmail.com>.
20019 2005-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
20021         * progmodes/mixal-mode.el (mixal-operation-codes-alist):
20022         Don't waste the byte-compiler's time on constant data.
20024 2005-10-13  Kenichi Handa  <handa@m17n.org>
20026         * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
20027         byte with `escape-glyph' face.
20029         * international/fontset.el (ccl-encode-unicode-font):
20030         Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
20031         Handle the case that ucs-mule-to-mule-unicode translates a character to
20032         ASCII (usually for IPA characters).
20034 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20036         * info.el (Info-fontify-node): Don't be fooled by a lone "...".
20037         Don't hide the underline of titles if font-lock-mode is disabled.
20039 2005-10-12  Bill Wohler  <wohler@newt.com>
20041         * makefile.w32-in (MH-E-SRC): New.  Used by mh-autoloads.
20042         (mh-autoloads): New.  Builds mh-e/mh-loaddefs.el.  Rebuilds if any
20043         files in MH-E-SRC have been updated.
20044         (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
20046 2005-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20048         * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
20049         (mixal-mode-syntax-table): Add \n as end-comment.
20050         (mixal-operation-codes-alist): Immediately initialize to full value.
20051         (mixal-add-operation-code): Remove.
20052         (mixal-describe-operation-code): Make the arg non-optional.
20053         Use the interactive spec instead.
20054         Use mixal-operation-codes-alist rather than mixal-operation-codes.
20055         (mixal-font-lock-keywords): Don't highlight comments here any more.
20056         (mixal-font-lock-syntactic-keywords): New var.
20057         (mixal-mode): Use it.  Fix comment-start-skip.
20059 2005-10-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20061         * startup.el (command-line-x-option-alist): -nb => -nbi
20063 2005-10-12  Kim F. Storm  <storm@cua.dk>
20065         * startup.el (fancy-splash-default-action): Discard mouse click in
20066         the splash screen window, as it has no sensible meaning in the
20067         next window to be selected.  Fixes error reported by Jan D.
20069 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
20071         * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
20073 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
20075         * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
20076         Try to fix up minor layout issues like indentation, line break, etc...
20077         (mixal-mode-syntax-table): Don't try to specify comment syntax,
20078         because it doesn't work.
20079         (mixal-operation-codes): Add some more codes.
20080         (mixal-font-lock-keywords): Process comments here.
20081         (mixal-mode): mixasm no longer needs -g option.
20083 2005-10-11  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
20085         * progmodes/sh-script.el (sh-tmp-file):
20086         Use mktemp -t.  Finish support for es and rc shells.
20088 2005-10-11  Jay Belanger  <belanger@truman.edu>
20090         * calc/calcalg2.el (calc-integral): With an argument, compute the
20091         definite integral.
20093 2005-10-11  Chong Yidong  <cyd@stupidchicken.com>
20095         * mouse.el (mouse-drag-region-1): Don't try to catch a
20096         double-click when doing follow-link (it's overridden anyway).
20098 2005-10-11  Juanma Barranquero  <lekktu@gmail.com>
20100         * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
20101         (autoload-print-form-outbuf): Add docstring.
20103 2005-10-11  Juri Linkov  <juri@jurta.org>
20105         * info.el (Info-mode-menu): Delete menu item "Edit".
20106         (Info-mode): Delete description of Info-edit from docstring,
20107         and rearrange descriptions of Info commands in the order
20108         they are documented in the Info manual.
20110 2005-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
20112         * calendar/appt.el (appt-check): Use diary-selective-display var.
20114 2005-10-10  Richard M. Stallman  <rms@gnu.org>
20116         * net/newsticker.el (newsticker-start, newsticker-show-news):
20117         Add autoload cookies.
20119 2005-10-10  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>
20121         * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
20123 2005-10-10  Karl Chen  <quarl@cs.berkeley.edu>
20125         * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
20127 2005-10-10  Jay Belanger  <belanger@truman.edu>
20129         * calc/calc-arith.el (math-check-known-scalarp)
20130         (math-check-known-matrixp): Check the values of arguments that are
20131         variables.
20132         (math-check-known-square-matrixp): New function.
20133         (math-known-square-matrixp): Use math-check-known-square-matrixp.
20134         (math-super-types): Add sqmatrix type.
20136         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
20137         mode name `square' to `sqmatrix'.
20139         * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
20140         mode name `square' to `sqmatrix'.
20142 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20144         * progmodes/etags.el (select-tags-table-mode): Don't use
20145         selective-display.
20146         (tags-select-tags-table): Pass `button' to the action function.
20147         (select-tags-table): Place the side-info on button properties rather
20148         than in hidden text.  Abbreviate file names.
20149         (select-tags-table-mode-map): Inherit rather than copy buttom-map.
20150         (select-tags-table-select): Add `button' argument.
20151         Get side-info from the button property rather than from hidden text.
20153 2005-10-11  Nick Roberts  <nickrob@snap.net.nz>
20155         * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
20156         (gud-speedbar-buttons): Preserve point if possible.
20157         (gud-sentinel): Restore previous speedbar display type.
20159         * progmodes/gdb-ui.el (gdba): Improve diagram.
20160         (def-gdb-auto-update-handler, gdb-info-locals-handler)
20161         (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
20162         Call get-buffer-window once.
20164 2005-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20166         * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
20167         (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
20168         (pascal-indent-command): Remove unused var `ind'.
20169         (pascal-indent-case): Remove unused var `oldpos'.
20170         (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
20171         since it's now used as a proper minor mode map.
20172         (pascal-outline): Rename to pascal-outline-mode.
20173         (pascal-outline-mode): Use define-minor-mode.
20174         (pascal-outline-mode, pascal-outline-change): Use overlays rather than
20175         selective-display.
20177 2005-10-10  Andreas Schwab  <schwab@suse.de>
20179         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
20180         number.  Reported by Karl Chen <quarl@cs.berkeley.edu>.
20182         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
20183         outside source directory.
20185 2005-10-10  Carsten Dominik  <dominik@science.uva.nl>
20187         * textmodes/org.el (org-mode-map): Explicit definition of `C-c
20188         C-x' as a prefix.
20189         (orgtbl-mode-map): Full keymap instead of sparse, because all
20190         `self-insert-command' keys are redefined in this map.
20191         (org-export-as-html): Specify charset for HTML file, by taking it
20192         from the coding system.
20194 2005-10-10  Kenichi Handa  <handa@m17n.org>
20196         * textmodes/flyspell.el (flyspell-check-word-p):
20197         If unread-command-events is non-empty, don't call sit-for.
20199 2005-10-09  Richard M. Stallman  <rms@gnu.org>
20201         * font-lock.el (font-lock-syntactic-keywords)
20202         (font-lock-keywords): Doc fixes.
20204         * textmodes/flyspell.el (flyspell-external-point-words):
20205         Simplify logic, and don't try to check for consecutive appearances
20206         of one incorrect word.
20208 2005-10-10  Nick Roberts  <nickrob@snap.net.nz>
20210         * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
20211         separator.
20213         * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
20214         (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
20215         (gud-expansion-speedbar-buttons): New function.
20216         (gud-speedbar-buttons): Check for gud-comint-buffer.
20218 2005-10-09  Bill Wohler  <wohler@newt.com>
20220         * Makefile.in (updates): Add mh-loaddefs dependency.
20222 2005-10-09  Chong Yidong  <cyd@stupidchicken.com>
20224         * speedbar.el (speedbar-file-key-map): Fix typo.
20226 2005-10-09  Daniel Brockman  <daniel@brockman.se>
20228         * cus-start.el (line-spacing): Add custom spec.
20230 2005-10-09  Romain Francoise  <romain@orebokech.com>
20232         * textmodes/ispell.el (ispell-check-version): Fix last change.
20234 2005-10-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20236         * term/x-win.el: Remove -i, --icon-type from comment.
20238         * startup.el (command-line-x-option-alist): Remove options -i,
20239         -itype, --icon-type, added -nb, --no-bitmap-icon
20241 2005-10-09  Nick Roberts  <nickrob@snap.net.nz>
20243         * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
20244         instead of :active.
20246 2005-10-08  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
20248         * textmodes/ispell.el (ispell-check-version):
20249         Ignore hyphen, and all that follows, in aspell's version text.
20251 2005-10-08  Jay Belanger  <belanger@truman.edu>
20253         * calc/calc-arith.el (math-known-square-matrixp): New function.
20254         (math-pow-fancy): Check for matrices before distributing exponent
20255         across products.
20257         * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
20258         fullscreen keypad.  Suggested by Luc Teirlinck.
20259         (calc-keypad-show-input): Add space for formatting.
20261         * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
20262         Add square matrix option.
20264         * calc/calc-poly.el (math-expand-term): Check for matrices instead
20265         of checking calc-matrix-mode when deciding how to expand.
20267         * calc/calc.el (calc-set-mode-line): Add square matrix option.
20269 2005-10-08  Lars Hansen  <larsh@soem.dk>
20271         * net/tramp.el (tramp-perl-directory-files-and-attributes):
20272         Add error handling.
20273         (tramp-handle-directory-files-and-attributes): Handle perl error msg.
20275 2005-10-08  Michael Albinus  <michael.albinus@gmx.de>
20277         Sync with Tramp 2.0.51.
20279         * net/tramp.el (tramp-handle-set-visited-file-modtime)
20280         (tramp-handle-insert-file-contents, tramp-handle-write-region):
20281         Insert special handling for `last-coding-system-used', again
20282         it still seems to be necessary (unlike stated before).
20283         Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
20284         (tramp-password-prompt-regexp): There might be other words before
20285         trailing ":".  Reported by Kurt Steinkraus <kurt@steinkraus.us>.
20286         (tramp-chunksize): Improve docstring.
20287         (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
20288         Emacs 20.  Use `tramp-octal-to-decimal' therefore.  Reported by
20289         Christian Joergensen <bugs@razor.dk>.
20291 2005-10-07  Glenn Morris  <rgm@gnu.org>
20293         * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
20294         (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
20295         precision'.
20297 2005-10-07  Romain Francoise  <romain@orebokech.com>
20299         * ibuf-ext.el (ibuffer-do-shell-command-pipe)
20300         (ibuffer-do-shell-command-pipe-replace)
20301         (ibuffer-do-shell-command-file, ibuffer-do-eval)
20302         (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
20303         (ibuffer-do-revert, ibuffer-do-replace-regexp)
20304         (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
20305         (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
20306         (ibuffer-filter-by-name, ibuffer-filter-by-filename)
20307         (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
20308         (ibuffer-filter-by-content, ibuffer-filter-by-predicate
20309         (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
20310         (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
20311         Autoload file sans suffix.
20313         * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
20315 2005-10-07  David Ponce  <david@dponce.com>
20317         * recentf.el (recentf-menu-open-all-flag): New option.
20318         (recentf-digit-shortcut-command-name): New function.
20319         (recentf--shortcuts-keymap): New variable.
20320         (recentf-menu-shortcuts): New variable.
20321         (recentf-make-menu-items): Initialize it.  Replace the "More..."
20322         menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
20323         (recentf-menu-value-shortcut): New function.
20324         (recentf-make-menu-item): Use it.  No more in-lined.
20325         (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
20326         (recentf-open-most-recent-file): Rename from
20327         `recentf-open-file-with-key'.  Don't depend on key binding.
20328         (recentf-mode-map): New variable.
20329         (recentf-mode): Use it.
20331 2005-10-06  Bill Wohler  <wohler@newt.com>
20333         * mh-e/mh-loaddefs.el: Remove.  Now generated automatically.
20335         * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
20336         (MH-E-SRC): New.  Used by mh-autoloads.
20337         (mh-autoloads): New.  Builds mh-e/mh-loaddefs.el.  Rebuilds if any
20338         files in MH-E-SRC have been updated.
20339         (compile, recompile, bootstrap): Depend on mh-autoloads.
20341 2005-10-07  Nick Roberts  <nickrob@snap.net.nz>
20343         * progmodes/gud.el (gud-menu-map): Only display un-intuitive
20344         gud-break and gud-remove icons when the fringe is not available.
20346         * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
20347         Typo.
20349 2005-10-06  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac-@t-lrde.epita.fr>
20351         * play/zone.el (zone): Wrap body with save-window-excursion.
20353 2005-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20355         * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
20356         Use the new `list-only' arg to diary-list-entries.
20358         * calendar/diary-lib.el: Use overlays rather than selective-display.
20359         (diary-selective-display): New var.
20360         (diary-header-line-format): Use it.
20361         (diary-list-entries): Add argument `list-only'.
20362         Put the buffer in diary-mode.  Don't add \^M at beg and end.
20363         Replace \^M by invisible overlays.
20364         (diary-unhide-everything): Replace \^M by invisible overlays.
20365         (print-diary-entries): Look for overlays rather than \^M.
20366         Add a space to the temp buffer name.
20367         (diary-show-all-entries, mark-diary-entries, make-diary-entry):
20368         Put the buffer in diary-mode.
20369         (list-sexp-diary-entries): Replace \^M by invisible overlays.
20370         (diary-anniversary): Make the year arg optional.
20371         (diary-time-regexp): New const.
20372         (diary-font-lock-keywords): Use it to accept a few more time formats.
20374         * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
20376 2005-10-06  Thien-Thi Nguyen  <ttn@gnu.org>
20378         * textmodes/artist.el (artist-ellipse-mirror-quadrant):
20379         Fix bug introduced 2005-07-03: Use (car (last ...))
20380         to faithfully reproduce replaced artist-last.
20381         (artist-set-arrow-points-for-poly): Likewise.
20382         Suggested by Johan Bockg\e,Ae\e(Brd.
20384 2005-10-06  Juanma Barranquero  <lekktu@gmail.com>
20386         * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
20387         * wid-edit.el (widget):
20388         * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
20389         * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
20391 2005-10-06  Kenichi Handa  <handa@m17n.org>
20393         * international/mule-cmds.el (set-language-environment):
20394         Fix setting up of case-table for unibyte mode.
20396         * simple.el (what-cursor-position): If the character is displayed
20397         by some `display' text property, show that.  Don't use
20398         single-key-description for eight-bit characters in multibyte mode.
20400 2005-10-06  Nick Roberts  <nickrob@snap.net.nz>
20402         * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
20403         (gdb-ann3): Set it.
20404         (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
20405         (gdb-info-frames-custom): Use inverse-video for first five
20406         characters of selected frame only.
20407         (gdb-get-frame-number): Select frame even when point is on frame
20408         number.
20410 2005-10-06  Masatake YAMATO  <jet@gyve.org>
20412         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
20413         Put `font-lock-function-name-face'.
20414         (gdb-info-frames-custom): Put `font-lock-function-name-face'
20415         and `font-lock-variable-name-face'
20416         (gdb-registers-font-lock-keywords): New font lock keywords definition.
20417         (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
20418         (gdb-memory-font-lock-keywords): New font lock keywords definition.
20419         (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
20420         (gdb-local-font-lock-keywords): New font lock keywords definition.
20421         (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
20422         (gdb-threads-font-lock-keywords): New font lock keywords definition.
20423         (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
20425 2005-10-05  Michael Kifer  <kifer@cs.stonybrook.edu>
20427         * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
20428         (ediff-merge-region-is-non-clash-to-skip): Previously called
20429         ediff-merge-region-is-non-clash.
20431         * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
20432         Use insert-buffer-substring.
20434         * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
20435         selecting files to patch.  Also bug fixes.
20437         * ediff-util.el (ediff-setup): Bug fix.
20438         (ediff-next-difference): Never skip clashes that differ in white
20439         space only.
20441         * ediff-wind.el (ediff-setup-control-frame)
20442         (ediff-destroy-control-frame): Check the menubar feature.
20444         * viper-cmd.el (viper-normalize-minor-mode-map-alist)
20445         (viper-refresh-mode-line): Use make-local-variable to localize
20446         some vars instead of make-variable-buffer-local.  Suggested by
20447         Stefan Monnier.
20449         * viper-init.el (viper-make-variable-buffer-local): Delete alias.
20450         (viper-restore-cursor-type, viper-set-insert-cursor-type):
20451         Use make-local-variable instead of make-variable-buffer-local.
20452         Suggested by Stefan Monnier.
20454         * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
20455         (viper-comint-mode-hook): Use make-local-variable on
20456         require-final-newline.
20457         (viper-non-hook-settings): Don't use make-variable-buffer-local.
20459 2005-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20461         * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
20462         also the second char of a comment-start sequence.
20463         (scheme-sexp-comment-syntax-table): New var.
20464         (lambda, define): Set their scheme-doc-string-elt property.
20465         (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
20466         Use lisp-font-lock-syntactic-face-function now that it properly
20467         handles |...| symbols.
20468         (scheme-mode-variables): Set lisp-doc-string-elt-property,
20469         parse-sexp-lookup-properties and font-lock-extra-managed-props.
20471         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
20472         bit from # to |.
20473         (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
20475         * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
20476         (lisp-doc-string-elt-property): New var.
20477         (lisp-font-lock-syntactic-face-function): Use it.
20478         Rewrite to recognize docstrings even for forms not at toplevel.
20480         * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
20481         annotation on the | part of #| rather than on the # part.
20482         (scheme-font-lock-syntactic-face-function): New function, to
20483         distinguish strings from |...| symbols.
20484         (scheme-mode-variables): Use it.  Also fix up the font-lock-time
20485         syntax-table so that #|...|# is properly highlighted.
20487         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
20488         Don't mark as docstring the 3rd elem of an unknown toplevel form.
20490 2005-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20492         * bindings.el (global-map): Resync [home] and [end] bindings with C-a
20493         and C-e.
20495         * emacs-lisp/eldoc.el: Move comments into docstrings.
20496         (eldoc-message-commands): Initialize in its declaration.
20497         Add move-beginning-of-line and move-end-of-line.
20498         (eldoc-add-command, eldoc-add-command-completions)
20499         (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
20501         * outline.el (outline-mark-subtree): Activate the mark.
20503         * calendar/appt.el (appt-time-regexp): New var.
20504         (appt-add, appt-make-list): Use it.
20505         (appt-convert-time): Clean up.
20507         * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
20508         Don't set any syntax-table property here.
20509         (tex-font-lock-verb): New function.  Do it here.
20510         (tex-font-lock-syntactic-keywords): Use it.
20512 2005-10-04  Richard M. Stallman  <rms@gnu.org>
20514         * wid-edit.el (widget-file-complete): Get the widget start point
20515         the right way.  Default directory to `/' if file has none.
20517         * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
20519         * textmodes/flyspell.el (flyspell-mode-on):
20520         Call ispell-maybe-find-aspell-dictionaries.
20522         * textmodes/ispell.el (ispell-word, ispell-region):
20523         Call ispell-maybe-find-aspell-dictionaries.
20524         (ispell-accept-buffer-local-defs):
20525         Don't call ispell-maybe-find-aspell-dictionaries
20527 2005-10-04  Richard M. Stallman  <rms@gnu.org>
20529         * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
20531 2005-10-04  Emilio C. Lopes  <eclig@gmx.net>
20533         * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
20534         instead of `fboundp' in order to allow for anonymous functions.
20536 2005-10-04  Chong Yidong  <cyd@stupidchicken.com>
20538         * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
20539         case the user clicks on the link while another window is selected.
20540         (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
20542         * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
20543         functionality.
20544         (dframe-help-echo): Save point in case mouse tracking is off.
20546 2005-10-04  Thien-Thi Nguyen  <ttn@gnu.org>
20548         * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
20550 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20552         * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
20553         not change the global value of those vars.
20555         * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
20556         make-local-variable which we do not need any more.
20558 2005-10-03  Chong Yidong  <cyd@stupidchicken.com>
20560         * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
20561         (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
20562         (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
20563         (speedbar-path-line): Define obsolete aliases.
20564         (speedbar-line-directory): Doc fix.
20566         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
20567         (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
20568         instead of speedbar-line-path.
20570 2005-10-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
20572         * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
20573         to nil if dropping on a window.  Handle dropping on a minibuffer window
20574         like dropping on a non-window part of Emacs.
20576 2005-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20578         * net/ange-ftp.el: Use with-current-buffer.
20579         (ange-ftp-insert-directory): Do not follow symlinks any more.
20581         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
20582         Remove interactive spec.
20584 2005-10-03  Kim F. Storm  <storm@cua.dk>
20586         * ido.el (ido-mode): Use custom-initialize-set.
20588 2005-10-02  Richard M. Stallman  <rms@gnu.org>
20590         * progmodes/ebnf2ps.el (ebnf-eps-production-list):
20591         Use insert-buffer-substring.
20593         * net/tramp.el: Pacify byte compiler warnings in pacification code.
20594         (tramp-handle-file-local-copy): Use insert-buffer-substring.
20596 2005-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
20598         * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
20599         in last change.
20600         (ange-ftp-insert-directory): Fix up the search for the case where
20601         `file' is absolute.
20603 2005-10-02  Romain Francoise  <romain@orebokech.com>
20605         * progmodes/compile.el (compile-goto-error): Delete extra paren.
20607 2005-10-02  Andreas Schwab  <schwab@suse.de>
20609         * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
20610         directory component in the session info.
20612 2005-10-01  Richard M. Stallman  <rms@gnu.org>
20614         * comint.el (comint-redirect-subvert-readonly): Doc fix.
20616         * simple.el (next-error-internal): New function.
20618         * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
20619         (compilation-start): Pass new arg to compilation-buffer-name.
20620         (compile-goto-error): Use next-error-internal.
20622 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
20624         * speedbar.el: Remove RCS tag.
20625         (speedbar-check-read-only): Handle non-existent files.
20627         * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
20629         * info.el (Info-speedbar-hierarchy-buttons)
20630         (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
20632 2005-10-01  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
20634         * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
20635         Do not match newline.
20636         (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
20637         (bibtex-summary): Remove unnecessary save-excursion.
20638         (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
20640 2005-10-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20642         * term/mac-win.el: Add charset info for "iso10646-1".
20643         Modify default fontset to use ATSUI-compatible fonts for some charsets
20644         if available.
20646 2005-10-01  Chong Yidong  <cyd@stupidchicken.com>
20648         * speedbar.el: Re-apply arch tag.
20649         (speedbar-version): Rename to version 1.0.  Suggested by Eric
20650         M. Ludlam.
20651         Reapply two changes from Emacs CVS' version of speedbar lost
20652         during the merge:
20653         (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
20654         (speedbar-frame-parameters): Improve customize type.
20656 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
20658         * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
20659         (ange-ftp-file-directory-p): Fix the symlink case.
20660         (ange-ftp-insert-directory): When listing a single file, get a list of
20661         the parent buffer and extract the relevant line.  Inspired from a patch
20662         by Katsumi Yamaoka <yamaoka@jpl.org>.
20663         (ange-ftp-file-name-sans-versions): Simplify.
20665 2005-09-30  Bill Wohler  <wohler@newt.com>
20667         Move MH-E image files from toolbar and mail directories into
20668         etc/images.
20670         * mail/reply2.*: Move to etc/images/mail/reply*.
20672         * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
20673         * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
20674         etc/images.
20676         * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
20677         * toolbar/reply*: Move to etc/images/mail.
20679         * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
20681 2005-09-30  Eric M. Ludlam  <zappo@gnu.org>
20683         * speedbar.el: New version 1.0pre3.
20685         Frame management code (including timer, and mouse click specifics)
20686         moved to dframe.el:
20687         (speedbar-attached-frame): Removed.  Use dframe-attached-frame.
20688         (speedbar-timer): Removed.  Use dframe-timer.
20689         (speedbar-close-frame): Removed.  Use dframe-close-frame.
20690         (speedbar-activity-change-focus-flag): Removed.  Use
20691         dframe-activity-change-focus-flag.
20692         (speedbar-update-speed, speedbar-navigating-speed): Obsolete.  Use
20693         dframe-update-speed.
20695         (speedbar-current-frame): New macro.  Use this instead of the
20696         variable speedbar-frame.
20698         (speedbar-use-images, speedbar-expand-image-button-alist)
20699         (speedbar-insert-image-button-maybe): Moved to sb-image.el.
20701         (speedbar-find-image-on-load-path): Removed.  Replaced by
20702         defezimage in ezimage.el.
20703         (speedbar-expand-image-button-alist): Removed.  Replaced by
20704         ezimage-expand-image-button-alist in ezimage.el.
20706         (speedbar-ignored-directory-regexp)
20707         (speedbar-add-ignored-directory-regexp)
20708         (speedbar-ignored-directory-expressions)
20709         (speedbar-line-directory, speedbar-buffers-line-directory)
20710         (speedbar-directory-line, speedbar-buffers-line-directory):
20711         Renamed, replacing `path' with `directory'.
20713         (speedbar-create-directory, speedbar-expand-line-descendants)
20714         (speedbar-toggle-line-expansion)
20715         (speedbar-contract-line-descendants): New commands.
20717         (speedbar-query-confirmation-method, speedbar-select-frame-method)
20718         (speedbar-use-tool-tips-flag): New options.
20720         (speedbar-check-read-only, speedbar-require-version)
20721         (speedbar-insert-separator, speedbar-buffers-tail-notes)
20722         (speedbar-handle-delete-frame, speedbar-try-completion)
20723         (speedbar-update-localized-contents): New functions.
20725         (speedbar-incompatible-version, speedbar-ro-to-do-point)
20726         (speedbar-object-read-only-indicator): New variables.
20728         (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
20729         New hooks.
20731         (speedbar-separator-face): New face.
20733         (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
20734         (speedbar-ignored-modes): Add fundamental-mode.
20735         (speedbar-directory-unshown-regexp): Add . directories.
20737         (speedbar-key-map): Remove old SPC and DEL page up/down keys.
20738         (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
20739         `]' for full expand/close.
20740         (speedbar-buffers-key-map): Add SPC to toggle node expansion.
20742         (speedbar-check-vc): Support hidden files.
20743         (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
20744         (speedbar-this-file-in-vc): Use vc-state if available.  If VC
20745         state is nil, it is not checked out.
20747         (speedbar-line-text, speedbar-line-token): Support expand buttons
20748         with no text.
20749         (speedbar-refresh): Universal argument acts as power-click.
20750         (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
20751         that buffer to get variable values.
20753         And many other bugfixes.
20755         * dframe.el, ezimage.el, sb-image.el: New files.
20757         * sb-*.xpm: Remove files.  New image files installed into
20758         etc/images/ezimage.
20760 2005-09-30  Kenichi Handa  <handa@m17n.org>
20762         * ps-mule.el (ps-mule-show-warning): If a character is in
20763         ps-print-translation-table, don't treat it as non-printable.
20765 2005-09-30  David Ponce  <david@dponce.com>
20767         * tree-widget.el (tree-widget-themes-load-path): New variable.
20768         (tree-widget-themes-directory): Doc fix.
20769         (tree-widget-image-formats) [Emacs]: Doc fix.
20770         (tree-widget--locate-sub-directory): New function.
20771         (tree-widget-themes-directory): Use it.
20773         * recentf.el (recentf-filename-handlers): Rename from
20774         `recentf-filename-handler'.  Allow a list of functions.
20775         (recentf-menu-items-for-commands): Fix :help strings.
20776         (recentf-apply-filename-handlers): New function.
20777         (recentf-expand-file-name): Use it.
20778         (recentf-cleanup): Remove duplicates too.
20780 2005-09-29  Juri Linkov  <juri@jurta.org>
20782         * faces.el: Rearrange face definitions to be in the same order as
20783         their face descriptions in "(emacs)Standard Faces".
20785         * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
20787         * tooltip.el (tooltip): Add group `basic-faces'.
20789         * buff-menu.el (Buffer-menu-buffer): Remove group
20790         `font-lock-highlighting-faces'.
20792         * progmodes/compile.el (compilation-error, compilation-warning)
20793         (compilation-info, compilation-line-number, compilation-column-number):
20794         Change group from `font-lock-highlighting-faces' to `compilation'.
20796         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
20797         (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
20798         (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
20799         (vhdl-font-lock-reserved-words-face)
20800         (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
20801         `font-lock-highlighting-faces'.
20803         * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
20805 2005-09-28  Kim F. Storm  <storm@cua.dk>
20807         * emulation/cua-base.el: Set CUA move property on additional commands:
20808         up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
20809         forward-sexp, backward-sexp, forward-list, backward-list.
20811 2005-09-28  Romain Francoise  <romain@orebokech.com>
20813         * comint.el (comint-show-output): Really set point at the
20814         beginning of the output when not using `comint-use-prompt-regexp'.
20816 2005-09-27  Jay Belanger  <belanger@truman.edu>
20818         * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
20819         in TeX mode.
20821 2005-09-26  Juanma Barranquero  <lekktu@gmail.com>
20823         * textmodes/org.el (org-table-sum): Fix format string.
20825         * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
20826         Quote face names.
20828 2005-09-26  Romain Francoise  <romain@orebokech.com>
20830         * isearch.el (isearch-forward-regexp): Close doc string.
20832 2005-09-25  Richard M. Stallman  <rms@gnu.org>
20834         * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
20836         * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
20838         * progmodes/compile.el (compilation-error-properties):
20839         When getting the file from the previous error message,
20840         correctly decode the new data format.
20842         * progmodes/cc-cmds.el (c-electric-paren):
20843         Call old-blink-paren only for close-paren.
20845 2005-09-24  Andreas Schwab  <schwab@suse.de>
20847         * term/rxvt.el (rxvt-register-default-colors): Delete redundant
20848         condition.
20850 2005-09-25  Romain Francoise  <romain@orebokech.com>
20852         * dired-aux.el (dired-copy-file-recursive):
20853         * dired.el (dired-delete-file):
20854         * ediff-mult.el (ediff-dir-diff-copy-file):
20855         * ediff-util.el (ediff-test-save-region):
20856         * forms.el (forms-mode):
20857         * ido.el (ido-file-internal, ido-delete-file-at-head):
20858         * log-edit.el (log-edit-done):
20859         * ses.el (ses-yank-resize):
20860         * play/gomoku.el (gomoku-human-plays, gomoku)
20861         (gomoku-human-resigns, gomoku-prompt-for-other-game)
20862         (gomoku-offer-a-draw):
20863         * play/landmark.el (lm-human-resigns, lm):
20864         * net/eudcb-ldap.el (eudc-ldap-check-base):
20865         * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
20866         * progmodes/ebrowse.el (ebrowse-find-pattern):
20867         * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
20868         * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
20869         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
20871         * vc.el (vc-delete-file):
20872         * play/gomoku.el (gomoku-terminate-game, gomoku)
20873         (gomoku-prompt-for-move, gomoku-human-takes-back):
20874         * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
20875         (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
20877 2005-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
20879         * term/rxvt.el (rxvt-register-default-colors): Add support for 255
20880         color rxvt terminals by using the code xterm.el used to use before
20881         2005-04-09 in order to match the colors used by rxvt.
20883 2005-09-24  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
20885         * term/rxvt.el (rxvt-register-default-colors): Add support for 88
20886         colors rxvt-unicode terminals by using the same code as xterm.el.
20888 2005-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20890         * textmodes/tex-mode.el (tex-font-lock-append-prop)
20891         (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
20892         new symbol used for the tex-verbatim face.
20894 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
20896         * woman.el (woman-file-name):
20897         * wid-edit.el (widget-file-prompt-value)
20898         (widget-coding-system-prompt-value):
20899         * w32-fns.el (set-w32-system-coding-system):
20900         * vc.el (vc-version-diff, vc-annotate):
20901         * textmodes/reftex-auc.el (reftex-arg-cite)
20902         (reftex-arg-index-tag):
20903         * textmodes/refer.el (refer-get-bib-files):
20904         * textmodes/artist.el (artist-figlet-choose-font):
20905         * terminal.el (terminal-emulator):
20906         * replace.el (occur-read-primary-args):
20907         * rect.el (string-rectangle, string-insert-rectangle):
20908         * ps-print.el (ps-print-preprint):
20909         * progmodes/pascal.el (pascal-goto-defun):
20910         * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
20911         * progmodes/compile.el (compilation-find-file):
20912         * printing.el (pr-interactive-n-up):
20913         * play/animate.el (animate-birthday-present):
20914         * net/rcompile.el (remote-compile):
20915         * man.el (man, Man-goto-section, Man-follow-manual-reference):
20916         * mail/rmailsum.el (rmail-summary-search-backward)
20917         (rmail-summary-search):
20918         * mail/rmailout.el (rmail-output-read-rmail-file-name)
20919         (rmail-output-read-file-name):
20920         * mail/rmail.el (rmail-search, rmail-search-backwards):
20921         * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
20922         * locate.el (locate):
20923         * international/quail.el (quail-show-keyboard-layout):
20924         * international/mule.el (set-buffer-file-coding-system)
20925         (revert-buffer-with-coding-system, set-file-name-coding-system)
20926         (set-terminal-coding-system, set-keyboard-coding-system)
20927         (set-next-selection-coding-system):
20928         * international/mule-diag.el (describe-coding-system)
20929         (describe-font, describe-fontset):
20930         * international/mule-cmds.el (universal-coding-system-argument)
20931         (search-unencodable-char, describe-input-method)
20932         (set-language-environment, describe-language-environment):
20933         * international/codepage.el (codepage-setup):
20934         * international/code-pages.el (codepage-setup):
20935         * info.el (Info-search, Info-follow-reference)
20936         (Info-search-backward):
20937         * emacs-lisp/advice.el (ad-read-advised-function)
20938         (ad-read-advice-class, ad-clear-cache, ad-activate)
20939         (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
20940         (ad-enable-advice, ad-disable-advice, ad-remove-advice)
20941         (ad-read-regexp):
20942         * ediff-util.el (ediff-toggle-regexp-match):
20943         * ediff-ptch.el (ediff-prompt-for-patch-file):
20944         * dired-aux.el (dired-diff):
20945         * diff.el (diff):
20946         * cus-edit.el (custom-variable-prompt):
20947         * calendar/timeclock.el (timeclock-ask-for-project):
20948         * calc/calcalg3.el (calc-get-fit-variables):
20949         * calc/calc-store.el (calc-edit-variable)
20950         (calc-permanent-variable):
20951         * vc-mcvs.el (vc-mcvs-register):
20952         * shadowfile.el (shadow-define-literal-group):
20953         * woman.el (woman-file-name):
20954         * vc.el (vc-version-diff, vc-merge):
20955         * textmodes/reftex-index.el (reftex-index-complete-tag):
20956         * format.el (format-decode-buffer, format-decode-region):
20957         * emulation/viper-cmd.el (viper-read-string-with-history):
20958         * emacs-lisp/debug.el (cancel-debug-on-entry):
20959         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
20960         * ediff.el (ediff-merge-revisions)
20961         (ediff-merge-revisions-with-ancestor, ediff-revision):
20962         * completion.el (interactive-completion-string-reader):
20963         * calc/calc-prog.el (calc-user-define-formula):
20964         Follow convention for reading with the minibuffer.
20966 2005-09-24  Steven Huwig  <steven_h@acm.org>  (tiny change)
20968         * progmodes/python.el (python-describe-symbol): Add globals() and
20969         locals() to the arguments of emacs.ehelp.
20971 2005-09-24  Magnus Henoch  <mange@freemail.hu>
20973         * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
20974         New function, code extracted from ispell-valid-dictionary-list.
20975         (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
20976         Call it.
20978 2005-09-24  Eli Zaretskii  <eliz@gnu.org>
20980         * subr.el (version-regexp-alist): Extend valid syntax for version
20981         strings: allow any of the characters -,_,+ to separate the
20982         alpha/beta/rc part from the version part.  Doc fix.
20983         (version-to-list): Doc fix.  Bind case-fold-search to t, as advertised.
20985 2005-09-23  David Reitter  <david.reitter@gmail.com>
20987         * mail/mailclient.el: New file.
20989 2005-09-23  Richard M. Stallman  <rms@gnu.org>
20991         * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
20992         (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
20993         Doc fixes.
20995         * progmodes/cc-mode.el (c-font-lock-init):
20996         Specify font-lock-lines-before.
20998 2005-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
21000         * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
21001         whole conflict.
21003 2005-09-23  Carsten Dominik  <dominik@science.uva.nl>
21005         * textmodes/org.el (org-mode-map, orgtbl-mode-map):
21006         Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix.  Make use
21007         of `remap' feature when available.  Additional key bindings for
21008         better tty support.
21009         (org-mode-restart, org-force-self-insert): New commands.
21010         (org-time-stamp-inactive): New command.
21011         (org-remap): New function.
21012         (org-table-auto-blank-field, org-level-color-stars-only): New options.
21013         (org-enable-fixed-width-editor): Move to `org-structure'
21014         customization group.
21015         (org-self-insert-command, orgtbl-self-insert-command): Modify to
21016         blank field after field motion commands.
21018 2005-09-23  Kenichi Handa  <handa@m17n.org>
21020         * international/mule-cmds.el (set-language-environment):
21021         Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
21022         have to call utf-translate-cjk-load-tables.
21024 2005-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21026         * mouse.el (mouse-move-drag-overlay): Fix last change.
21028 2005-09-22  David Ponce  <david@dponce.com>
21030         * tree-widget.el (tree-widget-value-create): Fix previous change.
21032 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
21034         * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
21036 2005-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21038         * mouse.el (mouse-move-drag-overlay): New function.
21039         (mouse-drag-region-1): Use it.
21040         Try to simplify a bit the state handling.  Handle clicks on links
21041         inside intangible areas.
21042         (mouse-save-then-kill): Minor simplification.
21043         (mouse-secondary-overlay): Make it always non-nil instead of
21044         recreating it each time.
21045         (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
21046         (mouse-kill-secondary, mouse-secondary-save-then-kill):
21047         Simplify accordingly.
21049 2005-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
21051         * term/rxvt.el (rxvt-standard-colors): Fix some colors.
21053 2005-09-20  Michael Kifer  <kifer@cs.stonybrook.edu>
21055         * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
21056         (ediff-file-name-sans-prefix): Treat nil as an empty string.
21057         (ediff-fixup-patch-map): Better heuristic for intuiting the file names
21058         to patch.
21060         * ediff-util.el: Use insert-buffer-substring.
21062         * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
21064         * emulation/viper-cmd.el (viper-change-state): Don't move over the
21065         field boundaries in the minibuffer.
21066         (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
21067         (viper-minibuffer-post-command-hook): New hook.
21068         (viper-line): Don't move cursor at bolp.
21070         * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
21072         * emulation/viper-init.el: Add alias to make-variable-buffer-local to
21073         avoid compiler warnings.
21075         * emulation/viper-macs.el (ex-map): Better messages.
21077         * emulation/viper-utils.el (viper-beginning-of-field): New function.
21079         * emulation/viper.el: Replace make-variable-buffer-local with
21080         viper-make-variable-buffer-local everywhere, to avoid warnings.
21082 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21084         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
21085         Delete unused var `old-selected-window'.
21086         (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
21087         (mouse-drag-secondary): Delete unused var `start-frame'.
21089 2005-09-19  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
21091         * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
21093 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21095         * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
21096         Re-indent within 80 columns.  Use inhibit-read-only.
21098 2005-09-19  Romain Francoise  <romain@orebokech.com>
21100         * calendar/diary-lib.el (mark-diary-entries): Revert last change.
21102 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21104         * font-lock.el (font-lock-default-fontify-region): Don't add a line
21105         unconditionally, since the after-change-function already did it.
21107 2005-09-19  Miles Bader  <miles@gnu.org>
21109         * net/newsticker.el: Get rid of CVS keyword.
21111 2005-09-19  Johan Bockg\e,Ae\e(Brd  <bojohan+sf@dd.chalmers.se>
21113         * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
21114         The prompt is formatted later.
21116 2005-09-19  David Ponce  <david@dponce.com>
21118         * tree-widget.el (tree-widget-value-create): Save the converted
21119         tree :node widget.
21121 2005-09-19  Juanma Barranquero  <lekktu@gmail.com>
21123         * progmodes/sh-script.el (sh-blink): Fix spurious reference to
21124         variable `message'.
21126 2005-09-18  Michael Albinus  <michael.albinus@gmx.de>
21128         * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
21129         to cover prompts like "login as:".  Reported by Slawomir Nowaczyk
21130         <slawomir.nowaczyk.847@student.lu.se>.
21132 2005-09-18  Chong Yidong  <cyd@stupidchicken.com>
21134         * image.el (image-load-path): Use symbol `data-directory' instead
21135         of its value, for backward compatibility with packages that bind
21136         it during `find-image'.  Suggested by Katsumi Yamaoka.
21137         (image-search-load-path): Handle symbols whose values are strings.
21139 2005-09-18  Romain Francoise  <romain@orebokech.com>
21141         * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
21142         with-current-buffer form in save-excursion.
21144 2005-09-18  Deepak Goel  <deego@gnufans.org>
21146         * apropos.el (apropos-command): Fix `message' call: first arg
21147         should be a format spec.  In this and all other cases that appear
21148         below and elsewhere in the source code, I made a change only when
21149         two conditions were satisfied: [1] I can think of a possibility
21150         that the arguments would cause an error, for example, the code in
21151         question relies on external variables such as filenames.  [2] I
21152         was sure that the arg to `message' could not have been nil in the code.
21154         * textmodes/tildify.el (tildify-region): Ditto.
21156         * textmodes/reftex-index.el (reftex-index-change-entry)
21157         (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
21158         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
21159         * textmodes/org.el (org-complete, org-deadline, org-schedule)
21160         (org-priority, org-table-sum):
21161         * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
21162         * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
21163         (flyspell-word, flyspell-display-next-corrections):
21164         * textmodes/bibtex.el (bibtex-print-help-message):
21165         * textmodes/artist.el (artist-key-set-point-poly):
21166         * term/mac-win.el (mac-services-insert-text):
21167         * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
21168         (vhdl-hooked-abbrev, vhdl-template-insert-fun)
21169         (vhdl-port-paste-testbench, vhdl-compose-new-component)
21170         (vhdl-compose-configuration):
21171         * progmodes/sh-script.el (sh-blink, sh-show-indent)
21172         (sh-set-indent, sh-learn-line-indent):
21173         * progmodes/ps-mode.el (ps-mode-target-column):
21174         * progmodes/idlwave.el (idlwave-make-tags)
21175         (idlwave-scan-library-catalogs):
21176         * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
21177         * progmodes/gud.el (gud-jdb-analyze-source):
21178         * progmodes/flymake.el (flymake-log):
21179         * progmodes/ebnf2ps.el (ebnf-generate-region):
21180         * progmodes/cmacexp.el (c-macro-expansion):
21181         * progmodes/ada-xref.el (ada-treat-cmd-string):
21182         * progmodes/ada-mode.el (ada-create-case-exception-substring)
21183         (ada-justified-indent-current, ada-batch-reformat):
21184         * play/zone.el (zone):
21185         * play/landmark.el (lm-move):
21186         * play/decipher.el (decipher-show-alphabet):
21187         * net/newsticker.el (newsticker--display-jump)
21188         (newsticker--display-scroll):
21189         * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
21190         (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
21191         * mail/feedmail.el (feedmail-dump-message-to-queue):
21192         * eshell/esh-proc.el (eshell-remove-process-entry):
21193         * emulation/ws-mode.el (ws-last-error):
21194         * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
21195         (viper-record-kbd-macro):
21196         * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
21197         * emacs-lisp/lisp-mnt.el (lm-report-bug):
21198         * emacs-lisp/find-func.el (find-function-noselect):
21199         * calendar/timeclock.el (timeclock-status-string)
21200         (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
21201         (timeclock-when-to-leave-string):
21202         * calendar/icalendar.el (icalendar--convert-ical-to-diary):
21203         * calc/calc-units.el (calc-enter-units-table):
21204         * calc/calc-mode.el (calc-mode-record-mode):
21205         * woman.el (woman-mini-help):
21206         * wdired.el (wdired-change-to-wdired-mode):
21207         * vc.el (vc-retrieve-snapshot):
21208         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
21209         * startup.el (display-startup-echo-area-message):
21210         * simple.el (set-goal-column):
21211         * ses.el (ses-command-hook, ses-recalculate-cell):
21212         * server.el (server-process-filter):
21213         * printing.el (pr-interface-txt-print, pr-interface-printify)
21214         (pr-interface-ps):
21215         * pcvs.el (cvs-help):
21216         * log-edit.el (log-edit, log-edit-mode-help):
21217         * iswitchb.el (iswitchb-possible-new-buffer):
21218         * isearch.el (isearch-edit-string):
21219         * image-mode.el (image-mode, image-minor-mode):
21220         * ibuf-macs.el (define-ibuffer-filter):
21221         * hi-lock.el (hi-lock-find-patterns):
21222         * files.el (toggle-read-only):
21223         * ediff-util.el (ediff-copy-diff)
21224         (ediff-write-merge-buffer-and-maybe-kill):
21225         * echistory.el (Electric-history-undefined):
21226         * dnd.el (dnd-insert-text):
21227         * dired-aux.el (dired-query):
21228         * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
21229         * bookmark.el (bookmark-bmenu-locate):
21230         * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
21231         Fix `message' calls to ensure first arg is a format string.
21232         The change was made only when these two conditions were satisfied:
21233         [1] when there is a possibility that the arguments would cause an error
21234         for example, if the code in question relies on external variables
21235         such as filenames, and
21236         [2] if the arg to `message' could not have been nil in the code.
21238         * pcomplete.el (pcomplete--help): Fix `message' format spec.
21239         Not having a %s would be weird, though not technically wrong.
21241 2005-09-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21243         * term/mac-win.el (mac-add-charset-info): Doc fix.
21245 2005-09-17  Romain Francoise  <romain@orebokech.com>
21247         * shell.el (shell-resync-dirs): Handle echoing processes more
21248         reliably.  Don't insert resync command if `comint-process-echoes'
21249         is non-nil.
21251 2005-09-17  Magnus Henoch  <mange@freemail.hu>
21253         * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
21254         (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
21255         aspell versions >= 0.60.
21256         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
21257         only if ispell-aspell-supports-utf8 is non-nil.
21259 2005-09-17  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
21261         * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
21262         buffer-local value to lisp-indent-function.
21264 2005-09-17  Milan Zamazal  <pdm@zamazal.org>
21266         * progmodes/glasses.el (glasses-make-readable): If
21267         glasses-separator differs from underscore, put appropriate
21268         overlays over underscore characters.
21269         (glasses-convert-to-unreadable): If glasses-separator differs from
21270         underscore, try to convert glasses-separator characters to
21271         underscores.
21273 2005-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
21275         * calendar/diary-lib.el (mark-diary-entries): Don't move point.
21276         Use with-syntax-table and dolist.
21278 2005-09-16  Carsten Dominik  <dominik@science.uva.nl>
21280         * textmodes/reftex-auc.el:
21281         * textmodes/reftex-cite.el:
21282         * textmodes/reftex-dcr.el:
21283         * textmodes/reftex-global.el:
21284         * textmodes/reftex-parse.el:
21285         * textmodes/reftex-ref.el:
21286         * textmodes/reftex-sel.el:
21287         * textmodes/reftex-toc.el:
21288         * textmodes/reftex-vars.el:
21289         * textmodes/reftex.el: Small changes to remove compiler warnings.
21291         * textmodes/reftex-index.el: Likewise.
21292         (reftex-query-index-phrase): More efficient use of markers.
21294 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
21296         * image.el (image-load-path): New variable.
21297         (image-search-load-path): New function.
21298         (find-image): Search for images in `image-load-path'.
21300 2005-09-15  Richard M. Stallman  <rms@gnu.org>
21302         * follow.el: Change Maintainer field.
21304 2005-09-15  David Ponce  <david@dponce.com>
21306         * recentf.el (recentf-save-file-modes): New option.
21307         (recentf-save-list): Use it.
21309 2005-09-15  Nick Roberts  <nickrob@snap.net.nz>
21311         * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
21312         (mode-line-mule-info, mode-line-modified): Move bindings from
21313         mouse-3 to mouse-1.
21315 2005-09-15  Chong Yidong  <cyd@stupidchicken.com>
21317         * simple.el (sendmail-user-agent-compose): Revert last change.
21319 2005-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21321         * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
21322         Use with-current-buffer.
21323         (ange-ftp-gwp-start): Remove unused var `gw-user'.
21324         (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
21325         (ange-ftp-insert-directory): Remove unused var `short'.
21326         (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
21328         * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
21329         (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
21331         * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
21332         (check-calendar-holidays, diary-list-entries): Autoload.
21333         Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
21334         (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
21336         * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
21337         which mistakenly removed a call to display-buffer.
21339 2005-09-14  Juanma Barranquero  <lekktu@gmail.com>
21341         * obsolete/iso-insert.el: Move to obsolete/ from international/.
21343 2005-09-14  Thien-Thi Nguyen  <ttn@gnu.org>
21345         * progmodes/hideshow.el
21346         (hs-hide-comments-when-hiding-all): Remove autoload cookie.
21347         (hs-allow-nesting): New user var.
21348         (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
21349         (hs-hide-block-at-point): When nesting allowed,
21350         if there is already an overlay in place, delete it.
21351         (hs-safety-is-job-n): Delete func; remove call sites.
21352         (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
21353         (hs-overlay-at): New func.
21354         (hs-already-hidden-p, hs-show-block): Use it.
21355         (hs-hide-all): Don't pre-clean if nesting allowed.
21356         (hs-show-all): Temporarily disallow
21357         nesting around call to `hs-discard-overlays'.
21359 2005-09-14  Chong Yidong  <cyd@stupidchicken.com>
21361         * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
21362         Delete unused local var.
21364 2005-09-13  Juanma Barranquero  <lekktu@gmail.com>
21366         * help-fns.el (describe-categories): "?\ " -> "?\s".
21367         (help-do-arg-highlight): Recognize also ARG-n, as in
21368         `move-to-left-margin' (ARG+n is already recognized).  Simplify.
21370         * international/codepage.el (dos-unsupported-char-glyph):
21371         * net/newsticker.el (tool-bar-map, w3-mode-map)
21372         (w3m-minor-mode-map):
21373         * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
21374         (ent-alist):
21375         * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
21377 2005-09-13  Chong Yidong  <cyd@stupidchicken.com>
21379         * custom.el (custom-push-theme): Handle the case where a symbol is
21380         bound but face properties have not yet been assigned.
21382         * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
21383         Fix behavior if noerase is `t' and there is no mail buffer.
21385         * simple.el (sendmail-user-agent-compose): Use a new mail buffer
21386         if `continue' is nil, rather than signal an error.
21388 2005-09-12  Richard M. Stallman  <rms@gnu.org>
21390         * font-lock.el (font-lock-keywords): Add autoload.
21392         * help-fns.el (describe-variable): Rearrange to put source link
21393         in a predictable place.
21395         * net/newsticker.el: New file.
21397 2005-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21399         * calendar/calendar.el (calendar-for-loop): Add edebug info.
21400         (calendar-basic-setup): Use the new nil arg.
21401         (number-of-diary-entries): Move to diary-lib.el.
21403         * calendar/diary-lib.el: Use with-current-buffer, match-string.
21404         (diary-list-entries): Use with-syntax-table and dolist.
21405         Rename from list-diary-entries.
21406         Use number-of-diary-entries if `number' is nil.
21407         (diary, diary-view-entries): Use this new name and new nil arg value.
21408         (number-of-diary-entries): Move from calendar.el.
21409         (diary-unhide-everything): New function.
21410         (include-other-diary-files, fancy-diary-display)
21411         (diary-show-all-entries, make-diary-entry): Use it.
21412         (diary-mail-entries): Use buffer-string.
21413         (mark-diary-entries): Fix long standing paren typo.
21414         (diary-sexp-entry): Use count-lines.
21415         (make-diary-entry): Avoid `previous-line'.
21416         (diary-mode-map): New var.
21417         (diary-mode): Redraw cal after saving.  Setup header-line.
21418         (fancy-diary-display-mode): Use local-set-key.
21420         * startup.el (command-line): Try calling various terminal-init-foo-bar
21421         functions by stripping hyphenated suffixes from $TERM.
21423         * files.el (normal-mode): Check boundness of font-lock-keywords.
21425 2005-09-12  Richard M. Stallman  <rms@gnu.org>
21427         * progmodes/compile.el: Don't decide a file's directory
21428         until the user actually tries to go there.
21429         (compilation-next-error-function):
21430         Pass compilation-find-file the directory from the file-struct.
21431         (compilation-internal-error-properties): Separate local FILE-STRUCT
21432         from FILE.  Doc the args better.  Rename arg FMT to FMTS.
21433         (compilation-find-file): Arg DIR renamed to DIRECTORY.
21434         Expand it, and if nil, use default-directory.
21435         (compilation-get-file-structure): Don't mix specified directory
21436         with default directory.  Put specified directory into
21437         file-struct.  Don't make the file name absolute.
21439         * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
21440         (compile-command): Add autoload.
21441         (compilation-disable-input): Add autoload.
21443 2005-09-11  Stephen Gildea  <gildea@stop.mail-abuse.org>
21445         * time-stamp.el: Mention variable `time-stamp-pattern' in doc
21446         strings of the variables it can override.
21447         (time-stamp): New (as yet undocumented) time-stamp-format escapes
21448         %Q and %q, for fully-qualified domain name and unqualified host name.
21450 2005-09-11  Kim F. Storm  <storm@cua.dk>
21452         * emacs-lisp/authors.el (authors-aliases): Update list.
21453         (authors-fixed-entries): Update mldrag.el entry.
21455 2005-09-10  Alan Mackenzie  <acm@muc.de>
21457         * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
21458         from the region narrowed to.
21460 2005-09-10  Magnus Henoch  <mange@freemail.hu>
21462         * textmodes/ispell.el (ispell-check-version): Signal an error if
21463         aspell version is less than 0.60.
21465 2005-09-10  Pascal Dupuis  <Pascal.Dupuis@esat.kuleuven.be>  (tiny change)
21467         * progmodes/octave-inf.el (inferior-octave-startup):
21468         Resync current dir at the end.
21470 2005-09-10  Emilio C. Lopes  <eclig@gmx.net>
21472         * woman.el (woman-topic-at-point-default):
21473         Rename to woman-use-topic-at-point-default.
21474         (woman-topic-at-point): Rename to woman-use-topic-at-point.
21475         (woman-file-name): Reflect renames above.  Automatically use the
21476         word at point as topic if woman-use-topic-at-point is non-nil.
21477         Otherwise offer it as default but don't insert it in the
21478         minibuffer.  Also use `test-completion' instead of `assoc' as
21479         suggested by Stefan Monnier.
21481 2005-09-10  Andre Spiegel  <spiegel@gnu.org>
21483         * vc.el (vc-directory, vc-update-change-log): Throw an error on
21484         the attempt to do it over Tramp.  This is not yet supported.
21486 2005-09-10  Eli Zaretskii  <eliz@gnu.org>
21488         * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
21489         (menu-bar-non-minibuffer-window-p): New functions.
21490         ("Split Window", "Save As..."): Use them.
21491         ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
21492         ("Print Buffer", "Truncate Long Lines in this Buffer"):
21493         Use menu-bar-menu-frame-live-and-visible-p.
21494         ("Save Buffer", "Insert File", "Open Directory...")
21495         ("Open File...", "Visit New File..."):
21496         Use menu-bar-non-minibuffer-window-p.
21497         (kill-this-buffer-enabled-p, dired <menu-enable>):
21498         Use menu-bar-non-minibuffer-window-p.
21500 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
21502         * cus-start.el (all): Don't complain about fringe-related
21503         built-ins if fringes are not supported.  Ditto about
21504         selection-related built-ins.  Fix the test for GTK-related built-ins.
21506         * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
21507         ("Postscript Print Buffer", "Print Region", "Save As...")
21508         ("Save", "Insert File...", "Open Directory...")
21509         ("Open File...", "Visit New File..."")
21510         ("Truncate Long Lines in this Buffer"): Don't look at
21511         menu-updating-frame if this display does not support multiple frames.
21513 2005-09-09  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
21515         * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
21517 2005-09-09  Emilio C. Lopes  <eclig@gmx.net>
21519         * woman.el: Format- and whitespace-related changes.
21521 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
21523         * woman.el: Fix my email address.
21525 2005-09-08  Richard M. Stallman  <rms@gnu.org>
21527         * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
21528         (sh-mode): Locally set skeleton-pair-default-alist.
21530         * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
21532         * progmodes/flymake.el: Require `compile' unconditionally.
21534         * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
21536         * woman.el (woman-file-name): Provide a default, not initial input.
21538         * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
21540         * font-lock.el (font-lock-support-mode): Doc fix.
21542         * descr-text.el (describe-property-list): Handle non-symbol prop names.
21544 2005-09-08  Richard M. Stallman  <rms@gnu.org>
21546         * simple.el (blink-matching-open): Get rid of text props from
21547         the string shown in echo area.  Don't permanently set point.
21548         Some rearrangements.
21550 2005-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
21552         * recentf.el (recentf-filename-handler): Add custom choice
21553         `abbreviate-file-name'.
21555         * msb.el (msb--very-many-menus): Fix typo.
21557         * disp-table.el (standard-display-european): Don't set
21558         enable-multibyte-characters to nil.
21560 2005-09-08  David Ponce  <david@dponce.com>
21562         * recentf.el (recentf-show-file-shortcuts-flag): New option.
21563         (recentf-expand-file-name): Doc fix.
21564         (recentf-dialog-mode-map): Define digit shortcuts.
21565         (recentf--files-with-key): New variable.
21566         (recentf-show-digit-shortcut-filter): New function.
21567         (recentf-open-files-items): New function.
21568         (recentf-open-files): Use it.
21569         (recentf-open-file-with-key): New command.
21571 2005-09-08  Chong Yidong  <cyd@stupidchicken.com>
21573         * buff-menu.el (Buffer-menu-sort-by-column): New function.
21574         Suggested by Kim F. Storm.
21575         (Buffer-menu-sort-button-map): Global keymap for sort buttons.
21576         (Buffer-menu-make-sort-button): Use global keymap.
21578 2005-09-07  Michael Albinus  <michael.albinus@gmx.de>
21580         * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
21581         (Man-getpage-in-background-advice): Remove defadvice; it isn't
21582         necessary any longer with the remapped command.
21583         (Man-bgproc-sentinel-advice): Remove defadvice which counts
21584         formatting time only.
21586         * net/tramp.el (tramp-action-password)
21587         (tramp-multi-action-password): Compile the password prompt from
21588         `method', `user' and `host'.  Sometimes it isn't obvious which
21589         password to enter, for example with remote files offered by
21590         recentf.el, or with multiple steps.  Suggested by Robert Marshall
21591         <robert@chezmarshall.freeserve.co.uk>.
21593 2005-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21595         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
21596         Fix regexp for when "s///" is at the beginning of line.
21598 2005-09-07  Jay Belanger  <belanger@truman.edu>
21600         * calc/calc-poly.el (math-expand-term): Multiply out any powers
21601         when in matrix mode.
21603 2005-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
21605         * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
21606         non-anonymous functions.
21608 2005-09-06  Chong Yidong  <cyd@stupidchicken.com>
21610         * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
21611         when using a header line.  Otherwise, use mouse-1-click-follows-link.
21613         * mouse.el (mouse-drag-header-line): Do nothing if the header-line
21614         can't be moved; don't signal an error.
21616 2005-09-05  Chong Yidong  <cyd@stupidchicken.com>
21618         * cus-theme.el (custom-theme-write-faces): Save the current face
21619         spec, not the defface spec.
21621         * custom.el (custom-known-themes): Clarify meaning of "standard".
21622         (custom-push-theme): Save old values in the standard theme.
21623         (disable-theme): Correct typo.
21624         (custom-face-theme-value) Deleted unused function.
21625         (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
21627 2005-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21629         * progmodes/compile.el (compilation-goto-locus): Take into account
21630         iconified frames when determining whether the buffer is
21631         already visible.
21632         Don't reset window height if the window already existed.
21634 2005-09-04  Chong Yidong  <cyd@stupidchicken.com>
21636         * custom.el (load-theme): Rename from require-theme.
21637         Add interactive spec.
21638         (enable-theme): Rename from custom-enable-theme.
21639         Add interactive spec.
21640         (disable-theme): Rename from custom-disable-theme.
21641         Add interactive spec.
21642         (custom-make-theme-feature): Doc fix.
21643         (custom-theme-directory): Doc fix.
21644         (provide-theme): Call enable-theme.
21646 2005-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
21648         * obsolete/lazy-lock.el (lazy-lock-mode):
21649         * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
21650         font-lock-mode if it's off.  Print a warning instead.
21652         * progmodes/compile.el (compilation-start): Ignore errors if the
21653         process died before we get to send-eof.
21655         * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
21656         Undo last change.  Enclosing the result in quotes broke things on Unix
21657         since tex-send-command passes it through shell-quote-argument.
21658         (tex-send-command): Pass `file' through convert-standard-filename
21659         when possible.
21660         (tex-uptodate-p): Handle the case where TeX hasn't put additional
21661         info in a transcript.
21663 2005-09-02  Dan Nicolaescu  <dann@ics.uci.edu>
21665         * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
21666         fix compilation warning.  Reorder the key definitions to group
21667         together keys emitted by the current version of xterm.
21669         * progmodes/vhdl-mode.el (vhdl-highlight-faces)
21670         (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
21671         Reorder predicates to correct min-color usage.
21673 2005-09-01  Chong Yidong  <cyd@stupidchicken.com>
21675         * longlines.el (longlines-mode): Inhibit read-only when encoding.
21676         Kill local variables when longlines-mode is turned off.
21678 2005-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21680         * international/mule-cmds.el (set-locale-environment): Soothe compiler.
21682         * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
21684         * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
21686         * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
21687         (font-lock-lines-before): Change default to being inactive.
21688         (font-lock-default-fontify-region): Obey font-lock-lines-before.
21689         (font-lock-after-change-function): Don't handle f-l-lines-before here.
21691 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
21693         * net/tramp.el (tramp-handle-make-auto-save-file-name):
21694         Deactivate temporarily advice if active (not needed for Emacs 22,
21695         but for backwards compatibility).
21696         (tramp-exists-file-name-handler): Rewrite.  First implementation
21697         was too simple.
21698         (tramp-advice-make-auto-save-file-name):
21699         Call `tramp-handle-make-auto-save-file-name' (again, just for
21700         backwards compatibility).
21702 2005-08-31  Reto Zimmermann  <reto@gnu.org>
21704         * progmodes/vhdl-mode.el
21705         (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
21706         (vhdl-end-p): Fix indentation bug "else" after "-- when".
21707         (vhdl-set-default-project): New function (easier setting of default).
21708         (vhdl-port-copy): Handle extended identifiers for generics.
21709         (vhdl-compiler-alist): Better description for error message regexp.
21710         (vhdl-make): Query for target, use previous as default.
21711         (vhdl-port-copy): Fix port copy for port names starting with "signal".
21712         (vhdl-font-lock-keywords-2): Fix fontification for record
21713         el. assign.
21714         (vhdl-speedbar-make-subpack-line): Add package body link.
21715         (vhdl-generate-makefile-1): Not include itself as dependency.
21716         (vhdl-font-lock-init): Highlight c-preprocessor directives.
21717         (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
21718         (vhdl-get-syntactic-context): Handle c-preprocessor directives.
21719         (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
21720         (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
21721         (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
21722         (vhdl-import-project): Add string argument for `error'.
21723         (vhdl-compose-configuration)
21724         (vhdl-compose-configuration-architecture): Add configuration
21725         declaration generation.
21726         (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
21727         (vhdl-trailer-re): Add "record" keyword (better indentation).
21728         (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
21729         "[^ \t-\"]+".
21730         (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
21731         (vhdl-testbench-entity-file-name)
21732         (vhdl-testbench-architecture-file-name): Allow separate
21733         customization of testbench file names.
21734         (vhdl-beginning-of-block): Handle optional subprogram parameter list.
21735         (vhdl-get-visible-signals): Allow newline within alias declaration.
21736         (vhdl-update-sensitivity-list): Signal read only on certain attributes.
21737         (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
21738         (member-ignore-case): Alias for missing function in XEmacs.
21739         (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
21740         (vhdl-update-sensitivity-list): Ignore case on read signals.
21741         (vhdl-replace-string): Adjust case only for file names.
21742         (vhdl-update-sensitivity-list): Fix search for read signals.
21743         (vhdl-update-sensitivity-list): Exclude formal parameters.
21744         (vhdl-get-visible-signals): Include aliases of signals.
21745         (vhdl-get-visible-signals): Fix signal name searching.
21746         (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
21747         (vhdl-fixup-whitespace-region): Fix for character
21748         literals (e.g. `:').
21750 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
21752         * ansi-color.el (comint-last-output-start):
21753         * bs.el (font-lock-verbose):
21754         * diff-mode.el (add-log-buffer-file-name-function):
21755         * dired-x.el (vm-folder-directory):
21756         * faces.el (help-xref-stack-item):
21757         * files.el (font-lock-keywords):
21758         * find-lisp.el (dired-buffers, dired-subdir-alist):
21759         * ido.el (cua-inhibit-cua-keys):
21760         * log-view.el (cvs-minor-wrap-function):
21761         * outline.el (font-lock-warning-face):
21762         * simple.el (compilation-current-error):
21763         * speedbar.el (ange-ftp-path-format, efs-path-regexp)
21764         (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
21765         * tooltip.el (comint-prompt-regexp):
21766         * w32-fns.el (explicit-shell-file-name):
21767         * term/mac-win.el (mac-charset-info-alist)
21768         (mac-services-selection, mac-system-script-code):
21769         * term/tty-colors.el (msdos-color-values):
21770         * term/w32-win.el (xlfd-regexp-registry-subnum):
21771         * term/x-win.el (x-keysym-table, x-selection-timeout)
21772         (x-session-id, x-session-previous-id):
21773         * textmodes/ispell.el (mail-yank-prefix):
21774         * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
21775         * textmodes/org.el (calc-embedded-close-formula)
21776         (calc-embedded-open-formula)
21777         (font-lock-unfontify-region-function):
21778         * textmodes/reftex-global.el (isearch-next-buffer-function)
21779         (TeX-master):
21780         * textmodes/reftex.el (font-lock-keywords):
21781         * textmodes/tex-mode.el (font-lock-comment-face)
21782         (font-lock-doc-face):
21783         * textmodes/texinfo.el (outline-heading-alist):
21784         Add defvars.
21786         * textmodes/artist.el (x-pointer-crosshair): Add defvar.
21787         (artist-spray-chars, artist-mode-init, artist-replace-string)
21788         (artist-select-erase-char, artist-vap-find-endpoints-horiz)
21789         (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
21790         (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
21792         * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
21793         (conf-align-assignments): "?\ " -> "?\s".
21795         * textmodes/reftex-index.el (TeX-master): Add defvar.
21796         (reftex-index-phrases-marker): Move up defvar.
21798         * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
21799         (reftex-toc-include-labels-indicator)
21800         (reftex-toc-include-index-indicator)
21801         (reftex-toc-max-level-indicator): Move up declarations.
21803         * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
21804         of args to `tramp-run-real-handler', even if it's empty in this case.
21806 2005-08-31  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21808         * dired.el (dired-move-to-filename-regexp): Add date format for
21809         Mac OS X 10.3 in East Asian locales.
21811 2005-08-31  Michael Albinus  <michael.albinus@gmx.de>
21813         * files.el (make-auto-save-file-name): Add file name handler call
21814         if applicable.
21816         * net/tramp.el (tramp-file-name-handler-alist)
21817         (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
21818         (tramp-handle-make-auto-save-file-name): Rename from
21819         `tramp-make-auto-save-file-name'.
21820         (tramp-exists-file-name-handler): New defun.
21821         (tramp-advice-make-auto-save-file-name): Make defadvice only when
21822         `make-auto-save-file-name' is not a magic file name operation.
21824 2005-08-30  Richard M. Stallman  <rms@gnu.org>
21826         * files.el (risky-local-variable-p):
21827         Match `-predicates' and `-commands.
21829         * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
21830         (custom-save-all): Visit the file if necessary;
21831         kill the buffer if we created it.
21832         (custom-save-delete): Don't visit file or kill buffer here.
21834 2005-08-30  Carsten Dominik  <dominik@science.uva.nl>
21836         * textmodes/org.el (org-special-keyword): New face.
21837         (org-table-copy-down, org-table-eval-formula)
21838         (org-table-recalculate, org-init-section-numbers):
21839         Use `string-to-number' instead of `string-to-int'.
21840         (org-get-location): Use `insert-buffer-substring' instead of
21841         `insert-buffer'.
21842         (org-modify-diary-entry-string): New function.
21843         (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
21844         (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
21845         (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
21846         active region.
21847         (org-export-as-html): Handle QUOTE keyword.
21848         (org-quote-string): New option.
21849         (org-bookmark-jump-unhide): New function, used for
21850         `bookmark-after-jump-hook'.
21851         (org-diary-default-entry): Apply only when not called through
21852         `org-agenda'.
21854 2005-08-30  Juanma Barranquero  <lekktu@gmail.com>
21856         * net/eudc.el (mode-popup-menu):
21857         * play/handwrite.el (ps-printer-name, ps-lpr-command):
21858         * progmodes/ada-mode.el (compile-auto-highlight)
21859         (skeleton-further-elements):
21860         * progmodes/autoconf.el (font-lock-syntactic-keywords):
21861         * progmodes/cmacexp.el (msdos-shells):
21862         * progmodes/compile.el (font-lock-extra-managed-props)
21863         (font-lock-keywords, font-lock-maximum-size)
21864         (font-lock-support-mode):
21865         * progmodes/grep.el (font-lock-lines-before):
21866         * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
21867         * progmodes/mixal-mode.el (compile-command):
21868         * progmodes/perl-mode.el (font-lock-comment-face)
21869         (font-lock-doc-face, font-lock-string-face):
21870         * progmodes/prolog.el (comint-prompt-regexp):
21871         * progmodes/sh-script.el (font-lock-comment-face)
21872         (font-lock-set-defaults, font-lock-string-face):
21873         * progmodes/sql.el (font-lock-keyword-face)
21874         (font-lock-set-defaults, font-lock-string-face):
21875         * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
21876         (itimer-version, lazy-lock-defer-contextually)
21877         (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
21878         Add defvars.
21880         * progmodes/cperl-mode.el (cperl-electric-lbrace)
21881         (cperl-electric-keyword, cperl-electric-pod)
21882         (cperl-electric-backspace, cperl-forward-re)
21883         (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
21884         (vc-rcs-header, vc-sccs-header): Add defvars.
21886         * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
21887         (font-lock-syntactic-keywords, gud-find-expr-function):
21888         Add defvars.
21890         * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
21891         (gdb-frame-parameters): Declare before use.
21893         * progmodes/gud.el (gdb-active-process, gdb-define-alist)
21894         (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
21895         (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
21896         (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
21898         * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
21899         (idlwave-help-with-source): Use `insert-buffer-substring', not
21900         `insert-buffer'.
21902 2005-08-29  Juri Linkov  <juri@jurta.org>
21904         * outline.el (hide-entry, hide-leaves, outline-toggle-children):
21905         Put outline-back-to-heading function call inside save-excursion.
21907 2005-08-29  Juanma Barranquero  <lekktu@gmail.com>
21909         * man.el (Man-init-defvars, Man-translate-references)
21910         (Man-support-local-filenames, Man-highlight-references):
21911         * progmodes/sql.el (sql-interactive-mode):
21912         * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
21914         * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
21915         (compilation-mode-font-lock-keywords): Add defvars.
21916         (checkdoc-interactive-loop): "?\ " -> "?\s".
21918         * emacs-lisp/lisp-mode.el (font-lock-comment-face)
21919         (font-lock-doc-face, font-lock-string-face)
21920         (font-lock-keywords-case-fold-search): Add defvars.
21921         (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
21923         * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
21924         Don't pass X and Y (they are ignored anyway).
21925         (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
21926         (mouse-delete-window): Make arguments optional.
21928         * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
21929         (caesar-translate-table, minor-modes, news-buffer-save)
21930         (news-group-name, news-minor-modes): Add defvars.
21932         * emacs-lisp/lselect.el (mouse-highlight-priority)
21933         (x-lost-selection-functions, zmacs-regions):
21934         * emacs-lisp/pp.el (font-lock-verbose):
21935         * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
21936         * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
21937         (ses-mode-map):
21938         * emacs-lisp/tcover-unsafep.el (safe-functions):
21939         * international/mule-cmds.el (mac-system-coding-system)
21940         (mac-system-locale):
21941         * language/ethio-util.el (rmail-current-message)
21942         (rmail-message-vector):
21943         * language/thai-util.el (thai-auto-composition-mode):
21944         * mail/metamail.el (rmail-current-message, rmail-message-vector):
21945         * mail/mspools.el (rmail-inbox-list, vm-crash-box)
21946         (vm-folder-directory, vm-init-file, vm-init-file-loaded)
21947         (vm-primary-inbox, vm-spool-files):
21948         * mail/rmail.el (deleted-head, font-lock-fontified)
21949         (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
21950         (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
21951         (total-messages):
21952         * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
21953         (rmail-summary-mode-map):
21954         * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
21955         (rmail-last-label, rmail-last-multi-labels)
21956         (rmail-summary-vector, rmail-total-messages):
21957         * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
21958         * mail/rmailsum.el (msgnum):
21959         * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
21960         (rmail-current-message):
21961         * obsolete/fast-lock.el (font-lock-face-list):
21962         * obsolete/rnewspost.el (mail-reply-buffer):
21963         * obsolete/scribe.el (compile-command):
21964         * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
21966 2005-08-28  John Paul Wallington  <jpw@gnu.org>
21968         * ibuf-ext.el (ibuffer-auto-update-changed):
21969         Use `frame-or-buffer-changed-p' to check whether we need to update.
21970         (ibuffer-auto-mode): Don't advise `get-buffer-create' and
21971         `kill-buffer'.  Initialise `ibuffer-auto-buffers-changed'
21972         as a `frame-or-buffer-changed-p' state vector instead.
21974 2005-08-27  Romain Francoise  <romain@orebokech.com>
21976         * textmodes/makeinfo.el (makeinfo-compile):
21977         Use `compilation-start'.  Set `next-error-function' according to
21978         `disable-errors'.
21979         (makeinfo-next-error): New function.
21980         (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
21981         (makeinfo-buffer): Likewise.
21983         * progmodes/compile.el (compilation-start): Add autoload cookie.
21985         * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
21986         * textmodes/sgml-mode.el: Likewise.
21987         * progmodes/python.el: Likewise.
21989 2005-08-27  Eli Zaretskii  <eliz@gnu.org>
21991         * simple.el (blink-matching-paren-distance): Document the meaning
21992         of nil value, and allow to customize to nil.
21994         * eshell/esh-ext.el (eshell-windows-shell-file): Look for
21995         command.com, not command.exe.
21997 2005-08-26  John Wiegley  <johnw@newartisans.com>
21999         * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
22000         code around a bit so that an extraneous nil argument is not added
22001         to a command when no args are given.
22003         * eshell/esh-arg.el (eshell-parse-double-quote): If a
22004         double-quoted argument resolves to nil, return it as an empty
22005         string rather than as nil.  This made it impossible to pass "" to
22006         a shell script as a null string argument.
22008 2005-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
22010         * outline.el (outline-invent-heading): New fun.
22011         (outline-promote, outline-demote): Use it.
22012         (outline-move-subtree-down): Remove unused vars `re' and `txt'.
22013         (outline-end-of-subtree): Remove unused var `opoint'.
22015 2005-08-26  David Reitter  <david.reitter@gmail.com>
22017         * menu-bar.el (truncate-lines, write-file, print-buffer)
22018         (ps-print-buffer-faces, ps-print-buffer, split-window):
22019         Disable menu items when the frame they refer to is invisible, or when
22020         they refer to a buffer and the minibuffer is selected.
22022 2005-08-26  Pavel Kobiakov  <pk_at_work@yahoo.com>
22024         * progmodes/flymake.el (flymake-highlight-err-lines):
22025         Use save-excursion around flymake-highlight-line to preserve point.
22027 2005-08-26  Eli Zaretskii  <eliz@gnu.org>
22029         * progmodes/octave-mod.el: Change Author and Maintainer address.
22030         (octave-maintainer-address): Change Kurt's email address.
22031         * progmodes/octave-inf.el: Change Author and Maintainer address.
22032         * progmodes/octave-hlp.el: Change Author and Maintainer address.
22034 2005-08-26  Kim F. Storm  <storm@cua.dk>
22036         * subr.el (version-list-<, version-list-<=, version-list-=):
22037         Rename from integer-list-*.
22038         (version-list-not-zero): Likewise.  Fix while loop.
22039         (version=): Use version-list-= instead of string-equal.
22041 2005-08-26  Richard M. Stallman  <rms@gnu.org>
22043         * outline.el (outline-promote): Try shortening the heading.
22044         As last resort, read the heading to use.
22045         (outline-demote): As last resort, read the heading to use.
22047 2005-08-26  Romain Francoise  <romain@orebokech.com>
22049         * progmodes/compile.el (compilation-start): Doc fix.
22051         * progmodes/antlr-mode.el (antlr-default): Fix defface form.
22052         (antlr-font-lock-additional-keywords): Fix reference to
22053         `antlr-font-lock-literal-regexp' erroneously changed during the
22054         mass face rename.
22055         (antlr-run-tool): Use `compilation-start'.
22057         * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
22058         instead of the obsolete `compile-internal'.
22060 2005-08-26  Juanma Barranquero  <lekktu@gmail.com>
22062         * calendar/cal-bahai.el (date, displayed-month, displayed-year)
22063         (number, original-date):
22064         * calendar/cal-china.el (date):
22065         * calendar/cal-coptic.el (date):
22066         * calendar/cal-french.el (date):
22067         * calendar/cal-hebrew.el (date, entry, number, original-date):
22068         * calendar/cal-islam.el (date, number, original-date):
22069         * calendar/cal-iso.el (date):
22070         * calendar/cal-julian.el (date):
22071         * calendar/cal-mayan.el (date):
22072         * calendar/cal-menu.el (date, event):
22073         * calendar/cal-persia.el (date):
22074         * calendar/lunar.el (date):
22075         * calendar/solar.el (date): Add defvars.
22077         * emerge.el:
22078         * ibuffer.el:
22079         * info-xref.el:
22080         * obsolete/bg-mouse.el:
22081         * obsolete/sun-curs.el:
22082         * obsolete/swedish.el: Move the `defvar's to the top level.
22084         * smerge-mode.el (smerge-refined-change): Add :group.
22086 2005-08-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22088         * smerge-mode.el (smerge-remove-props): Make the args non-optional.
22089         (smerge-keep-n): Remove props.
22090         (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
22091         (smerge-keep-current, smerge-kill-current): Don't remove props anymore
22092         now that it's done in smerge-keep-n.
22093         (smerge-refined-change): New face.
22094         (smerge-refine-chopup-region, smerge-refine-highlight-change)
22095         (smerge-refine): New funs.
22096         (smerge-basic-map): Bind smerge-refine.
22098 2005-08-25  Juri Linkov  <juri@jurta.org>
22100         * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
22101         compilation-process-setup-function and compilation-disable-input
22102         in grep-mode instead of let-bindings in grep.
22104         * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
22105         Delete "Automatic File De/compression" (auto-compression-mode).
22107 2005-08-25  Juanma Barranquero  <lekktu@gmail.com>
22109         * obsolete/bg-mouse.el: Move to obsolete/ from term/.
22110         Silence warning about non-existent variable.
22112 2005-08-25  Richard M. Stallman  <rms@gnu.org>
22114         * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
22115         Rename "Describe Key" to "Describe Key or Mouse Operation".
22117         * mail/mailalias.el (build-mail-aliases): Delete comments
22118         from the contents before processing them.
22120         * isearch.el (isearch-edit-string): Erase the Search prompt
22121         if user enters an empty string and there is no default.
22123         * comint.el (comint-file-name-prefix): Add autoload.
22125 2005-08-25  Joe Corneli  <jcorneli@math.utexas.edu>
22127         * subr.el (play-sound): Rearrange to avoid warning.
22129 2005-08-25  Carsten Dominik  <dominik@science.uva.nl>
22131         * calendar/diary-lib.el (diary-modify-entry-list-string-function):
22132         New hook.
22133         (add-to-diary-list): Call `diary-modify-entry-list-string-function'
22135 2005-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
22137         * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
22139         * custom.el (custom-theme-set-variables): Sort minor modes last.
22141 2005-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
22143         * subr.el (version-separator, version-regexp-alist): New vars used by
22144         version comparison funs.
22145         (integer-list-<, integer-list-=, integer-list-<=)
22146         (integer-list-not-zero): New funs for integer list comparison.
22147         (version-to-list, version=, version<, version<=): New funs for version
22148         comparison.
22150 2005-08-24  Juanma Barranquero  <lekktu@gmail.com>
22152         * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
22153         (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
22154         time to silence the byte-compiler.
22156         * ibuffer.el (ibuffer-compile-make-eliding-form)
22157         (ibuffer-check-formats): Use `with-no-warnings' to hide references
22158         to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
22159         so it's silly to get warnings for it).
22160         (ibuffer-auto-mode, ibuffer-cached-filter-formats)
22161         (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
22162         (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
22163         (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
22164         (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
22165         (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
22166         Defvar at compile time.
22167         (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
22168         (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
22169         Declare them before use.
22171         * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
22172         (info-xref-good, info-xref-bad): Defvar at compile time.
22174         * obsolete/mlsupport.el (filter-region, execute-monitor-command):
22175         Use `let*' instead of `let'.
22177         * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
22178         (*mouse-y*, menu, char): Defvar at compile time.
22179         (sc::menu): Declare it before use.
22180         (sc::pack-one-line): Use `let', not `let*'.
22182         * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
22183         (mail-send-hook): Defvar at compile time.
22185         * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
22186         Defvar at compile time.
22188         * term/sun-mouse.el (current-global-mousemap)
22189         (current-local-mousemap): Declare them before use.
22191 2005-08-24  Carsten Dominik  <dominik@science.uva.nl>
22193         * bookmark.el (bookmark-after-jump-hook): New hook.
22194         (bookmark-jump): Run `bookmark-after-jump-hook'.
22196 2005-08-23  Juri Linkov  <juri@jurta.org>
22198         * faces.el (minibuffer-prompt): Doc fix.
22200 2005-08-23  Juanma Barranquero  <lekktu@gmail.com>
22202         * progmodes/xscheme.el: Trivial changes to silence warnings.
22203         (xscheme-previous-mode, xscheme-previous-process-state):
22204         Add defvars.
22205         (xscheme-last-input-end, xscheme-process-command-line)
22206         (xscheme-process-name, xscheme-buffer-name)
22207         (xscheme-expressions-ring-max, xscheme-expressions-ring)
22208         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
22209         (xscheme-control-g-synchronization-p)
22210         (xscheme-control-g-disabled-p, xscheme-string-receiver)
22211         (default-xscheme-runlight, xscheme-runlight)
22212         (xscheme-runlight-string, xscheme-process-filter-state)
22213         (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
22214         Move to beginning of file.
22215         (scheme-interaction-mode-commands-alist)
22216         (scheme-interaction-mode-map, scheme-debugger-mode-map):
22217         Declare them before use.  Note: the initialization code for the
22218         variables has not been moved because it uses functions that reference
22219         the variables.
22220         (xscheme-control-g-message-string, xscheme-process-filter-alist)
22221         (xscheme-prompt-for-expression-map): Declare them before use.
22222         (scheme-debugger-mode-commands): "?\ " -> "?\s".
22224 2005-08-23  Ed Swarthout  <ed.swarthout@gmail.com>  (tiny change)
22226         * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
22228 2005-08-22  Juri Linkov  <juri@jurta.org>
22230         * faces.el (set-face-underline): Delete this duplicate function
22231         and make an obsolete alias to set-face-underline-p.
22232         (set-face-underline-p): Use docstring of set-face-underline.
22233         (describe-face): Create hyperlink to parent face.
22235         * info.el (Info-insert-dir): Use save-excursion around
22236         insert-buffer-substring.
22237         (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
22238         (Info-escape-percent): Delete function.
22239         (Info-fontify-node): Replace Info-escape-percent by
22240         replace-regexp-in-string with REP arg set to lambda that
22241         duplicates `%' and preserves text properties.
22243         * progmodes/compile.el (compilation-disable-input): Doc fix.
22244         (define-compilation-mode): Doc fix and refill.
22245         (kill-compilation): Use `mode-name' in the error message.
22246         (compilation-find-file): Use `compilation-error' in the
22247         read-file-name's prompt.
22249 2005-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22251         * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
22252         (smerge-auto-leave): Make undo re-enable the mode.
22253         (debug-ignored-errors): Add the user-error of impossible resolution.
22254         (smerge-resolve): Move things around a bit, in preparation for later.
22255         (smerge-diff): Don't fail if the buffer has no associated file.
22256         (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
22257         (smerge-conflict-overlay): New function.
22258         (smerge-match-conflict): Don't add text properties here.
22259         (smerge-find-conflict): Instead, add an overlay here.
22260         Also check for the case where we're inside a conflict already, so as to
22261         obviate the need for font-lock-multiline, which is unbearably slow with
22262         large conflicts and ciomplex font-lock patterns.
22263         (smerge-remove-props): Remove overlay rather than text-properties.
22264         (smerge-mode): Don't set font-lock-multiline.
22265         Remove overlays when turned off.
22267 2005-08-21  Kim F. Storm  <storm@cua.dk>
22269         * ido.el (ido-ignore-item-p): Use save-match-data.
22270         Bind case-fold-search to ido-case-fold locally.
22272 2005-08-20  Richard M. Stallman  <rms@gnu.org>
22274         * files.el (normal-mode): If font lock is on, turn it off and on.
22276         * subr.el (replace-regexp-in-string): Doc fix.
22278         * startup.el (command-line-1): Don't suppress startup screen
22279         due to existing processes.
22281         * progmodes/grep.el (grep): Bind compilation-disable-input to t.
22283         * progmodes/compile.el (compilation-disable-input): Default to nil.
22285 2005-08-20  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
22287         * progmodes/compile.el (compilation-disable-input): New defcustom.
22288         (compilation-start): If compilation-disable-input is non-nil, send
22289         EOF to the compilation process.
22291 2005-08-20  Eli Zaretskii  <eliz@gnu.org>
22293         * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
22294         Run the argument of tex-shell-cd-command through
22295         convert-standard-filename, to get the correct style of slashes on
22296         Windows, and enclose the result in quotes, in case the file name
22297         includes whitespace or other special characters.
22299 2005-08-19  Andreas Schwab  <schwab@suse.de>
22301         * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
22302         process.
22304 2005-08-18  Luc Teirlinck  <teirllm@auburn.edu>
22306         * cus-start.el (minibuffer-prompt-properties): Correct typo.
22308 2005-08-18  Kim F. Storm  <storm@cua.dk>
22310         * scroll-lock.el: Fix errors due to incorrect line wrapping.
22312 2005-08-18  Richard M. Stallman  <rms@gnu.org>
22314         * scroll-lock.el: New file.
22316 2005-08-18  Thien-Thi Nguyen  <ttn@gnu.org>
22318         * dired.el (dired-move-to-end-of-filename):
22319         Handle fifo as rendered by "ls -lF": Don't include trailing "|".
22321 2005-08-18  Kim F. Storm  <storm@cua.dk>
22323         * ido.el (ido-everywhere): Fix defcustom :set function to disable
22324         rather than toggle mode when custom value is nil.
22325         (ido-everywhere): Fix defun doc string.
22327 2005-08-17  Richard M. Stallman  <rms@gnu.org>
22329         * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
22330         as tag instead of "Inviolable".
22332 2005-08-17  Kim F. Storm  <storm@cua.dk>
22334         * windmove.el (windmove-coordinates-of-position): Remove.
22335         (windmove-coordinates-of-window-position): Remove.
22336         (windmove-reference-loc): Use posn-at-point instead.
22338         * subr.el (insert-for-yank-1): Doc fix.
22340         * ido.el (ido-enter-matching-directory): Rename from
22341         ido-enter-single-matching-directory.  Change `slash' choice to
22342         `only'.  Add `first' choice.
22343         (ido-exhibit): Adapt to above changes.
22345 2005-08-16  Luc Teirlinck  <teirllm@auburn.edu>
22347         * Makefile.in: Expand comment about building loaddefs.el.
22349 2005-08-16  Nick Roberts  <nickrob@snap.net.nz>
22351         * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
22352         Comment use of defadvice.
22354         * progmodes/gud.el (gud-jump): Rework for gdb-ui.
22356 2005-08-15  Dan Nicolaescu  <dann@ics.uci.edu>
22358         * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
22359         * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
22360         * progmodes/gdb-ui.el, progmodes/idlw-help.el,
22361         * progmodes/idlw-shell.el, progmodes/ld-script.el,
22362         * progmodes/which-func.el, ruler-mode.el, strokes.el,
22363         * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
22364         for backward compatibility for faces that did not appear in the
22365         previous Emacs release.
22367         * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
22369 2005-08-15  Kim F. Storm  <storm@cua.dk>
22371         * emulation/cua-base.el (cua-delete-region): Return t if
22372         deleted region was non-empty.
22373         (cua-replace-region): Inhibit overwrite-mode for
22374         self-insert-command if replaced region was non-empty.
22375         (cua--explicit-region-start, cua--status-string): Make them
22376         buffer-local at top-level...
22377         (cua-mode): ...rather than when mode is enabled.
22379 2005-08-15  Thien-Thi Nguyen  <ttn@gnu.org>
22381         * progmodes/vhdl-mode.el (vhdl-emacs-21):
22382         Set t for Emacs 21, 22, and so on.
22384 2005-08-15  David Ponce  <david@dponce.com>
22386         * tree-widget.el: Update Commentary header.
22387         (tree-widget-theme): Doc fix.
22388         (tree-widget-space-width): New option.
22389         (tree-widget-image-properties): Look up in the default theme too.
22390         (tree-widget--cursors): Only for images with arrow pointer shape.
22391         (tree-widget-lookup-image): Pointer shape is hand by default.
22392         (tree-widget-icon): Rename generic icon widget from
22393         `tree-widget-control'.
22394         (tree-widget-*-icon): Rename from `tree-widget-*-control' and
22395         derive from `tree-widget-icon'.
22396         (tree-widget-handle): Improve default look and feel of the text
22397         representation.
22398         (tree-widget): Rename :*-control properties to :*-icon properties.
22399         Add :action and :help-echo properties.
22400         (tree-widget-after-toggle-functions): Move.
22401         (tree-widget-close-node, tree-widget-open-node): Remove.
22402         (tree-widget-before-create-icon-functions): New hook.
22403         (tree-widget-value-create): Update to allow customization of icons
22404         and nodes at run-time via that new hook.
22405         (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
22406         (tree-widget-icon-action, tree-widget-icon-help-echo)
22407         (tree-widget-action, tree-widget-help-echo): New functions.
22409 2005-08-15  Kim F. Storm  <storm@cua.dk>
22411         * ido.el (ido-buffer-internal): Use with-no-warnings.
22412         (ido-make-merged-file-list): Use while-no-input.
22414 2005-08-15  Richard M. Stallman  <rms@gnu.org>
22416         * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
22417         (flyspell-large-region): Fix doc and custom type.
22419 2005-08-14  Richard M. Stallman  <rms@gnu.org>
22421         * files.el (interpreter-mode-alist): Doc fix.
22423         * mail/rmail.el (rmail-nonignored-headers): New variable.
22424         (rmail-clear-headers): Use it.
22425         (rmail-reply): Better handling of mail-followup-to header.
22427         * progmodes/sh-script.el (sh-font-lock-keywords-var):
22428         Rename variable from sh-font-lock-keywords.  In the `shell' entry,
22429         don't try to refer to executable-font-lock-keywords.
22430         (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
22431         (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
22432         (sh-font-lock-keywords): Append executable-font-lock-keywords here.
22433         (sh-mode): Set comment-start-skip, local-abbrev-table,
22434         imenu-case-fold-search.
22435         (sh-set-shell): Don't set them here.
22436         (sh-feature): Simplify.  Get rid of the eval-a-variable feature.
22437         Don't cache the results in the original alist; don't ever modify
22438         that alist.
22440         * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
22442         * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
22443         empty.
22445 2005-08-15  Andreas Schwab  <schwab@suse.de>
22447         * desktop.el: Put autoload cookie at risky-local-variable declarations.
22449         * dired.el, info.el, mail/rmail.el: Revert last change.
22451 2005-08-14  Thien-Thi Nguyen  <ttn@gnu.org>
22453         * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
22454         modification in `eval-after-load' form.
22455         * info.el: Likewise.
22456         * mail/rmail.el: Likewise.
22458 2005-08-14  Juri Linkov  <juri@jurta.org>
22460         * progmodes/compile.el (compilation-mode-font-lock-keywords):
22461         Remove highlighting of "Compilation started".  Highlight only
22462         the word "finished" in "Compilation finished".  Add highlighting
22463         of "interrupt", "killed", "terminated" and the exit code.
22464         (compilation-start): Add newline after header.  Use exactly the
22465         same time stamp format as the finishing message.
22466         (compilation-mode-map): Add ellipsis to "Search Files (grep)".
22468         * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
22469         (grep-mode-font-lock-keywords): Don't highlight "Grep started".
22470         Add highlighting of "interrupt", "killed", "terminated".
22472         * delsel.el (delete-selection-pre-hook): If overwrite-mode is
22473         enabled and the current command is self-insert-command, call it
22474         explicitly with overwrite-mode bound to nil, to not allow it
22475         to delete the character after the selected region.
22477 2005-08-12  Matt Hodges  <MPHodges@member.fsf.org>
22479         * emacs-lisp/eldoc.el: Add move-beginning-of-line,
22480         move-end-of-line, end-of-line, and beginning-of-line to the list
22481         of commands after which the echo area is updated.
22483 2005-08-12  Eli Zaretskii  <eliz@gnu.org>
22485         * cus-edit.el (custom-save-all, custom-save-delete):
22486         Bind recentf-exclude to exclude custom-file.
22488 2005-08-12  Ehud Karni  <ehud@unix.mvs.co.il>
22490         * mail/rmailsum.el (rmail-summary-end-of-message): New command
22491         to go to the bottom of the mail message.  Added to
22492         `rmail-summary-mode-map' with key "/".
22493         (rmail-summary-show-message): New (internal) function for use by
22494         both `rmail-summary-beginning/end-of-message'.
22495         (rmail-summary-beginning-of-message): Change to use
22496         rmail-summary-show-message.
22498         * mail/rmail.el (rmail-end-of-message): New command to go to the
22499         end of the current message.  Added to `rmail-mode-map' with key "/".
22500         (rmail-beginning-of-message): Fix to work as documented.
22501         (rmail-mode): Change documentation.
22503         * progmodes/compile.el (compilation-start): Add the line
22504         "Compilation started" with compilation start time.
22505         (compilation-mode-font-lock-keywords): Add `started' to keywords.
22507 2005-08-11  Luc Teirlinck  <teirllm@auburn.edu>
22509         * menu-bar.el (menu-bar-options-menu): Standardize capitalization
22510         of menu items.
22512 2005-08-11  Richard M. Stallman  <rms@gnu.org>
22514         * simple.el (pop-global-mark): Reverse test of widen-automatically.
22516         * battery.el (battery-status-function): Don't use ignore-errors.
22518 2005-08-11  Lute Kamstra  <lute@gnu.org>
22520         * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
22521         define-obsolete-variable-alias.
22523 2005-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22525         * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
22526         (ange-ftp-send-cmd): Revert last change, and expand
22527         the comment explaining the problem.
22529 2005-08-10  Luc Teirlinck  <teirllm@auburn.edu>
22531         * ldefs-boot.el: Update.
22533         * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
22534         item to "Time, Load and Mail".  Change help echo text.
22536         * time.el (display-time-use-mail-icon, display-time-format)
22537         (display-time-string-forms): Shorten first line of docstrings.
22539 2005-08-10  Lars Hansen  <larsh@soem.dk>
22541         * desktop.el (desktop-buffer-mode-handlers):
22542         Make non-customizable.  Add autoload cookie.  Change initial value to
22543         nil; add elements in respective modules instead.  Fix doc string.
22544         (desktop-load-file): New function.
22545         (desktop-minor-mode-handlers): New autoloaded variable.
22546         (desktop-create-buffer): Call minor mode handlers.
22547         Use desktop-load-file to load major and minor mode modules prior to
22548         checking for a handler.
22549         (desktop-save): Don't add nil to desktop-minor-modes for minor
22550         modes with nil function in desktop-minor-mode-table.  Don't delete
22551         desktop file before rewriting it.
22552         (desktop-locals-to-save): Add autoload cookie.  Don't make
22553         automatically buffer-local.  Add variables column-number-mode,
22554         size-indication-mode, indent-tabs-mode,
22555         indicate-buffer-boundaries, indicate-empty-lines and
22556         show-trailing-whitespace.
22557         (desktop-clear): Allow desktop-clear-preserve-buffers to contain
22558         regexps.  Don't use desktop-clear-preserve-buffers-regexp.
22559         (desktop-clear-preserve-buffers-regexp): Delete.
22560         (desktop-clear-preserve-buffers): Update initial value and docstring.
22561         (desktop-save-buffer): Fix doc string.
22563         * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
22564         (hilit-chg-desktop-restore): New function.
22565         (highlight-changes-mode): Add highlight-changes-mode to
22566         desktop-locals-to-save.
22568         * dired.el: Add handler to desktop-buffer-mode-handlers.
22569         (dired-restore-desktop-buffer): Remove autoload cookie.
22570         (dired-mode): Add autoload cookie.
22572         * info.el: Add handler to desktop-buffer-mode-handlers.
22573         (Info-restore-desktop-buffer): Remove autoload cookie.
22574         (Info-mode): Add autoload cookie.
22576         * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
22577         (mh-restore-desktop-buffer): Remove autoload cookie.
22578         (mh-folder-mode): Add autoload cookie.
22580         * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
22581         (rmail-restore-desktop-buffer): Remove autoload cookie.
22583 2005-08-11  Masatake YAMATO  <jet@gyve.org>
22585         * hexl.el (hexl-address-region):
22586         (hexl-ascii-region, hexl-font-lock-keywords):
22587         (hexl-highlight-line-range): Use the term "region"
22588         instead of "area" for consistency with the other symbols
22589         defined in hexl.el.
22591 2005-08-09  Luc Teirlinck  <teirllm@auburn.edu>
22593         * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
22594         correct group: it is set with `menu-bar-make-mm-toggle' (pointed
22595         out by Juri Linkov).  Add `display-battery-mode'.
22597 2005-08-09  Juri Linkov  <juri@jurta.org>
22599         * progmodes/compile.el (compilation-mode-font-lock-keywords):
22600         Remove `-text' from face variable names.
22601         (compilation-error-file-name, compilation-warning-file-name)
22602         (compilation-info-file-name): Delete faces.
22603         (compilation-line-number, compilation-column-number):
22604         Remove face underlining.
22605         (compilation-message-face): Set to `underline' value by default.
22606         (compilation-error-face, compilation-warning-face)
22607         (compilation-info-face): Remove `-file-name' from face names.
22608         (compilation-error-text-face, compilation-warning-text-face)
22609         (compilation-info-text-face): Delete face variables.
22610         (compilation-text-face): Delete function.
22612         * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
22613         (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
22614         (grep-error-face): Set to `compilation-error' instead of
22615         `compilation-error-face' (which is redefined to `grep-hit-face' in
22616         grep buffers).
22617         (grep-mode-font-lock-keywords): Remove `-text' from face variable
22618         names.  Use `grep-error-face' instead of `compilation-error-text-face'.
22620         * dired-aux.el (dired-do-query-replace-regexp):
22621         Use `query-replace-read-args'.
22623         * replace.el (query-replace-read-from, query-replace-read-to)
22624         (query-replace-read-args): Rename arg `string' to `prompt'.
22626         * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
22628 2005-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
22630         * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
22631         uploading files.
22632         (ange-ftp-canonize-filename): Handle file names beginning with ~
22633         correctly.
22635 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
22637         * textmodes/fill.el (canonically-space-region)
22638         (fill-context-prefix, fill-french-nobreak-p)
22639         (fill-delete-newlines, fill-comment-paragraph)
22640         (justify-current-line): "?\ " -> "?\s".
22642 2005-08-09  Ben North  <ben@redfrontdoor.org>  (tiny change)
22644         * textmodes/fill.el (fill-nonuniform-paragraphs):
22645         Improve argument/docstring consistency.
22647 2005-08-09  Richard M. Stallman  <rms@gnu.org>
22649         * textmodes/ispell.el (ispell-word): More fboundp checks.
22651         * files.el (find-file-noselect): Don't call set-buffer-major-mode.
22652         (find-file-noselect-1): Call it here, only if RAWFILE.
22653         (normal-mode): Always set some major mode.
22654         (save-some-buffers-action-alist): Change some explanation strings.
22655         (file-name-non-special): In the `quote' method, use unwind-protect.
22657 2005-08-09  Magnus Henoch  <mange@freemail.hu>
22659         * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
22660         (ispell-have-aspell-dictionaries): New variable.
22661         (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
22662         (ispell-get-aspell-config-value): New function.
22663         (ispell-aspell-find-dictionary): New function.
22664         (ispell-aspell-add-aliases): New function.
22665         (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
22666         appropriate.  Don't look for ispell dictionaries if we use aspell.
22667         (ispell-menu-map): Don't build a submenu of dictionaries.
22669 2005-08-09  Richard M. Stallman  <rms@gnu.org>
22671         * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
22672         (sql-read-passwd): Use read-passwd.
22674         * progmodes/idlw-toolbar.el (idlwave-toolbar)
22675         (idlwave-toolbar-is-possible): Add defvars.
22677         * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
22678         Avoid warnings.
22680         * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
22681         (idlwave-system-class-info, idlwave-executive-commands-alist):
22682         Use defvar.
22684         * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
22686         * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
22687         Avoid warnings.
22689         * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
22690         and content-type: headers.
22692         * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
22694         * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
22695         and rename some of them to be more self-explanatory.
22697         * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
22699         * startup.el (command-line-1): Implement -scriptload.
22701         * replace.el (occur-engine): Initial *Occur* output not undoable.
22703         * menu-bar.el (menu-bar-file-menu): Rename some menu items
22704         and improve help strings.
22706         * isearch.el (isearch-repeat): When changing direction,
22707         mark search successful.
22709         * ediff-init.el: Use (featurep 'xemacs).
22711         * comint.el (send-invisible): Identify buffer, if not selected.
22713         * align.el: Delete autoload for c-guess-basic-syntax.
22715 2005-08-09  Juanma Barranquero  <lekktu@gmail.com>
22717         * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
22718         Improve argument/docstring consistency.  Doc fixes.
22719         (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
22720         (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
22721         (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
22722         (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
22723         (r2bv-organization, r2bv-pages, r2bv-primary-author)
22724         (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
22725         (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
22726         Defvar at compile time.
22728 2005-08-09  Juri Linkov  <juri@jurta.org>
22730         * info.el: Replace `info' with upper-case `Info' where appropriate.
22731         (info-title-1, info-title-2, info-title-3, info-title-4)
22732         (info-menu-header): Move up face definitions.
22733         (info-menu-star): Rename from `info-menu-5'.
22734         (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
22735         (Info-fontify-visited-nodes): Fix docstring.
22736         (Info-hide-note-references): Fix docstring.
22737         (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
22738         menu items in the same way as on cross-references.
22739         (info-apropos): Fix sorting order and formatting to be like in the
22740         stand-alone Info browser.  Display error messages for 1 sec.
22741         (Info-mode-map): Move down `c' key binding.  Bind `^' to `Info-up'.
22742         (Info-mode-menu): Remove item for `Info-search-case-sensitively'
22743         from the menu bar.
22744         (Info-insert-dir): Restore point after calling
22745         `insert-buffer-substring'.
22747 2005-08-08  Richard M. Stallman  <rms@gnu.org>
22749         * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
22750         (recompute-lucid-menubar): Add defvars.
22752         * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
22754         * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
22756         * net/net-utils.el (run-dig): Rename from `dig'.
22758         * play/gametree.el (gametree-mode): Use make-local-variable,
22759         not make-variable-buffer-local.
22761         * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
22763         * ansi-color.el (ansi-color-make-extent)
22764         (ansi-color-set-extent-face): Use fboundp, not functionp.
22766         * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
22767         not make-variable-buffer-local.
22769         * bookmark.el (Info-current-file): Add defvar.
22770         (bookmark-jump-noselect): Use with-no-warnings.
22772         * completion.el (c-mode-map, fortran-mode-map): Add defvars.
22774         * ebuff-menu.el (Helper-return-blurb): Add defvar.
22776         * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
22778         * find-file.el (ada-procedure-start-regexp)
22779         (ada-package-start-regexp): Add defvars.
22781         * info.el (Info-insert-dir): Use insert-buffer-substring.
22783         * xml.el (xml-att-def-re): Add defvar.
22785         * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
22786         calling convention.
22788         * subr.el (while-no-input): Return t if there is input.
22790 2005-08-08  Luc Teirlinck  <teirllm@auburn.edu>
22792         * cus-start.el (all): Add `overflow-newline-into-fringe'.
22794 2005-08-08  Juanma Barranquero  <lekktu@gmail.com>
22796         * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
22797         (scheme-prev-l/c-dir/file): Fix typos in docstrings.
22799 2005-08-08  Emilio C. Lopes  <eclig@gmx.net>
22801         * cmuscheme.el (scheme-start-file): Replace reference to
22802         `user-emacs-directory' by "~/.emacs.d/".
22804 2005-08-08  Thien-Thi Nguyen  <ttn@gnu.org>
22806         * info.el (Info-dir-remove-duplicates): Avoid case folding
22807         in loop; instead, keep downcased strings for comparison.
22808         Suggested by Helmut Eller.
22810 2005-08-07  Michael Albinus  <michael.albinus@gmx.de>
22812         Sync with Tramp 2.0.50.
22814         * net/tramp.el: Remove defvar of `last-coding-system-used' in the
22815         XEmacs case; not necessary anymore.
22816         (tramp-user-regexp): Allow "@" as part of user name.
22817         (tramp-handle-set-visited-file-modtime)
22818         (tramp-handle-insert-file-contents)
22819         (tramp-handle-write-region): No special handling for
22820         `last-coding-system-used, because this is done in
22821         `tramp-accept-process-output' now.
22822         (tramp-accept-process-output): New defun.
22823         (tramp-process-one-action, tramp-process-one-multi-action)
22824         (tramp-wait-for-regexp, tramp-wait-for-output)
22825         (tramp-discard-garbage-erase-buffer): Call it.  Reported by David
22826         Howells <dhowells@redhat.com>.
22827         (clear-visited-file-modtime): Defadvice removed.  The check for
22828         unset buffer's modtime does not need to be based on
22829         `tramp-buffer-file-attributes'.  Suggested by RMS.
22830         (tramp-message): Insert "\n" if not being at beginning of line.
22831         (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
22832         sequence with same logic.
22833         (tramp-completion-handle-expand-file-name): Discard call of
22834         `tramp-drop-volume-letter'.  It is not necessary, and there have
22835         been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
22836         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
22837         (tramp-do-copy-or-rename-file-out-of-band): Transfer message
22838         should always be visible.
22839         (tramp-handle-insert-directory, tramp-setup-complete)
22840         (tramp-set-process-query-on-exit-flag)
22841         (tramp-append-tramp-buffers): Pacify byte-compiler.
22842         (tramp-bug): Delete non-existing variables from list.
22843         Apply `tramp-load-report-modules' as pre-hook.
22844         Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
22845         `shell-prompt-pattern' because of non-7bit characters.
22846         Reported by Sebastian Luque <sluque@mun.ca>.
22847         (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
22848         (tramp-match-string-list): Remove function.
22849         (tramp-wait-for-regexp): Remove call of that function.
22850         Suggested by Kim F. Storm <storm@cua.dk>.
22851         (tramp-set-auto-save-file-modes): Use octal integer code #o600
22852         instead of octal character code ?\600.  The latter resulted in a
22853         syntax error with XEmacs.
22855         * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
22856         XEmacs case; not necessary anymore.
22857         (tramp-smb-handle-write-region): No special handling for
22858         `last-coding-system-used, because this is done in
22859         `tramp-accept-process-output' now.
22860         (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
22862 2005-08-06  Luc Teirlinck  <teirllm@auburn.edu>
22864         * wid-edit.el (widget-choice-value-create):
22865         Unconditionally respect user choice.  Set :explicit-choice back to nil
22866         when no longer needed.
22867         (widget-choice-action): Unconditionally respect user choice.
22868         Eliminate :explicit-choice-value.
22870         * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
22872         * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
22873         with `indicate-empty-lines' and `indicate-buffer-boundaries'.
22874         (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
22875         running new function `toggle-indicate-empty-lines'.
22876         Rename "Customize" item to "Customize fringe".
22877         Rename "Indicators" item to "Buffer boundaries" and change help echo.
22878         (menu-bar-showhide-fringe-ind-menu): Change several help echos.
22879         Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
22880         Delete "Empty lines only" item.
22881         (menu-bar-showhide-fringe-ind-customize): New function.
22882         (menu-bar-showhide-fringe-ind-mixed)
22883         (menu-bar-showhide-fringe-ind-box)
22884         (menu-bar-showhide-fringe-ind-right)
22885         (menu-bar-showhide-fringe-ind-left)
22886         (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
22887         instead of `fringe-indicators'.
22889 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
22891         * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
22892         Change the date of last update.
22894 2005-08-06  Michael Kifer  <kifer@cs.stonybrook.edu>
22896         * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
22897         (viper-exec-yank, viper-put-back): Don't display modification msg
22898         if in the minibuffer.
22900         * viper-init.el (viper-replace-overlay-cursor-color)
22901         (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
22902         Make variables frame local.
22904         * viper-util.el (viper-append-filter-alist): Use append instead of
22905         nconc.
22907         * viper.el (viper-vi-state-mode-list)
22908         (viper-emacs-state-mode-list): Move help-mode and
22909         completion-list-mode from the first list to the second.
22910         (viper-mode): Docstring.
22911         (viper-go-away, viper-non-hook-settings): Don't localize
22912         minor-mode-alist in newer Emacsen.  Add advice to
22913         set-cursor-color.  Don't bind "\C-c\\".
22915 2005-08-06  Emilio C. Lopes  <eclig@gmx.net>
22917         * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
22918         (scheme-macro-expand-command): New user options.
22919         (scheme-trace-procedure, scheme-expand-current-form): New commands.
22920         (scheme-form-at-point, scheme-start-file)
22921         (scheme-interactively-start-process): New functions.
22922         (scheme-get-process): New function, extracted from `scheme-proc'.
22923         (run-scheme): Call `scheme-start-file' to get start file, and pass
22924         it to `make-comint'.
22925         (switch-to-scheme, scheme-proc):
22926         Call `scheme-interactively-start-process' if no Scheme buffer/process
22927         is available.
22929 2005-08-06  Juri Linkov  <juri@jurta.org>
22931         * progmodes/compile.el (compilation-mode-font-lock-keywords):
22932         Use `compilation-text-face', `compilation-info-text-face' and
22933         `compilation-error-text-face' instead of `font-lock-keyword-face'.
22934         (compilation-error): New face.
22935         (compilation-error-file-name): Inherit from
22936         `compilation-error' instead of `font-lock-warning-face'.
22937         (compilation-warning-file-name): Inherit from
22938         `compilation-warning' instead of `font-lock-warning-face'.
22939         (compilation-info, compilation-error-file-name)
22940         (compilation-warning-file-name, compilation-info-file-name)
22941         (compilation-line-number, compilation-column-number): Doc fix.
22942         (compilation-error-text-face, compilation-warning-text-face)
22943         (compilation-info-text-face): New face variables.
22944         (compilation-line-face, compilation-column-face)
22945         (compilation-enter-directory-face)
22946         (compilation-leave-directory-face): Doc fix.
22947         (compilation-text-face): New function.
22949         * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
22950         instead of 1 to display binary file names as info file links.
22951         (grep-error-face): Use `compilation-error-face' instead of
22952         `font-lock-keyword-face'.
22953         (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
22954         and `compilation-warning-text-face' instead of
22955         `font-lock-keyword-face'.  Use `compilation-error-text-face'
22956         instead of `grep-error-face'.
22958 2005-08-05  Kenichi Handa  <handa@m17n.org>
22960         * international/code-pages.el: Add autoload cookies for all coding
22961         systems.
22963 2005-08-04  Luc Teirlinck  <teirllm@auburn.edu>
22965         * cus-start.el (all): Put undo.c where it alphabetically belongs.
22967 2005-08-04  Juri Linkov  <juri@jurta.org>
22969         * progmodes/compile.el (compilation-mode-map):
22970         * progmodes/grep.el (grep-mode-map):
22971         Bind TAB to `compilation-next-error' and [backtab] to
22972         `compilation-previous-error'.
22974         * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
22975         matching line numbers, column numbers and their ranges with regexp
22976         matching only line numbers.
22977         (grep-context-face): New face variable.
22978         (grep-mode-font-lock-keywords): Use it.
22980         * faces.el (read-face-name): Delete duplicate faces.
22982 2005-08-02  Juanma Barranquero  <lekktu@gmail.com>
22984         * thumbs.el (thumbs-find-image): Don't make variables
22985         automatically buffer local.
22986         (thumbs-current-tmp-filename, thumbs-current-image-filename)
22987         (thumbs-image-num): Make automatically buffer local.
22988         (thumbs-show-thumbs-list): Use `make-local-variable', not
22989         `make-variable-buffer-local'.
22990         (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
22992         * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
22993         (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
22994         (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
22995         (bother, bye, canyou, chatlst, continue, deathlst, describe)
22996         (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
22997         (feelings-about, foullst, found, hello, history, howareyoulst)
22998         (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
22999         (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
23000         (neglst, obj, object, owner, please, problems, qlist)
23001         (random-adjective, relation, remlst, repetitive-shortness)
23002         (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
23003         (shortlst, something, sportslst, stallmanlst, states, subj)
23004         (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
23005         (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
23006         Defvar at compile time.
23008         * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
23009         not `make-variable-buffer-local'.
23011 2005-08-02  Kim F. Storm  <storm@cua.dk>
23013         * emulation/cua-rect.el (cua--highlight-rectangle): Only show
23014         rectangle overlay in selected window.
23016 2005-08-01  Luc Teirlinck  <teirllm@auburn.edu>
23018         * cus-start.el (all): Put `indicate-empty-lines' in fringe group
23019         instead of display group.  Make `indicate-buffer-boundaries'
23020         customizable through Custom.
23022 2005-08-01  Juanma Barranquero  <lekktu@gmail.com>
23024         * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
23025         (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
23026         (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
23027         (gdb-put-string): Fix typos in docstrings.
23029 2005-08-01  Nick Roberts  <nickrob@snap.net.nz>
23031         Update copyright notices of files in progmodes directory for
23032         release of Emacs 22.1.
23034         * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
23036         * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
23037         Don't barf if the GUD buffer has been killed.
23039 2005-08-01  Kim F. Storm  <storm@cua.dk>
23041         * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
23043 2005-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
23045         * simple.el (next-error-follow-minor-mode):
23046         make-variable-buffer-local -> make-local-variable.
23048         * emacs-lisp/cl-extra.el: Require CL also when compiling.
23050         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
23051         (byte-compile-form-make-variable-buffer-local): New functions to warn
23052         about misuses of make-variable-buffer-local where make-local-variable
23053         was meant.
23055 2005-07-29  Juanma Barranquero  <lekktu@gmail.com>
23057         * bs.el (bs-attributes-list): Doc fix.
23058         (bs): Update url-link.
23060         * desktop.el (desktop-save-buffer): Fix typos in docstring.
23061         (desktop-load-default): Simplify.
23063         * ibuffer.el (ibuffer-columnize-and-insert-list)
23064         (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
23065         (ibuffer-unmark-all, ibuffer-toggle-marks)
23066         (ibuffer-unmark-forward, ibuffer-unmark-backward)
23067         (ibuffer-compile-make-format-form, ibuffer-format-column)
23068         (ibuffer-current-buffers-with-marks)
23069         (ibuffer-update-title-and-summary): "?\ " -> "?\s".
23070         (ibuffer): Doc fix.
23071         (ibuffer-mode): Fix typo in docstring.
23072         (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
23073         with `define-obsolete-variable-alias'.
23074         (ibuffer-elide-long-columns): Mark as obsolete.  Doc fix.
23076 2005-07-29  Kenichi Handa  <handa@m17n.org>
23078         * international/mule-cmds.el (select-message-coding-system):
23079         Be sure to use LF for end-of-line.  If no coding system is decided,
23080         return iso-8859-1-unix.
23082 2005-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23084         * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
23085         (ange-ftp-pending-error-line): New vars.
23086         (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
23087         to handle the non-fatal no-route-to-host messages.
23088         (internal-ange-ftp-mode): Make the no-match regexp more efficient.
23090 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
23092         * isearch.el (isearch-mode-map, isearch-other-meta-char)
23093         (isearch-quote-char, isearch-printing-char)
23094         (isearch-text-char-description): "?\ " -> "?\s".
23095         (isearch-lazy-highlight-cleanup)
23096         (isearch-lazy-highlight-initial-delay)
23097         (isearch-lazy-highlight-interval)
23098         (isearch-lazy-highlight-max-at-a-time)
23099         (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
23100         Declare with define-obsolete-*-alias macros.
23101         (isearch-forward): Fix typo in docstring.
23102         (search-invisible, search-ring-yank-pointer)
23103         (regexp-search-ring-yank-pointer): Doc fixes.
23105         * recentf.el (recentf-menu-append-commands-p): Declare with
23106         `define-obsolete-variable-alias'.
23107         (recentf-max-saved-items, recentf-menu-filter)
23108         (recentf-arrange-by-rule-subfilter): Doc fixes.
23109         (recentf-menu-append-commands-flag)
23110         (recentf-initialize-file-name-history, recentf-expand-file-name)
23111         (recentf-clear-data): Fix typos in docstrings.
23113 2005-07-28  Nick Roberts  <nickrob@snap.net.nz>
23115         * progmodes/gdb-ui.el: Smarten comments.
23116         (gdb-info-breakpoints-custom): Use nowarn when finding file.
23118 2005-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
23120         * term/apollo.el (terminal-init-apollo): New function containing
23121         all former top level forms in the file.
23122         * term/bobcat.el (terminal-init-bobcat):
23123         * term/cygwin.el (terminal-init-cygwin):
23124         * term/iris-ansi.el (terminal-init-iris-ansi):
23125         * term/linux.el (terminal-init-linux):
23126         * term/news.el (terminal-init-news):
23127         * term/rxvt.el (terminal-init-rxvt):
23128         * term/sun.el (terminal-init-sun):
23129         * term/tvi970.el (terminal-init-tvi970):
23130         * term/vt100.el (terminal-init-vt100):
23131         * term/vt102.el (terminal-init-vt102):
23132         * term/vt125.el (terminal-init-vt125):
23133         * term/vt200.el (terminal-init-vt200):
23134         * term/vt201.el (terminal-init-vt201):
23135         * term/vt220.el (terminal-init-vt220):
23136         * term/vt240.el (terminal-init-vt240):
23137         * term/vt300.el (terminal-init-vt300):
23138         * term/vt320.el (terminal-init-vt320):
23139         * term/vt400.el (terminal-init-vt400):
23140         * term/vt420.el (terminal-init-vt420):
23141         * term/wyse50.el (terminal-init-wyse50):
23142         * term/xterm.el (terminal-init-xterm): Likewise.
23144         * term/README: Describe the terminal-init-* functionality.
23146         * startup.el (command-line): After loading the terminal initialization
23147         file call the corresponding terminal initialization function.
23149 2005-07-27  Kenichi Handa  <handa@m17n.org>
23151         * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
23152         negative.
23154         * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
23155         (ps-mule-composition-prologue): Fix for the case that
23156         RelativeCompose is false.
23158 2005-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23160         * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
23162         * descr-text.el (describe-char): Handle the case where the list of
23163         chars is displayed in a separate frame.
23164         Be a bit more discriminating when looking for the char.
23166 2005-07-26  Juanma Barranquero  <lekktu@gmail.com>
23168         * bookmark.el (bookmark-automatically-show-annotations)
23169         (bookmark-read-annotation-text-func): Doc fixes.
23170         (bookmark-save): Improve argument/docstring consistency.
23171         (bookmark-get-bookmark, bookmark-get-bookmark-record)
23172         (bookmark-alist-from-buffer)
23173         (bookmark-upgrade-file-format-from-0)
23174         (bookmark-grok-file-format-version)
23175         (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
23176         (bookmark-read-annotation-mode)
23177         (bookmark-insert-current-bookmark, bookmark-jump)
23178         (bookmark-exit-hook): Fix typos in docstrings.
23179         (bookmark-exit-hooks): Define as obsolete alias.
23180         (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
23181         not `bookmark-exit-hooks'.  Fix docstring.
23182         (bookmark-bmenu-select): "?\ " -> "?\s".
23184 2005-07-25  Ari Roponen  <arjuropo@cc.jyu.fi>  (tiny change)
23186         * startup.el (command-line): Fix typo.
23188 2005-07-24  Richard M. Stallman  <rms@gnu.org>
23190         * tooltip.el (tooltip-mode): Test emacs-basic-display,
23191         not emacs-quick-startup.
23193 2005-07-24  Juanma Barranquero  <lekktu@gmail.com>
23195         * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
23196         (reb-next-match, reb-show-subexp): Use `with-selected-window'
23197         instead of `reb-with-current-window'.
23198         (reb-prev-match): Likewise.  Also, don't move left if the search
23199         was unsuccessful.
23200         (reb-initialize-buffer): New function.
23201         (re-builder, reb-change-syntax): Use it.
23203         * man.el (Man-goto-page): Make second argument NOERROR optional.
23205 2005-07-23  Richard M. Stallman  <rms@gnu.org>
23207         * man.el (Man-bgproc-sentinel): Check here for failure to find
23208         any man page in the output, and report the error here.
23209         (Man-arguments): Make it permanent local.
23210         (Man-goto-page): New arg NOERROR.  Never kill the current buffer.
23211         (Man-mode): Pass t for NOERROR.
23213         * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
23214         (grep-mode-font-lock-keywords):
23215         Don't use compilation-...-face for messages that are not file names.
23217         * progmodes/compile.el (compilation-mode-font-lock-keywords):
23218         Don't use compilation-...-face for messages that are not file names.
23220 2005-07-22  Juri Linkov  <juri@jurta.org>
23222         * startup.el (normal-splash-screen): Update menu name.
23224         * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
23226 2005-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
23228         * term/xterm.el: Load term/rxvt if the terminal is actually an
23229         rxvt terminal.
23230         (xterm-rxvt-set-background-mode): Remove, not used anymore.
23232         * term/rxvt.el (function-key-map): Use substitute-key-definition
23233         to bind {C,S,C-S}-{f1-f10}.  Add a few missing key bindings.
23235         * term/cygwin.el: New file.
23237 2005-07-22  Kim F. Storm  <storm@cua.dk>
23239         * image-file.el (insert-image-file, image-file-yank-handler):
23240         Fix last change to maintain a (unique) yank-handler on yanked images.
23242 2005-07-22  Eduardo Mu\e,Aq\e(Boz  <emufer@terra.es>  (tiny change)
23244         * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
23245         of the file size (as in "177B" for 177 bytes).  This happens with
23246         "ls -lh" on FreeBSD.
23248 2005-07-22  Juanma Barranquero  <lekktu@gmail.com>
23250         * hilit-chg.el (highlight-changes-global-initial-state)
23251         (highlight-compare-buffers, hilit-chg-turn-on-maybe)
23252         (hilit-chg-fixup, highlight-changes-mode):
23253         Fix typos in docstrings.
23254         (highlight-changes-global-modes, highlight-changes-rotate-faces):
23255         Doc fixes.
23257 2005-07-21  Luc Teirlinck  <teirllm@auburn.edu>
23259         * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
23260         mode function using `eval-after-load'.
23262 2005-07-21  Kim F. Storm  <storm@cua.dk>
23264         * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
23265         included when reporting an Emacs crash, and tell about the DEBUG file.
23267         * image-file.el (insert-image-file): Add yank-handler.
23268         (image-file-yank-handler): Yank handler to make unique copies of
23269         images when they are yanked into a buffer next to each other.
23271 2005-07-21  Juanma Barranquero  <lekktu@gmail.com>
23273         * comint.el (comint-use-prompt-regexp, comint-send-input)
23274         (comint-source-default, comint-extract-string)
23275         (comint-get-source, comint-word, comint-completion)
23276         (comint-source, comint-prompt-read-only, comint-update-fence):
23277         Fix typos in docstrings.
23278         (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
23279         Declare with define-obsolete-*-alias macros.
23280         (comint-previous-matching-input-from-input)
23281         (comint-next-matching-input-from-input)
23282         (comint-previous-matching-input, comint-next-matching-input)
23283         (comint-forward-matching-input):
23284         Improve argument/docstring consistency.
23286         * desktop.el (desktop-clear-preserve-buffers-regexp):
23287         Also preserve the *server* buffer.
23289         * simple.el (clone-indirect-buffer): Doc fix.
23290         (fixup-whitespace, just-one-space)
23291         (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
23292         (next-error, next-error-highlight)
23293         (next-error-highlight-no-select, next-error-last-buffer)
23294         (next-error-buffer-p, next-error-find-buffer, next-error)
23295         (previous-error, next-error-no-select, previous-error-no-select)
23296         (open-line, split-line, minibuffer-prompt-width, kill-new)
23297         (binary-overwrite-mode): Fix typos in docstrings.
23298         (set-fill-column): Fix typo in message.
23300         * skeleton.el (skeleton-proxy-new): Doc fix.
23302         * strokes.el (strokes-load-hook): Doc fix.
23303         (strokes-grid-resolution, strokes-get-grid-position)
23304         (strokes-renormalize-to-grid, strokes-read-stroke)
23305         (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
23306         (strokes-global-map): Fix typos in docstrings.
23307         (strokes-help): Doc fix.  Fix help message and pass it through
23308         `substitute-command-keys'.
23310         * tempo.el (tempo-insert-prompt, tempo-interactive)
23311         (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
23312         (tempo-insert-string-functions, tempo-local-tags)
23313         (tempo-define-template, tempo-insert-template)
23314         (tempo-insert-prompt-compat, tempo-is-user-element)
23315         (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
23316         Fix typos in docstrings.
23318         * vcursor.el (vcursor-other-window, vcursor-bind-keys)
23319         (vcursor-key-bindings, vcursor-use-vcursor-map)
23320         (vcursor-find-window, vcursor-scroll-down)
23321         (vcursor-disable, vcursor-beginning-of-buffer)
23322         (vcursor-end-of-buffer): Fix typos in docstrings.
23323         (vcursor-relative-move, vcursor-get-char-count):
23324         Improve argument/docstring consistency.
23326         * version.el: "?\ " -> "?\s".
23328         * wid-edit.el (widget-default-create, widget-after-change)
23329         (widget-default-format-handler, widget-checklist-add-item)
23330         (widget-radio-add-item, widget-choose, widget-specify-secret)
23331         (widget-field-value-create, widget-field-value-get)
23332         (widget-editable-list-format-handler)
23333         (widget-editable-list-entry-create, widget-group-value-create)
23334         (widget-documentation-link-add)
23335         (widget-documentation-string-value-create): "?\ " -> "?\s".
23336         (widget-convert-text): Doc fix.
23337         (widget-narrow-to-field, widget-field-find)
23338         (widget-url-link-action, widget-emacs-library-link-action)
23339         (widget-color-notify): Fix typos in docstrings.
23341         * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
23342         (x-select-text, set-w32-system-coding-system)
23343         (w32-add-charset-info): Fix typos in docstrings.
23345         * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
23346         (cua-enable-cua-keys, cua-use-hyper-key)
23347         (cua-virtual-rectangle-edges): Fix typos in docstrings.
23348         (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
23350         * net/tramp.el (tramp-handle-load): Fix typo in error message.
23352         * emacs-lisp/re-builder.el (regexp-builder): Declare with
23353         `defalias' instead of faking it.
23355         * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
23356         (eshell-ls-missing, eshell-ls-dired-initial-args)
23357         (eshell-ls-use-in-dired): Fix typos in docstrings.
23359 2005-07-20  Kim F. Storm  <storm@cua.dk>
23361         * emulation/cua-base.el (cua-mode): Improve doc string.
23363 2005-07-20  Juanma Barranquero  <lekktu@gmail.com>
23365         * abbrev.el (expand-region-abbrevs): Doc fix.
23366         (inverse-add-mode-abbrev, inverse-add-global-abbrev):
23367         Improve argument/docstring consistency.
23369         * arc-mode.el (archive-get-descr, archive-alternate-display):
23370         Doc fixes.
23371         (archive-l-e): Improve argument/docstring consistency.
23372         (archive-tmpdir, archive-unixdate, archive-unixtime)
23373         (archive-chmod-entry): Fix typos in docstrings.
23374         (archive-unflag, archive-unflag-backwards)
23375         (archive-unmark-all-files): "?\ " -> "?\s".
23377         * buff-menu.el (Buffer-menu-unmark): Doc fix.
23378         (Buffer-menu-not-modified, Buffer-menu-execute)
23379         (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
23380         (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
23382         * composite.el (compose-string, encode-composition-rule)
23383         (compose-last-chars): Fix typos in docstrings.
23385         * desktop.el (desktop-enable, desktop-basefilename):
23386         Declare with `define-obsolete-variable-alias'.
23387         (desktop-internal-v2s): Don't quote keywords.
23388         (desktop-clear): "?\ " -> "?\s".
23390         * dired.el (dired-align-file, dired-flag-backup-files)
23391         (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
23392         (dired-listing-switches, dired-ls-F-marks-symlinks)
23393         (dired-dwim-target, dired-load-hook, dired-mode-hook)
23394         (dired-directory, dired-faces, dired, dired-revert)
23395         (dired-mode, dired-summary, dired-view-file)
23396         (dired-copy-filename-as-kill, dired-delete-file)
23397         (dired-no-confirm, dired-unmark-all-marks)
23398         (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
23399         (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
23400         (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
23401         Fix typos in message strings.
23403         * dired-x.el (virtual-dired): Declare with `defalias'.
23404         (dired-mark-unmarked-files, dired-local-variables-file)
23405         (dired-omit-here-always): Doc fix.
23406         (dired-omit-mode, dired-find-subdir)
23407         (dired-enable-local-variables, dired-clean-up-buffers-too)
23408         (dired-extra-startup, dired-mark-extension, dired-jump)
23409         (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
23410         (dired-smart-shell-command, dired-guess-shell-alist-user)
23411         (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
23412         (dired-x-bind-find-file, dired-x-submit-report):
23413         Fix typos in docstrings.
23414         (dired-mark-unmarked-files): "?\ " -> "?\s".
23416         * dirtrack.el (dirtrack-list): Fix typos in docstring.
23418         * faces.el (describe-face): "?\ " -> "?\s".
23419         (read-all-face-attributes, read-face-font, modify-face)
23420         (face-attr-construct, italic): Fix typos in docstrings.
23421         (frame-update-face-colors): Declare with
23422         `define-obsolete-function-alias'.
23424         * files.el (find-file-noselect, recode-file-name): Doc fixes.
23425         (insert-directory, kill-some-buffers): "?\ " -> "?\s".
23426         (magic-mode-alist, buffer-file-numbers-unique)
23427         (write-file-functions, get-free-disk-space):
23428         Fix typos in docstrings.
23429         (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
23430         (write-contents-hooks, write-file-hooks):
23431         Declare with `define-obsolete-variable-alias'.
23433         * forms-d2.el (arch-rj): Fix typo in docstrings.
23434         (arch-tocol): Likewise.  "?\ " -> "?\s".
23436         * frame.el (set-frame-font, cursor-in-non-selected-windows):
23437         Fix typo in docstring.
23438         (set-screen-width, set-screen-height): Delete redundant info in
23439         doctrings.
23440         (new-frame, screen-height, screen-width): Declare with
23441         `define-obsolete-function-alias'.
23442         (delete-frame-hook, blink-cursor): Declare with
23443         `define-obsolete-variable-alias'.
23445         * paths.el (prune-directory-list): Fix typos in docstring.
23447         * pcvs-util.el (cvs-flags-query, cvs-strings->string)
23448         (cvs-prefix-get): Fix typos in docstrings.
23450         * ps-print.el (ps-extend-face-list, ps-extend-face)
23451         (ps-print-background-image): Fix typos in docstrings.
23452         (ps-default-fg, ps-default-bg): Doc fixes.
23454         * s-region.el (s-region-bind): Doc fix.
23455         (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
23457         * textmodes/org.el (org-table-formula-substitute-names)
23458         (org-table-get-vertical-vector): Doc fixes.
23459         (org-table-recalculate): Remove unused argument to `message'.
23461 2005-07-19  Carsten Dominik  <dominik@science.uva.nl>
23463         * textmodes/org.el (org-table-column-names)
23464         (org-table-column-name-regexp)
23465         (org-table-named-field-locations): New variables.
23466         (org-archive-subtree): Protect `this-command' when calling
23467         `org-copy-subtree' and `org-cut-subtree', to avoid appending to
23468         the kill buffer.
23469         (org-complete): Remove fixed-formula completion.
23470         (org-edit-formulas-map): New variable.
23471         (org-table-edit-formulas): New command.
23472         (org-finish-edit-formulas, org-abort-edit-formulas)
23473         (org-show-variable, org-table-get-vertical-vector): New functions.
23474         (org-table-maybe-eval-formula): Handle `:=' fields.
23475         (org-table-get-stored-formulas, org-table-store-formulas)
23476         (org-table-get-formula, org-table-modify-formulas)
23477         (org-table-replace-in-formulas): Handle named field formulas.
23478         (org-table-get-specials): Store locations of named fields.
23480 2005-07-19  Juri Linkov  <juri@jurta.org>
23482         * progmodes/grep.el (grep-regexp-alist)
23483         (grep-mode-font-lock-keywords, grep-process-setup):
23484         Use default GNU grep match color "01;31m" instead of "01;41m".
23485         (grep-regexp-alist, grep-mode-font-lock-keywords):
23486         Use `\\[[0-9]*m' instead of `\\[00m'.
23487         (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
23488         sgr_start where its handling is more important.  Use the real
23489         length of sgr_start instead of constant 8.
23490         (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
23491         specially.  Delete all remaining escape sequences.
23492         (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
23493         (grep-regexp-alist): Make hyperlink only for binary file name
23494         instead of the whole line.
23495         (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
23496         (grep-mode): Add autoload.
23498         * emacs-lisp/find-func.el (find-function-regexp):
23499         Add `define-compilation-mode'.
23501 2005-07-19  Juri Linkov  <juri@jurta.org>
23503         * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
23504         (compare-windows-sync-string-size, compare-windows-recenter)
23505         (compare-windows-highlight, compare-windows): Add version 22.1.
23506         (compare-windows) <defface>: Inherit from lazy-highlight instead
23507         of duplicating its default value.
23509         * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
23510         (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
23512         * descr-text.el (describe-char): Create link buttons for `charset'
23513         and `code point'.  Add the current input method name with a link
23514         button to `to input' field.  Print face names of display table
23515         characters in `The display table entry is displayed by' section
23516         instead of printing face-id in the `display' field.
23517         Guess hardcoded faces and create a link button for them.
23518         Skip empty fields when calculating max-width.
23519         Treat `widget-create' specially while inserting strings from the
23520         collected field list.
23521         (describe-char-after): Made obsolete in version 22.1, not 21.5.
23523         * diff-mode.el (diff-file-header): Change foreground color from
23524         yellow to green on light backgrounds.
23525         (diff-context): Inherit from `shadow' only for color/grayscale
23526         with more than 88 colors.
23527         (diff-indicator-removed, diff-indicator-added)
23528         (diff-indicator-changed): New faces.
23529         (diff-font-lock-keywords): Use new faces.  Regroup rules.
23530         Add "^---$" for `normal' diff format.  Fontify `#' lines with
23531         font-lock-comment-delimiter-face and font-lock-comment-face.
23532         Add `#' to ^[^...] in the rule for `diff-context-face'.
23534         * faces.el (mode-line-highlight): Replace RoyalBlue4 with
23535         a button-like box.  Inherit from `highlight' on low colors.
23536         (shadow): Use shades of gray only for color/grayscale with
23537         more than 88 colors.  Use green for light backgrounds with
23538         8 colors, and yellow for dark backgrounds with 8 colors.
23540         * font-lock.el (font-lock-regexp-grouping-backslash):
23541         Don't inherit from escape-glyph (use bold for all cases).
23543         * info.el (info-xref-visited): Use light foreground color `violet'
23544         for dark backgrounds instead of dark color `magenta3'.
23545         (info-title-1): Use `yellow' color for dark backgrounds.
23547         * isearch.el (isearch): Use not-too-dark magenta3 instead of
23548         too-light magenta2.
23550         * replace.el (match): Use slightly more light RoyalBlue3 instead
23551         of dark RoyalBlue4.
23553         * wid-edit.el (widget-inactive): Inherit from `shadow'.
23555 2005-07-19  Juanma Barranquero  <lekktu@gmail.com>
23557         * novice.el (disabled-command-hook): Declare it with
23558         `define-obsolete-variable-alias'.
23560         * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
23561         (desktop-buffer-misc-functions, desktop-buffer-handlers)
23562         (desktop-load-default): Add release to obsolescence info.
23563         (desktop-globals-to-clear, desktop-buffer-mode-handlers)
23564         (desktop-append-buffer-args, desktop-read):
23565         Fix typos in docstrings.
23566         (desktop-kill): Fix typo in message.
23567         (desktop-save): Doc fix.
23569 2005-07-19  Michael Kifer  <kifer@cs.stonybrook.edu>
23571         * viper-cmd.el (viper-escape-to-state): Bug fix.
23572         (viper-envelop-ESC-key): Change the definition of fast
23573         keysequence so it'll work with keyboard macros.
23575         * ediff.el (ediff-patch-buffer): Change the docstring.
23577 2005-07-19  Kenichi Handa  <handa@m17n.org>
23579         * international/mule-cmds.el (select-safe-coding-system): Try to
23580         use an auto-coding (if any) before anything else.  If the found
23581         auto-coding is invalid, show a warning message.
23583         * international/mule.el (find-auto-coding): New function created
23584         by modifying the body of set-auto-coding.
23585         (set-auto-coding): Use find-auto-coding to find a coding.
23587 2005-07-18  Richard M. Stallman  <rms@gnu.org>
23589         * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
23590         not isearch-mode-end-hook-error.
23591         (allout-before-change-protect): Fix error message.
23593 2005-07-18  Juri Linkov  <juri@jurta.org>
23595         * allout.el (allout-mode):
23596         * calculator.el (calculator-copy):
23597         * custom.el (custom-known-themes):
23598         * dired.el (dired-desktop-buffer-misc-data)
23599         (dired-restore-desktop-buffer):
23600         * dired-x.el (dired-omit-marker-char):
23601         * files.el (basic-save-buffer):
23602         * font-core.el (font-lock-mode):
23603         * calendar/calendar.el (calendar-goto-hebrew-date)
23604         (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
23605         (calendar-goto-persian-date):
23606         * language/ethio-util.el (ethio-sera-to-fidel-region):
23607         * textmodes/picture.el (picture-mode):
23608         Delete duplicate duplicate words.
23610 2005-07-18  Juri Linkov  <juri@jurta.org>
23612         * isearch.el (isearch-mode-map): Remove key bindings for regexp
23613         chars * ? } |.
23614         (isearch-fallback): Don't call `isearch-process-search-char'.
23615         (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
23616         (isearch-process-search-char): Call `isearch-fallback' for regexp
23617         chars * ? } |.
23618         (isearch-return-char): Make obsolete with `make-obsolete' instead
23619         of simply documenting it as obsolete in the docstring.
23620         (isearch-fallback): Refill docstring.
23622         * international/isearch-x.el
23623         (isearch-process-search-multibyte-characters): Remove unneeded
23624         `concat'.  Add intermediate values to `junk-hist' instead of
23625         `minibuffer-history'.  Test the length of `str'.
23627 2005-07-18  Juanma Barranquero  <lekktu@gmail.com>
23629         * allout.el (allout-resolve-xref): Fix typos in error strings.
23630         (allout-before-change-protect): Remove unneeded `concat'.
23632         * array.el (array-mode, array-reconfigure-rows)
23633         (untabify-backward): Fix typos in docstrings.
23634         (array-reconfigure-rows): Use `insert-buffer-substring', not
23635         `insert-buffer'.
23637         * calendar/icalendar.el (icalendar--get-unfolded-buffer):
23638         * progmodes/ada-mode.el (ada-make-body):
23639         Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
23641         * dired.el (dired-log):
23642         * tar-mode.el (tar-subfile-save-buffer):
23643         * play/zone.el (zone-pgm-stress-destress):
23644         Use `insert-buffer-substring', not `insert-buffer'.
23646 2005-07-17  Simon Josefsson  <jas@extundo.com>
23648         * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
23650 2005-07-16  Jose E. Marchesi  <jemarch@gnu.org>
23652         * lisp/mail/smtpmail.el (smtpmail-auth-supported):
23653         Add plain auth method.
23654         (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
23656 2005-07-17  Kim F. Storm  <storm@cua.dk>
23658         * ido.el (dired-other-window): Add ido property.
23660 2005-07-16  Juanma Barranquero  <lekktu@gmail.com>
23662         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
23663         Fix typo in docstring.
23664         (byte-compile-interactive-only-functions): Add `insert-buffer' and
23665         `insert-file-literally'.
23667         * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
23668         info and delete redundant message.  Doc fix.
23669         (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
23670         (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
23672 2005-07-16  Richard M. Stallman  <rms@gnu.org>
23674         * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
23675         (byte-compile-and): Use byte-compile-and-recursion.
23676         (byte-compile-or-recursion): New function.
23677         (byte-compile-or): Use that.
23678         (byte-compile-if): Guard the else-clause too.
23679         (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
23681         * isearch.el (isearch-mode-end-hook-quit): New variable.
23682         (isearch-done): Bind it.
23683         (isearch-mode-end-hook): Doc fix.
23685         * allout.el (allout-isearch-did-quit): Variable deleted.
23686         (allout-real-isearch-abort): Function name no longer used.
23687         (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
23688         (allout-isearch-rectification): isearch-mode always exists.
23689         Don't set allout-isearch-did-quit.
23690         (allout-isearch-expose): Check isearch-mode-end-hook-error, not
23691         allout-isearch-did-quit.
23692         (allout-enwrap-isearch): Just add the hook.
23693         (allout-isearch-abort): Function deleted.
23694         (allout-pre-command-business): Avoid warning.
23696         * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
23697         Correctly avoid warnings.
23698         (pascal-outline): Likewise.
23700         * progmodes/f90.el (f90-abbrev-start): Avoid warning.
23702         * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
23704         * play/tetris.el (tetris-mode): Avoid warning.
23706         * play/snake.el (snake-mode): Avoid warning.
23708         * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
23709         (gamegrid-set-display-table): Avoid warning.
23710         (gamegrid-set-timer): Likewise.
23711         (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
23712         (gamegrid-add-score-with-update-game-score-1): Take FILE
23713         as argument.
23714         (gamegrid-add-score-with-update-game-score): Pass that argument.
23715         Rename have-shared-game-dir to gamegrid-shared-game-dir.
23717         * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
23719         * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
23720         (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
23722         * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
23723         and insert-file.
23725         * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
23726         (sc-ask): Avoid warnings.
23728         * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
23729         (eshell-hist-initialize): Use that var the natural way.
23731         * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
23733         * emacs-lisp/re-builder.el (reb-cook-regexp):
23734         Avoid warning calling lre-compile-string.
23735         (reb-color-display-p): Avoid warning.
23737         * calculator.el (calculator-last-input): Guard uses
23738         of event-key and key-press-event-p.
23739         (event-key, key-press-event-p): Delete definitions.
23741         * emacs-lisp/find-gc.el (find-gc-unsafe-list)
23742         (find-gc-source-directory, find-gc-subrs-callers)
23743         (find-gc-noreturn-list, find-gc-source-files)
23744         (find-gc-subrs-called): Vars renamed and defvar'd.
23746         * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
23747         (checkdoc-overlay-put, checkdoc-delete-overlay)
23748         (checkdoc-overlay-start, checkdoc-overlay-end)
23749         (checkdoc-mode-line-update, checkdoc-char=):
23750         Define such that compiler knows they are defined.
23751         (checkdoc-call-eval-buffer): Delete.  Use eval-buffer directly.
23752         (checkdoc-read-event): Delete.  Use read-event directly.
23754         * whitespace.el (whitespace-make-overlay)
23755         (whitespace-overlay-put, whitespace-delete-overlay)
23756         (whitespace-overlay-start, whitespace-overlay-end):
23757         Define such that compiler knows they are defined.
23758         (whitespace): Move conditional inside.
23760         * tempo.el (tempo-insert-template): Suppress warning.
23762         * ediff-diff.el (longlines-mode): Add defvar.
23764 2005-07-16  Gary Howell  <g1howell-list@yahoo.com>  (tiny change)
23766         * server.el: Bind "C-x #" in a way that works even if C-x is
23767         redefined to a command key, not a prefix key.
23769 2005-07-16  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>  (tiny change)
23771         * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
23772         cl-make-type-test till execution time.
23774 2005-07-16  Markus Rost  <rost@math.uni-bielefeld.de>
23776         * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
23777         arg ARG and use it.
23779 2005-07-16  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>  (tiny change)
23781         * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
23783 2005-07-15  Luc Teirlinck  <teirllm@auburn.edu>
23785         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
23786         a defcustom with two :set or :type keywords.
23788 2005-07-15  Richard M. Stallman  <rms@gnu.org>
23790         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
23791         Don't give ^M comment-end syntax.
23793 2005-07-16  Nick Roberts  <nickrob@snap.net.nz>
23795         * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
23796         Don't consider gdbmi (gdb-mi.el has its own update functions).
23797         (gdb-var-delete): Make it work for gdbmi as well.
23798         (gdb-speedbar-expand-node): Move var-update here for gdbmi.
23800         * progmodes/gud.el (etags, sdb): Only require etags when needed.
23801         (gud-speedbar-menu-items): Correct logic for enabling items.
23803 2005-07-15  Kim F. Storm  <storm@cua.dk>
23805         * ido.el: Fix commentary.
23806         (ido-define-mode-map): Move ido-next-work-file to C-M-o.
23807         Use with-no-warnings around ffap-guesser.
23808         (ido-file-internal, ido-read-file-name, ido-read-directory-name):
23809         Let bind minibuffer-completing-file-name to t.
23811 2005-07-15  Juanma Barranquero  <lekktu@gmail.com>
23813         * startup.el (site-run-file, keyboard-type): Doc fixes.
23814         (command-line): Check for "--basic-display" argument; also for
23815         "--quick", not "--bare-bones" (which was renamed).
23816         (fancy-splash-text): Add missing item "Getting New Versions".
23817         (normal-splash-screen): Fix typos and improve consistency with
23818         `fancy-splash-text'.  Update copyright year.
23820         * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
23821         valid binding for `help-char'.
23823         * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
23825 2005-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
23827         * term.el (term-mode): Disable cua-mode for term buffers.
23829 2005-07-14  Juanma Barranquero  <lekktu@gmail.com>
23831         * add-log.el (add-log-mailing-address, change-log-merge):
23832         Doc fixes.
23833         (change-log-get-method-definition): Fix typo in docstring.
23835 2005-07-14  Kim F. Storm  <storm@cua.dk>
23837         * emulation/cua-base.el:
23838         (cua--pre-command-handler-1, cua--pre-command-handler)
23839         (cua--post-command-handler-1, cua--post-command-handler):
23840         Split in two.  Check (buffer local) value of cua-mode.
23841         (cua-selection-mode): New command.
23843 2005-07-13  Luc Teirlinck  <teirllm@auburn.edu>
23845         * custom.el (custom-initialize-safe-set)
23846         (custom-initialize-safe-default): Doc fixes.
23848         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
23849         and simplify :init-value again.
23851         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
23852         and simplify :init-value again.  Delete autoload.
23854         * startup.el (command-line): Use `custom-reevaluate-setting' again
23855         for tooltip-mode.
23857         * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
23858         a defcustom with two :initialize keywords.
23860 2005-07-13  Juanma Barranquero  <lekktu@gmail.com>
23862         * allout.el (my-mark-marker, allout-isearch-prior-pos)
23863         (allout-unprotected, allout-undo-aggregation, allout-snug-back)
23864         (allout-post-command-business, allout-flag-region)
23865         (isearch-reenable-font-lock, allout-yank)
23866         (allout-insert-latex-header, allout-insert-latex-trailer)
23867         (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
23868         (allout-latex-verb-quote): Fix typos in docstrings.
23869         (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
23870         (allout-unprotected, allout-prefix-data):
23871         Improve argument/docstring consistency.
23872         (allout-chart-subtree): Fix argument spec.
23873         (allout-open-topic): Rename `use_sib_bullet' argument to
23874         `use-sib-bullet'.  Doc fix.
23876         * whitespace.el (whitespace-check-buffer-leading)
23877         (whitespace-check-buffer-trailing)
23878         (whitespace-check-buffer-indent)
23879         (whitespace-check-buffer-spacetab)
23880         (whitespace-check-buffer-ateol, whitespace-highlighted-space)
23881         (whitespace-check-leading-whitespace)
23882         (whitespace-check-trailing-whitespace)
23883         (whitespace-check-spacetab-whitespace)
23884         (whitespace-check-indent-whitespace)
23885         (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
23886         (whitespace-modes): Fix typos in docstrings.
23887         (defgroup, defcustom): Doc fixes.
23889         * winner.el (winner-mode, winner-boring-buffers)
23890         (winner-pending-undo-ring): Doc fixes.
23891         (winner-ring): Remove unneeded `progn'.
23892         (winner-equal): `defsubst' it.
23893         (winner-redo): Fix message.
23895 2005-07-13  Kim F. Storm  <storm@cua.dk>
23897         * simple.el (line-move-1): Always use vertical-motion to
23898         do the last (or only) line move to ensure some movement.
23899         Undo 2005-06-23 change--don't check for overlays.
23901 2005-07-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23903         * term/mac-win.el (ccl-encode-mac-roman-font)
23904         (ccl-encode-mac-centraleurroman-font)
23905         (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
23906         (ccl-encode-mac-dingbats-font): Remove check for ASCII.
23907         Change charset-id boundary of dimension to ?\xef.
23908         (mac-char-fontspec-list): New constant.
23909         (fontset-add-mac-fonts): Use it.  Accept non-string `base-family'
23910         argument.  Nil uses itself as family in font-spec.  Previous
23911         behavior for nil is now provided by non-nil non-string argument.
23912         All callers changed.  Add font-specs for Mac fonts to
23913         "fontset-default" unless iso8859-1 fonts are installed.
23915 2005-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23917         * progmodes/sh-script.el (sh-get-indent-info): Only indent
23918         a continuation line if the \ is preceded by SPC or TAB.
23919         (sh-get-indent-info): Simplify.
23920         (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
23921         Use with-current-buffer.
23923         * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
23924         when the matched text is empty.
23926 2005-07-12  Luc Teirlinck  <teirllm@auburn.edu>
23928         * startup.el (command-line): Revert to previous handling of
23929         tooltip-mode.  Explain in comment why the complexity is needed.
23931         * tooltip.el (tooltip-mode): Revert to previous implementation of
23932         its defcustom.
23934         * frame.el (blink-cursor-mode): Revert to previous implementation
23935         of its defcustom.  Update comment.
23937 2005-07-12  Lars Hansen  <larsh@soem.dk>
23939         * desktop.el: Update e-mail address.
23941 2005-07-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23943         * term/mac-win.el (mac-services-mail-selection)
23944         (mac-services-mail-to): New functions.
23945         (mac-application-menu-map): Bind them.
23947 2005-07-12  wulei  <milton@wulei.net>  (tiny change)
23949         * progmodes/gdb-ui.el: Add note about buffering with Windows.
23951 2005-07-11  Luc Teirlinck  <teirllm@auburn.edu>
23953         * custom.el (custom-reevaluate-setting): Doc fix.
23955 2005-07-11  Jay Belanger  <belanger@truman.edu>
23957         * calc/calc.el (calc-embedded-announce-formula-alist)
23958         (calc-embedded-open-close-plain-alist)
23959         (calc-embedded-open-close-mode-alist): Add checks for additional
23960         major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
23962 2005-07-11  Juanma Barranquero  <lekktu@gmail.com>
23964         * custom.el (custom-enable-theme): Don't add theme to
23965         `custom-enabled-themes' with `push' because there is no
23966         setf-method for `delq'.
23968 2005-07-11  Richard M. Stallman  <rms@gnu.org>
23970         * custom.el (custom-declare-variable): Doc fix.
23972         * dired-aux.el (dired-compare-directories): Remove "." and ".."
23973         from the alists.
23975         * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
23976         Do nothing if edebug-active.
23978         * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
23979         (edebug-display): Do it here instead.
23981 2005-07-10  Richard M. Stallman  <rms@gnu.org>
23983         * cus-face.el (custom-theme-set-faces): Make it work.
23984         (custom-reset-faces): Doc fix.
23985         (custom-theme-reset-internal-face, custom-theme-face-value):
23986         Functions deleted.
23988         * custom.el (custom-push-theme): Maintain list of the settings
23989         of a given theme in its theme-settings property.
23990         Maintain position of old settings in the theme-value
23991         or theme-face property.
23992         (custom-enabled-themes): New variable.
23993         (custom-theme-enabled-p): New function.
23994         (provide-theme): Update custom-enabled-themes.
23995         Disable and reenable the `user' theme.
23996         (require-theme): Doc fix.
23997         (custom-do-theme-reset, custom-remove-theme): Functions deleted.
23998         (custom-theme-value, custom-theme-variable-value): Likewise.
23999         (custom-theme-reset-internal): Likewise.
24000         (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
24001         (custom-enable-theme, custom-disable-theme): New functions.
24002         (custom-variable-theme-value, custom-face-theme-value): Likewise.
24003         (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
24004         (custom-theme-reset-variables): Simplify.
24005         (deftheme, custom-declare-theme, custom-make-theme-feature):
24006         Definitions moved.
24008 2005-07-10  Chong Yidong  <cyd@stupidchicken.com>
24010         * longlines.el (longlines-show-region)
24011         (longlines-unshow-hard-newlines): Recognize hard newlines by
24012         non-nil hard property, instead of t.
24014 2005-07-10  Michael Kifer  <kifer@cs.stonybrook.edu>
24016         * viper-cmd.el (viper--key-maps): New variable.
24017         (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
24018         emulation-mode-map-alists.
24019         (viper-envelop-ESC-key): Use viper-subseq.
24020         (viper-search-forward/backward/next): Disable debug-on-error.
24022         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
24023         (viper-ESC-key): New defcustoms.
24025         * viper-macs.el (ex-map-read-args): Use viper-subseq.
24027         * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
24028         (viper-subseq): Copy of subseq from cl.el.
24030         * viper.el (viper-go-away, viper-set-hooks): Use
24031         emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
24033         * viper-mous.el (viper-current-frame-saved): Use defvar.
24035         * viper-init.el: Get rid of -face in face names.
24037         * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
24038         Make it work with longlines mode
24040         * ediff-mult.el (ediff-meta-mode-hook): New variable.
24042         * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
24044         * ediff-init.el: Get rid of -face in face names.
24046 2005-07-10  Richard M. Stallman  <rms@gnu.org>
24048         * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
24049         and with-timeout-unsuspend.
24051         * emacs-lisp/debug.el (debug): Call with-timeout-suspend
24052         and with-timeout-unsuspend.
24054         * emacs-lisp/timer.el (with-timeout-timers): New variable.
24055         (with-timeout): Bind that variable to record timers.
24056         (with-timeout-suspend, with-timeout-unsuspend): New functions.
24058         * emacs-lisp/debug.el (debug-help-follow): New function.
24059         (debugger-mode-map): Use that instead of help-follow.
24060         (debugger-setup-buffer): Use eval-buffer-list
24061         to handle eval-buffer frames.
24063 2005-07-10  N. Raghavendra  <raghu@mri.ernet.in>  (tiny change)
24065         * timezone.el (timezone-parse-date): Change first regexp
24066         so it will not mistakenly match dates with no time zone.
24068 2005-07-10  Jeff Dwork  <jeff.dwork@amd.com>  (tiny change)
24070         * facemenu.el (facemenu-read-color): Do case-insensitive matching.
24072 2005-07-10  Luc Teirlinck  <teirllm@auburn.edu>
24074         * custom.el (custom-initialize-safe-set)
24075         (custom-initialize-safe-default): New functions.
24077         * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
24078         and simplify :init-value.
24080         * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
24081         and simplify :init-value.  Delete obsolete comment.
24083         * startup.el (command-line): Use `custom-reevaluate-setting' to
24084         handle `tooltip-mode'.  Delete obsolete comment.
24086         * files.el (set-visited-file-name): Avoid calling
24087         `file-name-nondirectory' with a nil argument.
24089 2005-07-09  Richard M. Stallman  <rms@gnu.org>
24091         * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
24092         was called with nil for the buffer, handle the read position right.
24093         Handle read position for eval-region, too.
24095 2005-07-09  Juri Linkov  <juri@jurta.org>
24097         * fringe.el (fringe-mode): Add period in docstring.
24098         (fringe-query-style): Build prompt depending on `all-frames' arg.
24100         * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
24101         to not create links to unrelated functions in the Help buffer.
24103         * progmodes/compile.el (compilation-mode-hook, compilation-mode):
24104         Doc fix.
24106         * simple.el (next-error-hook): New variable.
24107         (next-error): Use it.  Doc fix.
24109         * textmodes/ispell.el (ispell-command-loop): Add current
24110         dictionary name and program name to mode-line-format.
24111         (ispell-region, ispell-process-line): Add current dictionary name
24112         and program name to messages.
24114 2005-07-08  Jay Belanger  <belanger@truman.edu>
24116         * calc/calc.el (calc-embedded-announce-formula-alist)
24117         (calc-embedded-open-close-formula-alist)
24118         (calc-embedded-open-close-word-alist)
24119         (calc-embedded-open-close-plain-alist)
24120         (calc-embedded-open-close-new-formula-alist)
24121         (calc-embedded-open-close-mode-alist)
24122         (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
24123         (calc-embedded-mode-hook): New variables.
24125         * calc/calc-embed.el (calc-embedded-firsttime)
24126         (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
24127         New variables.
24128         (calc-do-embedded): Use calc-embedded-firsttime,
24129         calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
24130         determine whether or not to run hooks.
24131         (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
24132         calc-embedded-firsttime-formula appropriately.
24133         Set calc-embedded delimiter variables according to mode.
24135 2005-07-08  Richard M. Stallman  <rms@gnu.org>
24137         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
24138         Check for "emacs", etc., as entire symbol, not just as word.
24139         (checkdoc-file-comments-engine): Use regexp-quote on FN.
24141         * files.el (set-visited-file-name): Report the error
24142         for "empty filename" earlier.
24143         (kill-some-buffers): Ignore buffers already dead.
24145         * fringe.el (fringe-mode): Doc fix.
24147         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
24148         Check for (featurep 'xemacs) and turn off warnings in what it guards.
24149         Use unwind-protect to ensure byte-compile-unresolved-functions
24150         is updated.
24152         * whitespace.el (whitespace-buffer-leading-cleanup):
24153         Simplify w/ skip-chars-forward.
24154         (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
24156         * mail/rmail.el (rmail-only-expunge): Fix paren error.
24157         Unconditionally try to leave point at the same old place.
24159 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>  (tiny change)
24161         * comint.el (comint-postoutput-scroll-to-bottom)
24162         (comint-show-maximum-output): Take scroll-margin into consideration.
24164 2005-07-08  Kim F. Storm  <storm@cua.dk>
24166         * ido.el (ido-use-filename-at-point): New choice `guess'.
24167         (ido-file-internal): Try ffap-guesser if selected.
24169         * ido.el (ido-before-fallback-functions): New hook.
24170         (ido-buffer-internal, ido-file-internal, ido-read-buffer)
24171         (ido-read-file-name): Run it.
24173 2005-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
24175         * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
24176         strings rather than a list of symbols to the completion function.
24178 2005-07-07  Jay Belanger  <belanger@truman.edu>
24180         * calc/calc-units.el (math-apply-units): Change the places in
24181         which units are simplified.
24183 2005-07-07  Luc Teirlinck  <teirllm@auburn.edu>
24185         * cus-edit.el (customize-option, customize-option-other-window):
24186         Make them handle aliases.
24188         * custom.el (custom-variable-p): Make it recursively follow
24189         aliases.  Mention that in the docstring.
24191 2005-07-07  Richard M. Stallman  <rms@gnu.org>
24193         * cus-start.el (exec-path): Use `directory' instead of `file'.
24194         Fix tag for nil.
24196 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
24198         * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
24199         when called non-interactively.  Doc fix.
24201 2005-07-07  Lute Kamstra  <lute@gnu.org>
24203         * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
24204         new address as well.
24206 2005-07-07  Kenichi Handa  <handa@m17n.org>
24208         * international/mule.el (make-coding-system):
24209         Describe `ascii-incompatible' property in the docstring.
24210         (set-file-name-coding-system): Signal an error if coding-system is
24211         ascii-incompatible.
24212         (set-keyboard-coding-system): Likewise.
24214         * international/mule-cmds.el (set-default-coding-systems):
24215         Don't set default-file-name-coding-system and
24216         default-keyboard-coding-system if coding-system is ASCII-incompatible.
24218         * international/utf-16.el: Declare that all UTF-16-based coding
24219         systems are ASCII-incompatible.
24221 2005-07-07  Nick Roberts  <nickrob@snap.net.nz>
24223         * progmodes/gud.el: Require font-lock for displaying errors.
24224         Used by gdb-ui.el.
24226 2005-07-07  Juanma Barranquero  <lekktu@gmail.com>
24228         * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
24229         values for the pattern lists which are `read'able but not
24230         `append'able (like symbols).
24232 2005-07-06  Richard M. Stallman  <rms@gnu.org>
24234         * progmodes/flymake.el (flymake-float-time): Instead of
24235         with-no-warnings, test for XEmacs.
24236         (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
24237         to avoid warning.
24239 2005-07-06  Juanma Barranquero  <lekktu@gmail.com>
24241         * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
24243 2005-07-05  Lute Kamstra  <lute@gnu.org>
24245         * battery.el: Add support for Darwin (with much debugging help
24246         from Samuel Lauber <sam124@operamail.com>).
24247         (battery-status-function, battery-echo-area-format)
24248         (battery-mode-line-format): Add support for pmset on Darwin.
24249         (battery-load-low, battery-load-critical): New user options.
24250         (battery-pmset): New function.
24252 2005-07-05  Lute Kamstra  <lute@gnu.org>
24254         Update FSF's address in GPL notices.
24256         * textmodes/page-ext.el: Update FSF's address.
24258 2005-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
24260         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
24261         filling from using prefix when filling a single-line docstring.
24263         * progmodes/flymake.el: Remove useless eval-when-compile.
24265         * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
24267 2005-07-04  Richard M. Stallman  <rms@gnu.org>
24269         * textmodes/org.el (org-file-apps-defaults-gnu):
24270         Rename from org-file-apps-defaults-linux.
24271         (org-default-apps): Don't test system-type for `linux'.
24272         (org-file-apps): Doc fix.
24274 2005-07-04  David Ponce  <david@dponce.com>
24276         * tree-widget.el: Improve header Commentary section.
24277         (tree-widget) [defgroup]
24278         (tree-widget-image-enable, tree-widget-themes-directory)
24279         (tree-widget-theme, tree-widget-image-properties-emacs)
24280         (tree-widget-image-properties-xemacs, tree-widget-create-image)
24281         (tree-widget-image-formats, tree-widget-control)
24282         (tree-widget-empty-control, tree-widget-leaf-control
24283         (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
24284         (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
24285         (tree-widget-keep, tree-widget-after-toggle-functions)
24286         (tree-widget-open-node, tree-widget-close-node): Doc fix.
24287         (tree-widget-open-control, tree-widget-close-control): Fix doc and
24288         :help-echo message.
24289         (tree-widget-set-theme): Doc fix.  Use `string-equal'.
24290         (tree-widget-image-properties): Doc fix.  Clearer implementation.
24291         (tree-widget--cursors): New constant.
24292         (tree-widget-lookup-image): New function split from
24293         `tree-widget-find-image'.  Clearer implementation.
24294         (tree-widget-find-image): Use it.
24295         (tree-widget-button-keymap): Use `set-keymap-parent'.
24296         (tree-widget) [define-widget]: Use `widget-children-value-delete'.
24297         Define the sub-widgets here.
24298         (tree-widget-node): Check that :node is not a tree-widget.
24299         (tree-widget-get-super, tree-widget-open-control)
24300         (tree-widget-close-control, tree-widget-empty-control)
24301         (tree-widget-leaf-control, tree-widget-guide)
24302         (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
24303         (tree-widget-no-handle, tree-widget-value-delete)
24304         (tree-widget-map): Remove.
24305         (tree-widget-children-value-save): Doc fix.  Simplified.
24306         (tree-widget-value-create): Update according to previous changes.
24308 2005-07-04  Carsten Dominik  <dominik@science.uva.nl>
24310         * textmodes/org.el: Leading space replaced by TABS.
24311         (org-recalc-marks, org-table-rotate-recalc-marks)
24312         (org-table-get-specials): Treat "^" and "_" marks.
24313         (org-table-justify-field-maybe): Optional argument NEW.
24314         (org-table-eval-formula): Parsing of the format simplified.
24315         New modes C,I.  Honor the %= parameter in the current table.
24316         Avoid unnecessary re-align by using the NEW argument to
24317         `org-table-justify-field-maybe'.
24318         (org-calc-default-modes): Default for date-format mimicks org-mode.
24319         (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
24321 2005-07-03  Luc Teirlinck  <teirllm@auburn.edu>
24323         * cus-face.el (custom-theme-set-faces): Make it handle face
24324         aliases whose alias declarations are pre- or autoloaded.
24326 2005-07-04  Juri Linkov  <juri@jurta.org>
24328         * faces.el (read-face-name): Put the code for getting a face name
24329         from the buffer before adding the faces from the `face' property.
24330         Use `completing-read-multiple' instead of `completing-read'.
24331         Require `crm'.  Add default value and post-process the returned
24332         list of faces.
24334         * emacs-lisp/crm.el (crm-find-current-element)
24335         (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
24337         * emacs-lisp/lisp-mode.el (eval-defun-1):
24338         * emacs-lisp/edebug.el (edebug-eval-defun):
24339         Remove unnecessary quotes.
24341 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
24343         * progmodes/prolog.el (prolog-eof-string): Doc fixes.
24344         (prolog-indent-level): Fix typo in docstring.
24346         * info.el (Info-history, Info-history-forward)
24347         (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
24349         * add-log.el (add-change-log-entry):
24350         * comint.el (comint-dynamic-list-input-ring)
24351         (comint-dynamic-list-completions):
24352         * dabbrev.el (dabbrev-expand):
24353         * delim-col.el (delimit-columns-rectangle-line):
24354         * diff-mode.el (diff-context->unified, diff-reverse-direction)
24355         (diff-unified->context):
24356         * ediff-init.el (ediff-abbrev-jobname):
24357         * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
24358         (ediff-replace-session-activity-marker-in-meta-buffer):
24359         * info.el (Info-summary):
24360         * lpr.el (printify-region):
24361         * printing.el (pr-create-interface):
24362         * ps-print.el (ps-print-quote):
24363         * ses.el (ses-column-widths, ses-print-cell)
24364         (ses-adjust-print-width, ses-center):
24365         * shell.el (shell-file-name-quote-list):
24366         * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
24367         (strokes-fill-current-buffer-with-whitespace)
24368         (strokes-xpm-for-stroke, strokes-list-strokes)
24369         (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
24370         * term.el (term-dynamic-list-input-ring)
24371         (term-dynamic-list-completions):
24372         * calc/calc.el (math-format-stack-value):
24373         * emacs-lisp/edebug.el (edebug-display-freq-count):
24374         * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
24375         (delphi-new-comment-line):
24376         * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
24377         * progmodes/executable.el (executable-set-magic):
24378         * progmodes/python.el (inferior-python-mode):
24379         * progmodes/scheme.el (scheme-mode-syntax-table):
24380         * progmodes/sh-script.el (sh-maybe-here-document):
24381         * progmodes/sql.el (sql-copy-column):
24382         * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
24383         * textmodes/bibtex.el (bibtex-mode):
24384         * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
24385         (sgml-auto-attributes):
24386         * textmodes/table.el (table-insert, table-shorten-cell)
24387         (table--generate-source-scan-lines, table-delete-row)
24388         (*table--cell-delete-char, table--spacify-frame)
24389         (table--horizontally-shift-above-and-below)
24390         (table--cell-insert-char, table--cell-blank-str)
24391         (table--fill-region-strictly):
24392         * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
24393         * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
24395         * add-log.el (change-log):
24396         * apropos.el (apropos):
24397         * comint.el (comint-completion, comint-source):
24398         * dabbrev.el (dabbrev):
24399         * delim-col.el (columns):
24400         * diff-mode.el (diff-mode):
24401         * ediff.el (ediff):
24402         * ediff-diff.el (ediff-diff):
24403         * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
24404         * ediff-mult.el (ediff-mult):
24405         * ediff-ptch.el (ediff-ptch):
24406         * ediff-wind.el (ediff-window):
24407         * facemenu.el (facemenu):
24408         * indent.el (indent):
24409         * info.el (info):
24410         * jka-cmpr-hook.el (compression, jka-compr):
24411         * lpr.el (lpr):
24412         * outline.el (outlines):
24413         * pcmpl-cvs.el (pcmpl-cvs):
24414         * pcmpl-rpm.el (pcmpl-rpm):
24415         * printing.el (printing):
24416         * ps-print.el (postscript, ps-print, ps-print-horizontal)
24417         (ps-print-vertical, ps-print-headers, ps-print-font)
24418         (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
24419         (ps-print-background, ps-print-printer, ps-print-page)
24420         (ps-print-miscellany):
24421         * ses.el (ses):
24422         * shell.el (shell, shell-directories, shell-faces):
24423         * startup.el (initialization):
24424         * strokes.el (strokes):
24425         * term.el (term):
24426         * uniquify.el (uniquify):
24427         * w32-vars.el (w32):
24428         * calc/calc.el (calc):
24429         * emacs-lisp/bytecomp.el (bytecomp):
24430         * emacs-lisp/cl-indent.el (lisp-indent):
24431         * emacs-lisp/edebug.el (edebug):
24432         * emacs-lisp/elp.el (elp):
24433         * emacs-lisp/testcover.el (testcover):
24434         * emacs-lisp/trace.el (trace):
24435         * emulation/viper-ex.el (viper-ex):
24436         * emulation/viper-mous.el (viper-mouse):
24437         * mail/mailalias.el (mailalias):
24438         * mail/supercite.el (supercite, supercite-frames)
24439         (supercite-attr, supercite-cite, supercite-hooks):
24440         * net/rcompile.el (remote-compile):
24441         * net/rlogin.el (rlogin):
24442         * obsolete/ooutline.el (outlines):
24443         * progmodes/delphi.el (delphi):
24444         * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
24445         (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
24446         (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
24447         (ebnf-optimization):
24448         * progmodes/etags.el (etags):
24449         * progmodes/executable.el (executable):
24450         * progmodes/idlwave.el (idlwave):
24451         * progmodes/pascal.el (pascal):
24452         * progmodes/prolog.el (prolog):
24453         * progmodes/python.el (python):
24454         * progmodes/scheme.el (scheme):
24455         * progmodes/sh-script.el (sh, sh-script):
24456         * progmodes/sql.el (SQL):
24457         * progmodes/tcl.el (tcl):
24458         * textmodes/bibtex.el (bibtex, bibtex-autokey):
24459         * textmodes/enriched.el (enriched):
24460         * textmodes/makeinfo.el (makeinfo):
24461         * textmodes/sgml-mode.el (sgml):
24462         * textmodes/table.el (table-hooks):
24463         * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
24464         * textmodes/texinfo.el (texinfo):
24465         * textmodes/two-column.el (two-column):
24466         Finish `defgroup' description with period.
24468         * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
24469         * eshell/esh-var.el (eshell-var):
24470         * progmodes/vhdl-mode.el (vhdl-testbench):
24471         * textmodes/org.el (org): Fix typos in docstrings.
24473         * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
24474         consistency.
24476         * progmodes/flymake.el (flymake-find-file): Remove.
24477         (flymake-float-time): Use `with-no-warnings'.
24478         (flymake-check-start-time, flymake-check-was-interrupted)
24479         (flymake-err-info, flymake-is-running, flymake-last-change-time)
24480         (flymake-new-err-info): `defvar' at compile time.
24482 2005-07-03  Juanma Barranquero  <lekktu@gmail.com>
24484         * replace.el (occur-hook): Doc fix.
24485         (occur-1): Don't call `occur-hook' if there are no matches.
24487 2005-07-03  Richard M. Stallman  <rms@gnu.org>
24489         * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
24490         global-map, save the same map.
24491         (global-map): Don't alter it at top level.
24492         (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
24493         Then alter it here instead.
24494         (tpu-edt-off): Set global-map to the saved one.
24496         * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
24497         All references simplified.
24498         (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p.  Uses changed.
24499         (zmacs-regions): Add defvar.
24500         (repeat-complex-command-map): Everything about that deleted.
24502         * textmodes/artist.el (artist-key-is-drawing)
24503         (artist-key-endpoint1, artist-key-poly-point-list)
24504         (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
24505         (artist-key-compl-table, artist-rb-save-data)
24506         (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
24507         Don't put them in eval-when-compile.
24508         (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
24510         * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
24511         Use with-no-warnings.
24513         * net/browse-url.el (dos-windows-version): Add defvar.
24515         * mail/supercite.el (filladapt-prefix-table): Add defvar.
24517         * mail/rmailsum.el (rmail-summary-redo): Add defvar.
24518         (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
24519         (rmail-new-summary-line-count): Rename from new-summary-line-count.
24520         Add defvar.
24521         (rmail-summary-beginning-of-message): Use with-no-warnings.
24522         (rmail-summary-first-message, rmail-summary-last-message): Likewise.
24524         * emulation/vip.el (vip-replace-string, ex-map, ex-read):
24525         Use with-no-warnings.
24527         * emulation/vi.el (vi-mark-region): Use c-mark-function.
24528         (c-mark-function): Add point-moving-unit property.
24529         (vi-goto-line): Use with-no-warnings.
24531         * emulation/edt.el (edt-last-copied-word): Add defvar.
24532         (zmacs-region-stays): Likewise.
24533         (edt-mark-section-wisely): Use c-mark-function for C.
24534         Use makr-defun for Fortran.
24535         (time-string): defvar deleted.
24536         (edt-display-the-time): Don't set time-string.
24538         * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
24540         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
24541         Don't warn when name is not constant
24542         or for defining the group `emacs'.
24544         * tooltip.el (gud-tooltip-mode): Add defvar.
24546         * startup.el (default-frame-background-mode): Add defvar.
24548         * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
24550         * info.el (tool-bar-map): Add defvar.
24552         * dired.el (dnd-protocol-alist): Add defvar.
24554         * dired-aux.el (dired-query): Display question with answer, when
24555         the user answers.
24557         * custom.el (custom-add-option): Doc fix.
24559         * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
24561 2005-07-03  Eli Zaretskii  <eliz@gnu.org>
24563         * font-lock.el (font-lock-regexp-grouping-construct): Fix the
24564         bogus name from the last change.
24566 2005-07-02  Luc Teirlinck  <teirllm@auburn.edu>
24568         * custom.el (custom-declare-variable): Fix typos in comment.
24569         (custom-known-themes): Doc fix.
24570         (custom-theme-directory): New defcustom.
24571         (require-theme): Make it check `custom-theme-directory'.
24573         * cus-theme.el (custom-new-theme-mode): New function.
24574         (custom-theme-name, custom-theme-variables, custom-theme-faces)
24575         (custom-theme-description): Add compiler defvars.
24576         (customize-create-theme): Add doc to the "*New Custom Theme*"
24577         buffer.  Use `custom-new-theme-mode'.
24578         (custom-theme-write): Put the created buffer in emacs-lisp-mode
24579         and save it to the `custom-theme-directory'.  Make this the
24580         default directory of the buffer.
24582 2005-07-02  David Hunter  <hunterd_42@comcast.net>  (tiny change)
24584         * progmodes/flymake.el (flymake-mode, flymake-mode-off):
24585         Fix unbalanced parentheses.
24587 2005-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
24589         * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
24590         into flymake-mode and delegate to flymake-mode.
24592         * find-file.el (ff-which-function-are-we-in): Clean up.
24594 2005-07-02  Juanma Barranquero  <lekktu@gmail.com>
24596         * replace.el (occur-rename-buffer): Fix docstring.
24598         * emulation/edt.el (*EDT-keys*, edt-default-global-map)
24599         (edt-last-copied-word, edt-learn-macro-count)
24600         (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
24601         (edt-rect-start-point, edt-user-global-map, rect-start-point)
24602         (time-string, zmacs-region-stays):
24603         * emulation/edt-mapper.el (edt-save-function-key-map)
24604         (EDT-key-name): `defvar' to silence the byte-compiler.
24606 2005-07-02  Martin Rudalics  <rudalics@gmx.at>
24608         * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
24609         font-lock-regexp-backslash.  Doc fix.
24610         (font-lock-regexp-backslash-grouping-construct): Rename from
24611         font-lock-regexp-backslash-construct.  Doc fix.
24612         (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
24613         grouping constructs.
24615 2005-07-02  Eli Zaretskii  <eliz@gnu.org>
24617         * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
24618         updating all the prerequisites.
24620 2005-07-01  Juanma Barranquero  <lekktu@gmail.com>
24622         * textmodes/org.el (org-agenda-start-on-weekday)
24623         (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
24624         (org-agenda-use-time-grid, org-archive-location)
24625         (org-allow-space-in-links, org-usenet-links-prefer-google)
24626         (org-enable-table-editor, org-export-default-language)
24627         (org-export-html-show-new-buffer, org-fill-paragraph)
24628         (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
24629         (org-goto-quit, org-occur, org-eval-in-calendar)
24630         (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
24631         (org-agenda-diary-entry, org-remember-help)
24632         (org-table-convert-region, org-at-table-p)
24633         (org-table-move-row-down, org-table-move-row-up)
24634         (org-table-copy-region, org-table-toggle-vline-visibility)
24635         (org-table-get-stored-formulas, org-table-get-specials)
24636         (org-recalc-commands, org-table-eval-formula)
24637         (org-table-formula-substitute-names, orgtbl-make-binding)
24638         (org-format-org-table-html, org-format-table-table-html)
24639         (org-format-table-table-html-using-table-generate-source)
24640         (org-customize): Fix typos in docstrings.
24641         (org-level-2, org-at-timestamp-p, org-agenda-day-view)
24642         (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
24643         (org-back-to-heading): Doc fixes.
24644         (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
24645         (org-agenda-change-all-lines, org-get-header):
24646         Improve argument/docstring consistency.
24647         (orgtbl-error): Fix error message.
24649         * progmodes/flymake.el (flymake-find-possible-master-files)
24650         (flymake-master-file-compare, flymake-get-line-err-count)
24651         (flymake-highlight-line, flymake-gui-warnings-enabled):
24652         Fix typos in docstrings.
24653         (flymake-parse-line, flymake-get-project-include-dirs-function)
24654         (flymake-get-prev-err-line-no, flymake-goto-prev-error):
24655         Doc fixes.
24656         (flymake-get-project-include-dirs-function)
24657         (flymake-make-err-menu-data):
24658         Improve argument/docstring consistency.
24660 2005-07-01  Lute Kamstra  <lute@gnu.org>
24662         * battery.el (battery-linux-proc-apm): Fix typo in docstring.
24663         Catch errors with ignore-errors.  Use temporary buffer.
24664         (battery-linux-proc-acpi): Fix typo in docstring.  Document `%r'.
24666         * facemenu.el (facemenu-unlisted-faces): Delete foreground and
24667         background color faces.
24668         (facemenu-set-foreground, facemenu-set-background):
24669         Use facemenu-set-face-from-menu.
24670         (facemenu-set-face-from-menu): Treat face names that start with
24671         "fg:" or "bg:" as special.
24672         (facemenu-add-new-color): Don't create faces.  Simplify.
24674 2005-06-30  Richard M. Stallman  <rms@gnu.org>
24676         * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
24677         (crm-find-current-element): Likewise.
24679 2005-06-30  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
24681         * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
24683 2005-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
24685         * arc-mode.el (archive-extract): Make it work as a mouse binding.
24686         (archive-mouse-extract): Make it an obsolete alias.
24687         (archive-mode-map): Don't use archive-mouse-extract any more.
24688         (archive-mode, archive-extract): write-contents-hooks ->
24689         write-contents-functions.
24690         (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
24691         first arg.
24692         (archive-rename-entry): Update the call.
24693         (archive-zip-summarize): Remove unused var `method'.
24694         (archive-lzh-summarize): Remove unused var `creator'.
24696         * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
24697         dedicated frame upon exit.
24699         * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
24700         (archive-zip-extract, archive-zip-expunge)
24701         (archive-zip-update, archive-zip-update-case): Use executable-find.
24702         (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
24703         Use restore-buffer-modified-p.
24704         (archive-extract, archive-add-new-member, archive-write-file-member):
24705         Use with-current-buffer.
24706         (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
24708 2005-06-30  Andreas Schwab  <schwab@suse.de>
24710         * progmodes/gud.el (gud-filter): Remove unneeded progn.
24712 2005-06-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
24714         * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
24716 2005-06-30  Juri Linkov  <juri@jurta.org>
24718         * faces.el (vertical-border): Inherit from mode-line-inactive
24719         only on tty.
24721 2005-06-30  Juanma Barranquero  <lekktu@gmail.com>
24723         * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
24724         example, -NLINES in the `occur' docstring).
24726         * replace.el (occur-1): When no matches are found, do not set the
24727         `buffer-read-only' and modified flags for the occur buffer,
24728         because it is deleted.
24730         * emulation/cua-base.el (cua-check-pending-input)
24731         (cua-repeat-replace-region, cua-mode, cua-debug)
24732         (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
24733         Fix typos in docstrings.
24735         * emulation/cua-gmrk.el (cua-toggle-global-mark)
24736         (cua-cut-region-to-global-mark)
24737         (cua--cut-rectangle-to-global-mark):
24738         Remove period from end of messages.
24740         * emulation/cua-rect.el (cua-do-rectangle-padding):
24741         Remove period from end of messages.
24742         (cua--rectangle-seq-format): Fix typo in docstring.
24743         (cua-sequence-rectangle, cua-fill-char-rectangle):
24744         Improve argument/docstring consistency.
24746 2005-06-29  Juri Linkov  <juri@jurta.org>
24748         * faces.el (default-frame-background-mode): New internal variable.
24749         (frame-set-background-mode): Use it.
24751         * startup.el (normal-top-level): Set default-frame-background-mode
24752         instead of frame-background-mode.  Before setting it, test for its
24753         nil value.  Remove tests for frame-background-mode and frame
24754         parameter `reverse'.  Add test for "unspecified-fg".
24756         * term/xterm.el (xterm-rxvt-set-background-mode):
24757         * term/rxvt.el (rxvt-set-background-mode):
24758         Set default-frame-background-mode instead of frame-background-mode.
24760 2005-06-29  Juanma Barranquero  <lekktu@gmail.com>
24762         * simple.el (set-variable): Warn about obsolete user variables.
24764         * imenu.el (imenu--completion-buffer):
24765         * mouse.el (mouse-buffer-menu-alist):
24766         * msb.el (msb-invisible-buffer-p):
24767         * calendar/diary-lib.el (diary-header-line-format):
24768         * emacs-lisp/pp.el (pp-buffer):
24769         * progmodes/cperl-mode.el (cperl-do-auto-fill):
24770         * textmodes/picture.el (picture-replace-match):
24771         Change space constants followed by a sexp to "?\s ".
24773         * play/decipher.el (decipher-loop-with-breaks):
24774         * textmodes/texinfo.el (texinfo-insert-@item): Change space
24775         constants "protected" from end of line by a comment to "?\s".
24777 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
24779         * font-lock.el (save-buffer-state): Use `declare'.
24781         * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
24782         reset the syntax-table to cperl-mode-syntax-table.
24783         (cperl-mode): Make _ into word-syntax during font-locking so "print" in
24784         "foo_print_bar" is not matched as a reserved keyword.
24786 2005-06-29  Carsten Dominik  <dominik@science.uva.nl>
24788         * textmodes/org.el (orgtbl-setup): New function, for delayed
24789         setup for the orgtbl commands.
24790         (org-calc-default-modes): New option.
24791         (orgtbl-make-binding): Use `defun' to get better help display.
24792         (org-diary): Call `org-compile-prefix-format'.
24793         (org-table-formula-substitute-names): New function.
24794         (org-agenda-day-view, org-agenda-week-view): New commands.
24795         (org-agenda-toggle-week-view): Command removed.
24796         (org-tbl-menu): Split off from org-org-menu.
24797         (org-mode): Move removal of outline-mode menus to here.
24798         (org-table-formula-debug): New option.
24799         (org-table-insert-row): Keep first field if just "#" or "*".
24800         (org-mode): Paragraph regexps fixed.
24801         (org-table-recalculate-regexp): New constant.
24802         (org-table-justify-field-maybe): Avoid replace if not necessary.
24803         (org-copy-special, org-cut-special): Use `call-interactively'.
24804         (org-table-copy-region): Take region from `interactive' call.
24805         (org-trim): Return string even if no match.
24806         (org-formula): New face.
24807         (org-set-font-lock-defaults): No longer highlight "FIXME".
24808         But highlight formula-related fields in table.
24809         (org-table-p): Use regexp, not fontification.
24810         (org-table-align): Handle white space at end of line.
24811         (org-table-formula-evaluate-inline): New option.
24812         (org-mode): Auto-wrapping in comment lines turned off.
24813         (org-table-copy-down): Evaluate only in copied field, not in
24814         destination.
24815         (org-table-current-formula): Variable removed.
24816         (org-table-store-formulas, org-table-get-stored-formulas)
24817         (org-table-modify-formulas, org-table-replace-in-formulas)
24818         (org-table-maybe-eval-formula): New functions.
24819         (org-table-get-formula): Modify to use stored formulas.
24820         (org-table-insert-column, org-table-delete-column)
24821         (org-table-move-column): Call `org-table-modify-formulas'.
24822         (org-complete): Add completion for keyword formulas.
24823         (orgtbl-mode): Pull orgtbl-mode-map to start of
24824         minor-mode-map-alist.
24826 2005-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
24828         * progmodes/python.el (python-check): Require `compile' before
24829         modifying its variables.
24831         * newcomment.el (comment-indent-default): Don't get fooled by an early
24832         end of buffer.
24834 2005-06-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24836         * ps-print.el (ps-print-version): Fix version number.
24838 2005-06-28  Luc Teirlinck  <teirllm@auburn.edu>
24840         * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
24842 2005-06-28  Richard M. Stallman  <rms@gnu.org>
24844         * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
24845         (flyspell-local-mouse-map): Declaration deleted.
24846         (flyspell-mouse-map): Bind only mouse-2.
24847         (flyspell-mode-map): Don't test flyspell-use-local-map.
24848         (flyspell-overlay-keymap-property-name): Var deleted.
24849         (flyspell-mode-on): Don't make local bindings for
24850         flyspell-mouse-map and flyspell-mode-map.
24851         (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
24853         * textmodes/ispell.el (ispell-word): Do not ignore short words.
24855         * progmodes/compile.el (compilation-next-error-function):
24856         Don't switch buffers; operate on the current buffer.
24858         * progmodes/compile.el (compilation-error-file-name)
24859         (compilation-warning-file-name, compilation-info-file-name)
24860         (compilation-line-number, compilation-column-number): New faces.
24861         (compilation-error-face, compilation-warning-face)
24862         (compilation-info-face, compilation-line-face)
24863         (compilation-column-face): Use them.
24865         * facemenu.el (facemenu-add-face): Warn when font-lock is active.
24867         * comint.el (comint-password-prompt-regexp): Accept ", try again".
24869         * bindings.el (global-map): Bind insertchar and its variants.
24871 2005-06-27  Richard M. Stallman  <rms@gnu.org>
24873         * textmodes/artist.el (artist-text-overwrite)
24874         (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
24876 2005-06-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24878         * ps-print.el: It was not working the page selection for printing.
24879         Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
24880         (ps-print-version): New version 6.6.7.
24881         (ps-end-sheet): New fun.
24882         (ps-header-sheet, ps-end-job): Call it.
24884 2005-06-27  Luc Teirlinck  <teirllm@auburn.edu>
24886         * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
24888 2005-06-27  Lute Kamstra  <lute@gnu.org>
24890         * facemenu.el (facemenu-unlisted-faces): Add foreground and
24891         background color faces.
24892         (facemenu-get-face): Delete function.
24893         (facemenu-set-face-from-menu): Don't call facemenu-get-face.
24894         (facemenu-add-new-color): Make second argument mandatory.
24895         Create the appropriate face and return it.  Simplify.
24896         (facemenu-set-foreground, facemenu-set-background): Don't check if
24897         color is defined.  Use return value of facemenu-add-new-color.
24899 2005-06-26  Nick Roberts  <nickrob@snap.net.nz>
24901         * progmodes/gud.el (gud-filter): Add missing argument to
24902         with-selected-window.
24904 2005-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
24906         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
24907         a :require to the defcustom.
24909         * emacs-lisp/autoload.el (make-autoload): Add the :setter for
24910         defcustoms corresponding to minor modes.
24912 2005-06-26  David Ponce  <david@dponce.com>
24914         * recentf.el: Require tree-widget instead of wid-edit.
24915         (recentf-filename-handler): Fix widget :type.
24916         (recentf-cancel-dialog, recentf-open-more-files)
24917         (recentf-open-files-action): Doc fix.
24918         (recentf-dialog-goto-first): New function.
24919         (recentf-dialog-mode-map): Set parent keymap first.
24920         (recentf-dialog-mode): Define with define-derived-mode.
24921         Don't display continuation lines in dialogs.
24922         (recentf-edit-list): Rename from recentf-edit-selected-items.
24923         (recentf-edit-list-select): Rename from recentf-edit-list-action.
24924         Simplify.
24925         (recentf-edit-list-validate): New function.
24926         (recentf-edit-list): Update accordingly.
24927         (recentf-open-files-item-shift): Remove.
24928         (recentf-open-files-item): Convert menu elements into tree and
24929         link widgets.  Don't create the widgets.
24930         (recentf-open-files): Update accordingly.
24931         (recentf-save-list): Untabify.
24933 2005-06-25  Luc Teirlinck  <teirllm@auburn.edu>
24935         * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
24936         (keep-lines): Add INTERACTIVE arg.  Never delete lines only
24937         partially contained in the active region.  Do not take active
24938         region into account when called from Lisp, unless INTERACTIVE arg
24939         is non-nil.  Use `forward-line' instead of `beginning-of-line' to
24940         avoid trouble with fields.  Make marker point nowhere when no
24941         longer used.  Always return nil.  Doc fix.
24942         (flush-lines): Add INTERACTIVE arg.  Do not take active region
24943         into account when called from Lisp, unless INTERACTIVE arg is
24944         non-nil.  Use `forward-line' instead of `beginning-of-line' to
24945         avoid trouble with fields.  Make marker point nowhere when no
24946         longer used.  Always return nil.  Doc fix.
24947         (how-many): Add INTERACTIVE arg.  Make RSTART and REND args
24948         interchangeable.  Do not take active region into account when
24949         called from Lisp, unless INTERACTIVE arg is non-nil.  Do not print
24950         message in echo area when called from Lisp, unless INTERACTIVE arg
24951         is non-nil.  Avoid saying "1 occurrences".  Do not use markers.
24952         Return the number of matches.  Doc fix.
24953         (occur): Doc fix.
24954         (perform-replace): Make comment follow double space convention for
24955         the sake of `outline-minor-mode'.
24957         * faces.el (facep): Doc fix.
24959 2005-06-25  Richard M. Stallman  <rms@gnu.org>
24961         * facemenu.el (facemenu-enable-faces-p): New function.
24962         (facemenu-background-menu, facemenu-foreground-menu)
24963         (facemenu-face-menu): Add menu-enable property.
24965         * jka-compr.el (jka-compr-insert-file-contents):
24966         Special handling if cannot find the uncompression program.
24968         * cus-face.el (custom-face-attributes): Add autoload.
24970         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
24971         Bind comment-indent-function locally.
24973         * window.el (save-selected-window): Use save-current-buffer.
24975         * subr.el (with-selected-window): Use save-current-buffer.
24977         * progmodes/gud.el (gud-filter): Simplify using with-selected-window
24978         and with-current-buffer.
24980 2005-06-24  Richard M. Stallman  <rms@gnu.org>
24982         * simple.el (line-move-1): Fix previous change.
24984 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
24986         * replace.el (occur-1): Set `buffer-read-only' and the
24987         buffer-modified flag before running `occur-hook' to protect
24988         against unintentional buffer switches that can lead to data loss.
24990 2005-06-24  Nick Roberts  <nickrob@snap.net.nz>
24992         * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
24993         (gud-gdb-marker-filter): Use font-lock-warning-face for any
24994         initial error.
24996         * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
24997         after fresh input.
24998         (gdb-var-create-handler): Put name of expression in quotes.
25000 2005-06-23  Luc Teirlinck  <teirllm@auburn.edu>
25002         * emacs-lisp/ring.el (ring-elements): Make it return a list of the
25003         elements of RING in order, and without bogus nil elements.
25005 2005-06-23  Richard M. Stallman  <rms@gnu.org>
25007         * simple.el (set-variable): Args renamed; doc fix.
25008         (line-move-1): When there are overlays around, use vertical-motion.
25010         * faces.el (escape-glyph): Use brown against light background.
25011         (nobreak-space): Rename from no-break-space.
25012         Fix previous change.
25014         * dired-aux.el (dired-do-copy): Fix arg prompt.
25016         * mail/sendmail.el (mail-setup-with-from): Fix custom type.
25018 2005-06-23  Glenn Morris  <gmorris@ast.cam.ac.uk>
25020         * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
25021         rather than "Distributor".
25023 2005-06-23  Lute Kamstra  <lute@gnu.org>
25025         * emacs-lisp/debug.el (debugger-special-form-p): New defun.
25026         (debug-on-entry): Use it.  New interactive declaration that uses
25027         function-called-at-point.
25029 2005-06-23  Kim F. Storm  <storm@cua.dk>
25031         * subr.el (save-match-data): Add comment about using evaporate arg
25032         to set-match-data.
25034 2005-06-22  Glenn Morris  <gmorris@ast.cam.ac.uk>
25036         * cus-edit.el (customize-face)
25037         (customize-face-other-window): Handle face aliases.
25039         * faces.el (face-documentation, set-face-attribute)
25040         (face-spec-set): Handle face aliases.
25042 2005-06-22  Juanma Barranquero  <lekktu@gmail.com>
25044         * help-mode.el (help-make-xrefs): If a symbol representing a face
25045         name is not followed by the word "face", it could still be a
25046         function or variable name, so don't bypass other checks.
25048 2005-06-22  Juri Linkov  <juri@jurta.org>
25050         * ps-print.el (ps-face-foreground-name, ps-face-background-name):
25051         Replace aliased functions with calls where second arg `inherit' is t.
25053 2005-06-22  Nick Roberts  <nickrob@snap.net.nz>
25055         * progmodes/gdb-ui.el (gdb-error): New variable.
25056         (gdb-error): New function.
25057         (gdb-annotation-rules): Act on error-begin and error annotations.
25058         (gdb-concat-output): Use font-lock-warning-face for errors.
25060 2005-06-22  Miles Bader  <miles@gnu.org>
25062         * bindings.el (propertized-buffer-identification): Use renamed
25063         `Buffer-menu-buffer' face.
25065         * faces.el (vertical-border): Rename from `vertical-divider'.
25066         (escape-glyph): Change dark-background color back to `cyan'.
25068 2005-06-21  Juri Linkov  <juri@jurta.org>
25070         * faces.el (face-user-default-spec): Try getting `customized-face'
25071         prior to `saved-face'.
25072         (frame-background-mode): Refill docstring.
25074         * emacs-lisp/lisp-mode.el (eval-defun-1):
25075         * emacs-lisp/edebug.el (edebug-eval-defun):
25076         Set `saved-face' temporarily to nil before calling form.
25077         Set `customized-face' to the new spec after that.
25079 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
25081         * subr.el (1value, lambda, key-substitution-in-progress):
25082         Doc fixes.
25084         * autoinsert.el (auto-insert-alist):
25085         * ses.el (ses-call-printer):
25086         * subr.el (noreturn):
25087         * emacs-lisp/lisp.el (check-parens):
25088         * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
25089         * net/browse-url.el (browse-url-mosaic):
25090         * progmodes/cc-defs.el (c-safe-scan-lists):
25091         * progmodes/ebnf-abn.el (ebnf-abn-lex):
25092         * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
25093         * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
25094         * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
25095         * progmodes/ebnf-iso.el (ebnf-iso-lex):
25096         * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
25098 2005-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
25100         * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
25102 2005-06-21  Glenn Morris  <gmorris@ast.cam.ac.uk>
25104         * calendar/appt.el (appt-make-list): Activate the package, if
25105         not already active (for backwards compatibility).
25107 2005-06-20  Kim F. Storm  <storm@cua.dk>
25109         * subr.el (add-to-ordered-list): Test membership with eq.  Simplify.
25111 2005-06-20  Miles Bader  <miles@gnu.org>
25113         * faces.el (vertical-divider): New face.
25115 2005-06-20  Juanma Barranquero  <lekktu@gmail.com>
25117         * simple.el (kill-whole-line): Doc fix.
25118         (next-error-buffer-p, next-error-find-buffer)
25119         (clone-indirect-buffer): Fix typos in docstrings.
25120         (comment-line-break-function): Doc fix: don't say variable
25121         is automatically buffer-local (it isn't).
25123 2005-06-19  Michael Albinus  <michael.albinus@gmx.de>
25125         * net/tramp-ftp.el (top):
25126         * net/tramp-smb.el (top):
25127         * net/tramp-util.el (top):
25128         * net/tramp-uu.el (top):
25129         * net/tramp-vc.el (top):
25130         * net/tramp.el (top): Revert copyright years back to original
25131         ones.  Tramp has a life outside GNU Emacs.
25133 2005-06-19  Nick Roberts  <nickrob@snap.net.nz>
25135         * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
25137 2005-06-18  Juri Linkov  <juri@jurta.org>
25139         * progmodes/grep.el (grep-regexp-alist): Use backreference at the
25140         end of first regexp to limit the match to the position between
25141         line number and source line with same separator character as used
25142         between file name and line number.  In the second regexp limit
25143         mouse-face area to file name and line number by adding new group
25144         for them and referring it in HYPERLINK arg.
25145         (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
25146         (grep-mode): Set font-lock-lines-before to 0 to not refontify the
25147         previous line where grep markers may be already removed.
25149 2005-06-18  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
25151         * progmodes/ps-mode.el: Update version and maintainer's email address.
25153 2005-06-18  Steve Youngs  <steve@xemacs.org>
25155         * net/browse-url.el (browse-url-browser-function)
25156         (browse-url-default-browser): Add firefox.
25157         (browse-url-firefox-program, browse-url-firefox-arguments)
25158         (browse-url-firefox-startup-arguments)
25159         (browse-url-firefox-new-window-is-tab): New defcustoms.
25160         (browse-url-firefox, browse-url-firefox-sentinel): New functions.
25162 2005-06-17  Richard M. Stallman  <rms@gnu.org>
25164         * startup.el (command-line): Warn if specified user name has
25165         no home directory.
25167         * term.el (term-get-old-input, term-input-filter, term-input-sender)
25168         (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
25170         * longlines.el (longlines-mode, longlines-show-hard-newlines):
25171         Doc fixes.
25173         * faces.el (underline): Try bold if terminal doesn't support underline.
25175         * mail/sendmail.el (mail-setup-with-from): New variable.
25176         (mail-insert-from-field): New function.
25177         (sendmail-send-it): Call it.
25178         (mail-setup): Optionally call it here.
25180         * term/linux.el: Call tty-no-underline.
25182 2005-06-17  Luc Teirlinck  <teirllm@auburn.edu>
25184         * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
25186 2005-06-17  Miles Bader  <miles@gnu.org>
25188         * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
25189         (ediff-current-diff-C, ediff-current-diff-Ancestor)
25190         (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
25191         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
25192         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
25193         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
25194         Remove "-face" suffix from face names.
25195         (ediff-current-diff-face-A, ediff-current-diff-face-B)
25196         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
25197         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
25198         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
25199         (ediff-even-diff-face-A, ediff-even-diff-face-B)
25200         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
25201         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
25202         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
25203         New backward-compatibility aliases for renamed faces.
25204         (ediff-current-diff-face-A, ediff-current-diff-face-B)
25205         (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
25206         (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
25207         (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
25208         (ediff-even-diff-face-A, ediff-even-diff-face-B)
25209         (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
25210         (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
25211         (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
25212         Use renamed ediff faces.
25214         * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
25215         Remove "-face" suffix from face names.
25216         (eshell-test-ok-face, eshell-test-failed-face):
25217         New backward-compatibility aliases for renamed faces.
25218         (eshell-run-test): Use renamed eshell-test faces.
25220         * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
25221         face name.
25222         (eshell-prompt-face): New backward-compatibility alias for renamed
25223         face.
25224         (eshell-emit-prompt): Use renamed eshell-prompt face.
25226         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
25227         (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
25228         (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
25229         (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
25230         Remove "-face" suffix from face names.
25231         (eshell-ls-directory-face, eshell-ls-symlink-face)
25232         (eshell-ls-executable-face, eshell-ls-readonly-face)
25233         (eshell-ls-unreadable-face, eshell-ls-special-face)
25234         (eshell-ls-missing-face, eshell-ls-archive-face)
25235         (eshell-ls-backup-face, eshell-ls-product-face)
25236         (eshell-ls-clutter-face):
25237         New backward-compatibility aliases for renamed faces.
25238         (eshell-ls-decorated-name): Use renamed eshell-ls faces.
25240         * progmodes/cc-fonts.el (c-nonbreakable-space-face):
25241         Remove "-face" suffix from face name.
25242         (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
25243         instead of literal face.
25245 2005-06-17  Juanma Barranquero  <lekktu@gmail.com>
25247         * emacs-lisp/warnings.el (display-warning, lwarn)
25248         (warning-minimum-log-level): Doc fixes.
25249         (warning-minimum-level, warning-minimum-log-level):
25250         Add :debug to :type choices.
25252         * progmodes/ada-mode.el (ada-format-paramlist)
25253         (ada-get-indent-case, ada-check-matching-start)
25254         (ada-check-defun-name, ada-goto-matching-decl-start)
25255         (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
25256         (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
25257         (ada-make-subprogram-body): Follow error conventions.
25258         (ada-case-exception-file, ada-indent-comment-as-code)
25259         (ada-indent-handle-comment-special, ada-indent-renames)
25260         (ada-indent-return, ada-search-directories-internal)
25261         (ada-tab-policy, ada-case-exception-substring)
25262         (ada-other-file-alist, ada-matching-start-re)
25263         (ada-matching-decl-start-re, ada-contextual-menu-last-point)
25264         (ada-imenu-generic-expression, ada-compile-goto-error)
25265         (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
25266         (ada-popup-menu, ada-add-extensions, ada-mode)
25267         (ada-region-selected, ada-create-case-exception)
25268         (ada-create-case-exception-substring, ada-after-keyword-p)
25269         (ada-activate-keys-for-case, ada-adjust-case-region)
25270         (ada-adjust-case-buffer, ada-format-paramlist)
25271         (ada-scan-paramlist, ada-insert-paramlist)
25272         (ada-indent-newline-indent)
25273         (ada-indent-newline-indent-conditional)
25274         (ada-justified-indent-current, ada-goto-previous-word)
25275         (ada-indent-current, ada-get-indent-open-paren)
25276         (ada-get-indent-paramlist, ada-get-indent-end)
25277         (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
25278         (ada-get-indent-block-start, ada-get-indent-subprog)
25279         (ada-get-indent-noindent, ada-get-indent-label)
25280         (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
25281         (ada-search-prev-end-stmt, ada-goto-next-non-ws)
25282         (ada-goto-stmt-end, ada-goto-next-word)
25283         (ada-check-matching-start, ada-check-defun-name)
25284         (ada-goto-matching-decl-start, ada-goto-matching-start)
25285         (ada-goto-matching-end, ada-search-ignore-string-comment)
25286         (ada-in-decl-p, ada-looking-at-semi-or)
25287         (ada-looking-at-semi-private, ada-in-paramlist-p)
25288         (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
25289         (ada-untab-hard, ada-move-to-start, ada-move-to-end)
25290         (ada-next-procedure, ada-previous-procedure, ada-next-package)
25291         (ada-previous-package, ada-create-menu)
25292         (ada-fill-comment-paragraph-justify)
25293         (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
25294         (ada-other-file-name, ada-last-which-function-line)
25295         (ada-last-which-function-subprog, ada-which-function)
25296         (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
25297         (ada-gen-treat-proc, ada-check-emacs-version)
25298         (ada-continuation-indent, ada-align-region-separate):
25299         Fix typos in docstrings.
25300         (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
25302 2005-06-16  Lute Kamstra  <lute@gnu.org>
25304         * simple.el (fundamental-mode): Run after-change-major-mode-hook
25305         conditionally.
25307 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
25309         * comint.el (comint-replace-by-expanded-filename)
25310         (comint-prompt-regexp, comint-delimiter-argument-list)
25311         (comint-preinput-scroll-to-bottom):
25312         * info.el (Info-hide-cookies-node):
25313         * ls-lisp.el (ls-lisp-classify):
25314         * find-file.el (ff-search-directories, ff-special-constructs)
25315         (ff-find-other-file):
25316         * font-lock.el (font-lock-keywords):
25317         * shell.el (shell-prompt-pattern)
25318         (shell-dynamic-complete-functions, shell-mode)
25319         (shell-delimiter-argument-list):
25320         * term.el (term-replace-by-expanded-filename)
25321         (term-prompt-regexp, term-delimiter-argument-list):
25322         * woman.el (woman-ignore, woman0-if):
25323         * emacs-lisp/derived.el (derived-mode-init-mode-variables):
25324         * emacs-lisp/elint.el (elint-init-env):
25325         * emacs-lisp/regexp-opt.el (regexp-opt-depth):
25326         * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
25327         * language/ethio-util.el (ethio-tilde-escape)
25328         (ethio-use-three-dot-question):
25329         * net/zone-mode.el (zone-mode-load-time-setup):
25330         * progmodes/cc-align.el (c-lineup-argcont):
25331         * progmodes/cc-awk.el (c-awk-beginning-of-defun):
25332         * progmodes/cperl-mode.el (cperl-set-style-back):
25333         * progmodes/inf-lisp.el (inferior-lisp-prompt):
25334         * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
25335         Fix spellings in docstrings.
25337         * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
25338         * progmodes/modula2.el (m2-for): Fix spellings.
25340         * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
25342         * simple.el (undo-more): Don't use `format' on `error' arguments.
25343         Improve argument/docstring consistency.
25344         (pending-undo-list): Doc fix.
25346         * smerge-mode.el (smerge-ensure-match):
25347         * emulation/vip.el (vip-ex):
25348         * net/zone-mode.el (zone-mode-update-serial):
25349         * progmodes/idlwave.el (idlwave-complete):
25350         * progmodes/vhdl-mode.el (vhdl-visit-file)
25351         (vhdl-compose-wire-components):
25352         Don't use `format' on `error' arguments.
25354         * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
25355         (tooltip-use-echo-area, tooltip-process-prompt-regexp)
25356         (tooltip-help-tips): Fix typos in docstrings.
25358 2005-06-16  David Ponce  <david@dponce.com>
25360         * tree-widget.el (tree-widget-value-create): Simplify last change.
25362 2005-06-15  Matt Hodges  <MPHodges@member.fsf.org>
25364         * ido.el (ido-incomplete-regexp): New variable.
25365         (ido-set-matches-1): Handle invalid-regexp error and set
25366         ido-incomplete-regexp.
25367         (ido-incomplete-regexp): New face.
25368         (ido-completions): Use it.
25369         (ido-complete, ido-exit-minibuffer, ido-completions):
25370         Handle incomplete regexps.
25371         (ido-completions): Add check for complete match when entering a regexp.
25373 2005-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25375         * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
25377 2005-06-15  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
25379         * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
25380         by field delimiters.
25382 2005-06-15  David Ponce  <david@dponce.com>
25384         * tree-widget.el: eval-and-compile inlined functions so they will
25385         be available at run-time too.
25386         (tree-widget-super-format-handler)
25387         (tree-widget-format-handler): Remove.
25388         (tree-widget-value-create): Handle the :indent property.
25390 2005-06-15  Miles Bader  <miles@gnu.org>
25392         * progmodes/which-func.el (which-func): Only inherit
25393         `font-lock-function-name-face' when that makes sense against the
25394         default mode-line face, otherwise set the face color explicitly.
25396         * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
25397         faces instead of (non-existent) variables.
25399 2005-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
25401         * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
25402         (iswitchb-get-matched-buffers): Likewise.  Simplify.
25404 2005-06-14  Miles Bader  <miles@gnu.org>
25406         * progmodes/ld-script.el (ld-script-location-counter):
25407         Remove "-face" suffix from face name.
25408         (ld-script-location-counter-face):
25409         New backward-compatibility alias for renamed face.
25410         (ld-script-location-counter-face): Use renamed face.
25412         * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
25413         (cperl-hash): Remove "-face" suffix from face names.
25414         (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
25415         New backward-compatibility aliases for renamed faces.
25416         (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
25417         (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
25419         * progmodes/which-func.el (which-func): Remove "-face" suffix from face
25420         name.
25421         (which-func-face): New backward-compatibility alias for renamed face.
25422         (which-func-format): Use renamed which-func face.
25424         * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
25425         (vhdl-function, vhdl-directive, vhdl-reserved-word)
25426         (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
25427         names.
25428         (vhdl-speedbar-entity, vhdl-speedbar-architecture)
25429         (vhdl-speedbar-configuration, vhdl-speedbar-package)
25430         (vhdl-speedbar-library, vhdl-speedbar-instantiation)
25431         (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
25432         (vhdl-speedbar-architecture-selected)
25433         (vhdl-speedbar-configuration-selected)
25434         (vhdl-speedbar-package-selected)
25435         (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
25436         names.
25437         (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
25438         Use renamed faces.
25439         (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
25440         (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
25441         (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
25442         Use renamed faces.
25443         (syntax-alist): Don't use "font-lock-" or "-face" in generated face
25444         names.
25445         (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
25446         (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
25447         (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
25448         (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
25449         (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
25450         (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
25452         * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
25453         face name.
25454         (sh-heredoc-face): New backward-compatibility alias for renamed face.
25455         (sh-heredoc-face): Use renamed sh-heredoc face.
25457         * progmodes/idlw-help.el (idlwave-help-link):
25458         Remove "-face" suffix from face name.
25459         (idlwave-help-link-face):
25460         New backward-compatibility alias for renamed face.
25461         (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
25463         * progmodes/idlw-shell.el (idlwave-shell-bp-face)
25464         (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
25465         (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
25466         New backward-compatibility aliases for renamed faces.
25467         (idlwave-shell-disabled-breakpoint-face)
25468         (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
25470         * progmodes/flymake.el (flymake-errline, flymake-warnline):
25471         Remove "-face" suffix from face names.
25472         (flymake-errline-face, flymake-warnline-face):
25473         New backward-compatibility aliases for renamed faces.
25474         (flymake-highlight-line): Use renamed flymake faces.
25476         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
25477         (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
25478         (ebrowse-member-class, ebrowse-progress):
25479         Remove "-face" suffix from face names.
25480         (ebrowse-tree-mark-face, ebrowse-root-class-face)
25481         (ebrowse-file-name-face, ebrowse-default-face)
25482         (ebrowse-member-attribute-face, ebrowse-member-class-face)
25483         (ebrowse-progress-face):
25484         New backward-compatibility aliases for renamed faces.
25485         (ebrowse-show-progress, ebrowse-show-file-name-at-point)
25486         (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
25487         (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
25488         (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
25490         * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
25491         antlr-syntax)
25492         (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
25493         (antlr-literal): Remove "-face" suffix and "font-lock-" from face
25494         names.
25495         (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
25496         (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
25497         (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
25498         (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
25499         backward-compatibility aliases for renamed faces.
25500         (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
25501         (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
25502         (antlr-tokenref-face, antlr-literal-face): Variables renamed to
25503         remove "font-lock-".  Use renamed antlr-mode faces.
25504         (antlr-font-lock-additional-keywords): Use renamed faces.  Replace
25505         literal face-names with face variable references.
25507         * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
25508         face name.
25509         (Buffer-menu-buffer-face): New backward-compatibility alias for
25510         renamed face.
25511         (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
25513 2005-06-15  Daniel Pfeiffer  <occitan@esperanto.org>
25515         * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
25516         Eliminate "-face" suffix.
25517         (makefile-targets): Inherit from font-lock-function-name-face and
25518         eliminate "-face" suffix.
25519         (makefile-shell): Remove attributes and eliminate "-face" suffix.
25520         (makefile-*-font-lock-keywords): Append makefile-targets in rule
25521         actions, instead of prepending, to make it less visible.
25522         (makefile-previous-dependency, makefile-match-dependency):
25523         Don't match a target on a continuation line.
25525         * files.el (auto-mode-alist): Put Makefile in gmake mode.
25527 2005-06-15  Nick Roberts  <nickrob@snap.net.nz>
25529         * progmodes/gdb-ui.el (menu): Re-order menu items.
25530         (gdb-tooltip-print): Respect tooltip-use-echo-area.
25532         * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
25533         Define in tooltip.el.
25534         (gud-tooltip-process-output): Respect tooltip-use-echo-area.
25535         (gud-tooltip-tips): Respect tooltip-use-echo-area and
25536         gud-tooltip-echo-area.
25538         * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
25539         backward compatibility and make obsolete.
25540         (tooltip-help-tips): Use tooltip-use-echo-area.
25541         (tooltip-show-help-function): Rename to...
25542         (tooltip-show-help): ...this, because it is a function.
25543         (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
25545 2005-06-14  Luc Teirlinck  <teirllm@auburn.edu>
25547         * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
25548         (edebug-print-length, edebug-print-level, edebug-print-circle)
25549         (edebug-modify-breakpoint, edebug-eval-last-sexp)
25550         (edebug-eval-print-last-sexp): Doc fixes.
25552 2005-06-14  Kim F. Storm  <storm@cua.dk>
25554         * ido.el (ido-mode): Make a new keymap every time we enable ido,
25555         as the coverage buffer/file/both may change.
25557 2005-06-14  Lute Kamstra  <lute@gnu.org>
25559         * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
25560         and run-mode-hooks.  Simplify.
25562         * mail/rmailedit.el (rmail-edit-mode):
25563         * progmodes/octave-inf.el (inferior-octave-mode):
25564         * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
25566         * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
25567         and run-mode-hooks.
25568         (recentf-edit-list, recentf-open-files): Don't call
25569         kill-all-local-variables directly.
25571         * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
25573 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
25575         * emacs-lisp/byte-run.el (make-obsolete)
25576         (define-obsolete-function-alias): Rename arguments FUNCTION and
25577         NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
25578         (make-obsolete-variable, define-obsolete-variable-alias):
25579         Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
25580         respectively.
25582         * isearchb.el (isearchb-activate):
25583         * pcvs.el (cvs-mode):
25584         * ses.el (ses-load):
25585         * vc-arch.el (vc-arch-checkin, vc-arch-diff):
25586         * net/tramp.el (tramp-find-file-exists-command)
25587         (tramp-find-shell):
25588         * progmodes/ada-mode.el (ada-create-case-exception)
25589         (ada-create-case-exception-substring, ada-make-subprogram-body):
25590         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
25591         * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
25592         * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
25593         * textmodes/org.el (org-promote, org-evaluate-time-range)
25594         (org-agenda-next-date-line, org-agenda-previous-date-line)
25595         (org-agenda-error, org-open-at-point, org-table-move-row)
25596         (org-format-table-table-html-using-table-generate-source)
25597         (org-shiftcursor-error, org-ctrl-c-ctrl-c):
25598         * textmodes/reftex.el (reftex-access-scan-info):
25599         * textmodes/reftex-toc.el (reftex-toc-dframe-p)
25600         (reftex-toc-promote-prepare): Follow error conventions.
25602         * diff-mode.el (diff-mode): Fix typo in docstring.
25604         * forms.el (forms--intuit-from-file): Fix reference to
25605         `forms-number-of-fields' in error message.
25606         (forms-print): Fix quoting in error message.
25608         * forms.el (forms-mode):
25609         * emulation/vi.el (vi-goto-insert-state):
25610         * progmodes/flymake.el (flymake-new-err-info)
25611         (flymake-start-syntax-check-for-current-buffer)
25612         (flymake-simple-cleanup):
25613         * eshell/esh-var.el (eshell/export):
25614         * progmodes/gud.el (xdb):
25615         * textmodes/flyspell.el (flyspell-incorrect-hook)
25616         (flyspell-maybe-correct-transposition)
25617         (flyspell-maybe-correct-doubling): Fix quoting in docstring.
25619 2005-06-13  Luc Teirlinck  <teirllm@auburn.edu>
25621         * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
25622         minibuffer prompt.
25624 2005-06-13  Kim F. Storm  <storm@cua.dk>
25626         * subr.el (add-to-ordered-list): New defun.
25628         * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
25629         add cua--keymap-alist to emulation-mode-map-alists.
25631 2005-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
25633         * subr.el (complete-in-turn): New macro.
25634         (dynamic-completion-table, lazy-completion-table): Add debug info.
25636         * faces.el (read-face-name): Use complete-in-turn complete non-aliases
25637         in preference to face aliases.
25639         * textmodes/fill.el (fill-match-adaptive-prefix): New function.
25640         (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
25641         Remove unused vars `start' and `firstline'.
25642         (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
25643         (justify-current-line, fill-individual-paragraphs): Remove unused vars.
25645 2005-06-13  Eli Zaretskii  <eliz@gnu.org>
25647         * cus-start.el (all): Don't complain about missing GTK-related
25648         variables, unless either `gtk' is boundp or this isn't a
25649         `windows-nt' build.
25651 2005-06-13  Lute Kamstra  <lute@gnu.org>
25653         * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
25654         run-mode-hooks.
25656         * ediff-mult.el (ediff-meta-mode):
25657         * ediff-util.el (ediff-mode): Use run-mode-hooks.
25659         * ledit.el (ledit-mode): Use delay-mode-hooks.
25661         * woman.el (woman-mode-line-format): Delete constant.
25662         (woman-mode-map): Initialize it properly.
25663         (woman-mode): Set mode-class property to special.
25664         Use delay-mode-hooks and run-mode-hooks.  Use the right keymap.
25665         Set major-mode and mode-name.  Don't set mode-line-format directly.
25666         (Man-getpage-in-background): Don't reference woman-mode-line-format.
25668         * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
25669         string argument obsolete.
25671 2005-06-13  Carsten Dominik  <dominik@science.uva.nl>
25673         * textmodes/org.el (org-CUA-compatible): New option.
25674         (org-disputed-keys): New variable.
25675         (org-key): New function.
25676         (orgtbl-make-binding): Add docstring to the created function.
25677         (org-mode): Set paragraph start/separate regexps.
25678         (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
25679         (org-archive-location, org-archive-mark-done)
25680         (org-archive-stamp-time): New options.
25681         (org-archive-subtree): New command.
25682         (org-fill-paragraph): New function.
25683         (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
25684         (org-fake-empty-table-line): Function removed.
25685         (org-format-org-table-html): Do not create empty table lines at
25686         separator lines.  Improved table header treatment.
25687         (org-link-format): New option.
25688         (org-make-link): New function.
25689         (org-insert-link, org-store-link): Use org-make-link.
25690         (org-open-file): Quote file name for shell command, to allow
25691         spaces in file names.
25692         (org-link-regexp): Fix bug with mailto link.
25693         (org-link-maybe-angles-regexp, org-protected-link-regexp):
25694         New constants.
25695         (org-export-as-html): Deal with the optional angles around a link.
25696         Better treatment of file: links.
25697         (org-open-at-point): Replace @{ and @} with < and >.
25698         (org-run-mode-hooks): Function removed.
25699         (org-agenda-mode): No longer use `org-run-mode-hooks'.
25701 2005-06-13  Nick Roberts  <nickrob@snap.net.nz>
25703         * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
25704         MI command -data-list-register-values.
25705         (gdb-post-prompt): Indent properly.
25707 2005-06-13  Juanma Barranquero  <lekktu@gmail.com>
25709         * hilit-chg.el (highlight-changes-colors): Rename from
25710         `highlight-changes-colours'.
25711         (highlight-changes-colours): Keep as obsolete alias.
25712         (highlight-changes-face-list): Doc fix.
25713         (hilit-chg-make-list): Use `highlight-changes-colors'.
25715 2005-06-12  Mark A. Hershberger  <mah@everybody.org>
25717         * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
25718         defun-prompt-regexp.
25720 2005-06-12  Eli Zaretskii  <eliz@gnu.org>
25722         * loadup.el: Don't say we are dumping under 2 names on windows-nt
25723         and cygwin.
25725         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
25726         Don't use an old loaddefs.el, as in Makefile.in.
25728 2005-06-12  Lute Kamstra  <lute@gnu.org>
25730         * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
25732         * man.el (Man-mode-map): Initialize it properly.
25733         (Man-mode): Set mode-class property to special.
25735         * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
25737 2005-06-11  Luc Teirlinck  <teirllm@auburn.edu>
25739         * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
25740         A newline is needed in the docstring there.
25742         * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
25743         Doc fixes.
25745 2005-06-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
25747         * printing.el: Doc fix.  The menubar is no more changed when printing
25748         is loaded, it only changes when pr-menu-bind or pr-update-menus is
25749         called.  Now, the menubar changing will work in Emacs 20, 21 and 22.
25750         (pr-version): New version number (6.8.4).
25751         (pr-menu-bind): New command.
25752         (pr-update-menus): Docstring and code fix.
25753         (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
25754         Docstring fix.
25755         (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
25756         (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
25758 2005-06-11  Thien-Thi Nguyen  <ttn@gnu.org>
25760         * emacs-lisp/ewoc.el: Doc fixes for public funcs:
25761         "Returns" to "return", document useful return values, etc.
25763 2005-06-11  Alan Mackenzie  <acm@muc.de>
25765         * fill.el (fill-context-prefix): Try `adaptive-fill-function'
25766         BEFORE `adaptive-fill-regexp' when determining a fill prefix.
25767         (adaptive-file-function): Minor amendment to doc-string.
25769 2005-06-11  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
25771         * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
25772         (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
25773         Fix :type--it is `integer', not `string'.
25775         * faces.el (modeline-highlight): Rename from (the erroneous)
25776         `modeline-higilight'.
25778 2005-06-11  Lute Kamstra  <lute@gnu.org>
25780         * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
25781         lisp-interaction-mode-map but make it the parent.
25782         (edebug-eval-mode): Use define-derived-mode.
25784 2005-06-11  Andreas Schwab  <schwab@suse.de>
25786         * bindings.el: Add binding of `ESC functionkey' for every
25787         `M-functionkey'.
25788         * hexl.el (hexl-mode-map): Likewise.
25790 2005-06-10  Michael Hotchin  <michael@hotchin.net>  (tiny change)
25792         * progmodes/compile.el (compilation-error-regexp-alist-alist)
25793         [msft]: update regexp for newer msft compilers.
25795 2005-06-10  Mark A. Hershberger  <mah@everybody.org>
25797         * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
25798         ATTLIST portions of included DTDs.
25799         (xml-parse-dtd): Eliminate use of inefficient match-data.
25801 2005-06-10  Miles Bader  <miles@gnu.org>
25803         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
25804         (mpuz-text): Remove "-face" suffix from face names.
25805         (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
25806         (mpuz-text-face): New backward-compatibility aliases for renamed faces.
25807         (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
25809         * play/gomoku.el (gomoku-O, gomoku-X):
25810         Remove "-face" suffix from face names.
25811         (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
25812         New backward-compatibility aliases for renamed faces.
25813         (gomoku-font-lock-keywords): Use renamed gomoku faces.
25815 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
25817         * thumbs.el: Fixes for changes of 2005-06-09.
25818         (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
25819         as a directory.
25820         (thumbs-thumbname): Remove directory separator from format string;
25821         `thumbs-thumbsdir' now returns a valid directory name.
25822         (thumbs-temp-dir): New defsubst.
25823         (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
25824         Use it.
25826         * cus-edit.el (minibuffer):
25827         * files.el (make-backup-file-name-function):
25828         * filesets.el (filesets-external-viewers):
25829         * hilit-chg.el (highlight-changes-colours)
25830         (highlight-changes-face-list, highlight-changes-rotate-faces):
25831         * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
25832         * kmacro.el (kmacro-call-macro):
25833         * log-edit.el (log-edit-changelog-full-paragraphs):
25834         * mouse.el (mouse-1-click-follows-link):
25835         * skeleton.el (skeleton-autowrap):
25836         * subr.el (insert-for-yank-1):
25837         * tempo.el (tempo-insert-region):
25838         * terminal.el (terminal-emulator):
25839         * time.el (display-time-mail-face):
25840         * vc.el (vc-annotate):
25841         * vcursor.el (vcursor-copy-line):
25842         * woman.el (woman-bold-headings, woman-ignore)
25843         (woman-default-faces, woman-monochrome-faces):
25844         * calendar/todo-mode.el (todo-insert-threshold):
25845         * emulation/pc-select.el (pc-select-selection-keys-only)
25846         (pc-selection-mode):
25847         * emulation/vip.el (vip-find-char-forward):
25848         * emulation/viper-cmd.el (viper-find-char-forward):
25849         * international/mule-cmds.el
25850         (select-safe-coding-system-accept-default-p)
25851         (input-method-exit-on-invalid-key):
25852         * international/mule-diag.el (describe-coding-system):
25853         * international/ucs-tables.el (unify-8859-on-encoding-mode):
25854         * net/browse-url.el (browse-url-xterm-program):
25855         * obsolete/lazy-lock.el (lazy-lock-mode):
25856         * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
25857         (cperl-mode):
25858         * progmodes/cpp.el (cpp-face-light-name-list)
25859         (cpp-face-dark-name-list):
25860         * progmodes/delphi.el (delphi-newline-always-indents):
25861         Fix spellings in docstrings.
25863         * ido.el (ido-mode, ido-file-extensions-order)
25864         (ido-default-file-method, ido-default-buffer-method)
25865         (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
25866         (ido-decorations, ido-read-file-name-as-directory-commands)
25867         (ido-read-file-name-non-ido, ido-work-directory-list)
25868         (ido-ignore-item-temp-list, ido-current-directory)
25869         (ido-magic-forward-char, ido-enter-find-file)
25870         (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
25871         (ido-find-file, ido-read-buffer): Fix typos in docstrings.
25873 2005-06-10  Lute Kamstra  <lute@gnu.org>
25875         * play/dunnet.el (dun-mode): Use define-derived-mode.
25876         (dungeon-mode-map): Rename to dun-mode-map.  Keep old name as an
25877         obsolete alias.
25879         * play/doctor.el (doctor-mode-map): Remove defvar.
25880         (doctor-mode): Use define-derived-mode.
25882         * mail/mspools.el (mspools-mode):
25883         * net/eudc-hotlist.el (eudc-hotlist-mode):
25884         * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
25886 2005-06-10  Miles Bader  <miles@gnu.org>
25888         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
25889         Remove "-face" suffix from face names.
25890         (flyspell-incorrect-face, flyspell-duplicate-face):
25891         New backward-compatibility aliases for renamed faces.
25892         (flyspell-mode-on, make-flyspell-overlay)
25893         (flyspell-highlight-incorrect-region)
25894         (flyspell-highlight-duplicate-region)
25895         (flyspell-display-next-corrections)
25896         (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
25898         * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
25899         from face name.
25900         (texinfo-heading-face): New backward-compatibility alias for
25901         renamed face.
25902         (texinfo-heading-face): Use renamed texinfo-heading face.
25904         * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
25905         suffix from face names.
25906         (tex-math-face, tex-verbatim-face):
25907         New backward-compatibility aliases for renamed faces.
25908         (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
25909         (tex-insert-quote): Use `tex-verbatim-face' variable instead of
25910         literal face name.
25912         * textmodes/table.el (table-cell): Remove "-face" suffix from face
25913         name.
25914         (table-cell-face): New backward-compatibility alias for renamed face.
25915         (table--put-cell-face-property, table--update-cell-face):
25916         Use renamed table-cell face.
25918         * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
25919         from face name.
25920         (sgml-namespace-face): New backward-compatibility alias for
25921         renamed face.
25922         (sgml-namespace-face): Use renamed sgml-namespace face.
25924         * textmodes/org.el (org-level-1, org-level-2, org-level-3)
25925         (org-level-4, org-level-5, org-level-6, org-level-7)
25926         (org-level-8, org-warning, org-headline-done)
25927         (org-deadline-announce, org-scheduled-today)
25928         (org-scheduled-previously, org-link, org-done, org-table)
25929         (org-time-grid): Remove "-face" suffix from face names.
25930         (org-level-1-face, org-level-2-face, org-level-3-face)
25931         (org-level-4-face, org-level-5-face, org-level-6-face)
25932         (org-level-7-face, org-level-8-face, org-warning-face)
25933         (org-headline-done-face, org-deadline-announce-face)
25934         (org-scheduled-today-face, org-scheduled-previously-face)
25935         (org-link-face, org-done-face, org-table-face)
25936         (org-time-grid-face):
25937         New backward-compatibility aliases for renamed faces.
25938         (org-level-faces, org-set-font-lock-defaults, org-timeline)
25939         (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
25940         (org-agenda-get-timestamps, org-agenda-get-scheduled)
25941         (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
25943         * emulation/viper-init.el (viper-search, viper-replace-overlay)
25944         (viper-minibuffer-emacs, viper-minibuffer-insert)
25945         (viper-minibuffer-vi): Remove "-face" suffix from face names.
25946         (viper-search-face, viper-replace-overlay-face)
25947         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
25948         (viper-minibuffer-vi-face):
25949         New backward-compatibility aliases for renamed faces.
25950         (viper-search-face, viper-replace-overlay-face)
25951         (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
25952         (viper-minibuffer-vi-face): Use renamed viper faces.
25954         * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
25955         Remove "-face" suffix from face names.
25956         (testcover-nohits-face, testcover-1value-face):
25957         New backward-compatibility aliases for renamed faces.
25958         (testcover-mark): Use renamed testcover faces.
25960         * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
25961         face name.
25962         (diary-button-face): New backward-compatibility alias for renamed face.
25963         (diary-entry): Use renamed diary-button face.
25965         * calendar/calendar.el (diary, calendar-today, holiday)
25966         (mark-visible-calendar-date): Remove "-face" suffix from face names.
25967         (diary-face, calendar-today-face, holiday-face):
25968         New backward-compatibility aliases for renamed faces.
25969         (eval-after-load "facemenu", diary-entry-marker)
25970         (calendar-today-marker, calendar-holiday-marker, diary-face):
25971         Use renamed calendar faces.
25973         * compare-w.el (compare-windows): Remove "-face" suffix from face name.
25974         (compare-windows-face): New backward-compatibility alias for
25975         renamed face.
25976         (compare-windows-highlight): Use renamed compare-windows face.
25978         * strokes.el (strokes-char): Remove "-face" suffix from face name.
25979         (strokes-char-face): New backward-compatibility alias for renamed face.
25980         (strokes-encode-buffer): Use renamed strokes-char face.
25982         * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
25983         (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
25984         Remove "-face" suffix from face names.
25985         (cvs-header-face, cvs-filename-face, cvs-unknown-face)
25986         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
25987         (cvs-msg-face): New backward-compatibility aliases for renamed faces.
25988         (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
25989         Use renamed pcvs faces.
25990         * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
25991         * pcvs-defs.el (cvs-mode-map): Likewise.
25992         * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
25994         * info.el (info-title-1, info-title-2, info-title-3)
25995         (info-title-4): Remove "-face" suffix from and downcase face names.
25996         (Info-title-1-face, Info-title-2-face, Info-title-3-face)
25997         (Info-title-4-face):
25998         New backward-compatibility aliases for renamed faces.
25999         (Info-fontify-node): Use renamed info faces.
26001         * hilit-chg.el (highlight-changes, highlight-changes-delete):
26002         Remove "-face" suffix from face names.
26003         (highlight-changes-face, highlight-changes-delete-face):
26004         New backward-compatibility aliases for renamed faces.
26005         (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
26006         (hilit-chg-make-list): Use renamed highlight-changes faces.
26008         * generic-x.el (show-tabs-tab, show-tabs-space):
26009         Remove "-face" suffix from face names.
26010         (show-tabs-tab-face, show-tabs-space-face):
26011         New backward-compatibility aliases for renamed faces.
26012         (show-tabs-generic-mode-font-lock-defaults-1)
26013         (show-tabs-generic-mode-font-lock-defaults-2):
26014         Use renamed show-tabs faces.
26016         * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
26017         (smerge-markers): Remove "-face" suffix from face names.
26018         (smerge-mine-face, smerge-other-face, smerge-base-face)
26019         (smerge-markers-face):
26020         New backward-compatibility aliases for renamed faces.
26021         (smerge-mine-face, smerge-other-face, smerge-base-face)
26022         (smerge-markers-face): Use renamed smerge faces.
26024         * log-view.el (log-view-file, log-view-message): Remove "-face"
26025         suffix from face names.
26026         (log-view-file-face, log-view-message-face):
26027         New backward-compatibility aliases for renamed faces.
26028         (log-view-file-face, log-view-message-face): Use renamed log-view
26029         faces.
26031         * paren.el (show-paren-match, show-paren-mismatch):
26032         Remove "-face" suffix from face names.
26033         (show-paren-match-face, show-paren-mismatch-face):
26034         New backward-compatibility aliases for renamed faces.
26035         (show-paren-function): Use renamed show-paren faces.
26037         * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
26038         (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): Remove "-face"
26042         suffix from face names.
26043         (ruler-mode-default-face, ruler-mode-pad-face)
26044         (ruler-mode-margins-face, ruler-mode-fringes-face)
26045         (ruler-mode-column-number-face, ruler-mode-fill-column-face)
26046         (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
26047         (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
26048         New backward-compatibility aliases for renamed faces.
26049         (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
26050         (ruler-mode-column-number, ruler-mode-fill-column)
26051         (ruler-mode-comment-column, ruler-mode-goal-column)
26052         (ruler-mode-tab-stop, ruler-mode-current-column)
26053         (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
26054         faces.
26056         * whitespace.el (whitespace-highlight): Remove "-face" suffix from
26057         face name.
26058         (whitespace-highlight-the-space): Use renamed face.
26059         (whitespace-highlight-face): New backward-compatibility alias for
26060         renamed face.
26062         * woman.el (woman-italic, woman-bold, woman-unknown)
26063         (woman-addition, woman-symbol-face):
26064         Remove "-face" suffix from face names.
26065         (woman-italic-face, woman-bold-face, woman-unknown-face)
26066         (woman-addition-face):
26067         New backward-compatibility aliases for renamed faces.
26068         (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
26069         (woman-decode-region, woman-replace-match)
26070         (woman-display-extended-fonts, woman-special-characters)
26071         (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
26072         Use renamed woman faces.
26074         * longlines.el (longlines-visible-face): Face removed.
26076         * diff-mode.el (diff-header, diff-file-header, diff-index)
26077         (diff-hunk-header, diff-removed, diff-added, diff-changed)
26078         (diff-function, diff-context, diff-nonexistent): Remove "-face"
26079         suffix from face names.
26080         (diff-header-face, diff-file-header-face, diff-index-face)
26081         (diff-hunk-header-face, diff-removed-face, diff-added-face)
26082         (diff-changed-face, diff-function-face, diff-context-face)
26083         (diff-nonexistent-face): New backward-compatibility aliases for
26084         renamed faces.
26085         (diff-header-face, diff-file-header-face)
26086         (diff-index, diff-index-face, diff-hunk-header)
26087         (diff-hunk-header-face, diff-removed, diff-removed-face)
26088         (diff-added, diff-added-face, diff-changed-face, diff-function)
26089         (diff-function-face, diff-context-face, diff-nonexistent)
26090         (diff-nonexistent-face): Use renamed diff-mode faces.
26092         * progmodes/compile.el (compilation-warning-face)
26093         (compilation-info-face): Remove "-face" suffix from face names.
26094         (compilation-warning-face, compilation-info-face):
26095         New backward-compatibility aliases for renamed faces.
26096         (compilation-warning-face, compilation-info-face):
26097         Use renamed compilation faces.
26099         * add-log.el (change-log-date, change-log-name)
26100         (change-log-email, change-log-file, change-log-list)
26101         (change-log-conditionals, change-log-function)
26102         (change-log-acknowledgement): Remove "-face" suffix from face names.
26103         (change-log-date-face, change-log-name-face)
26104         (change-log-email-face, change-log-file-face)
26105         (change-log-list-face, change-log-conditionals-face)
26106         (change-log-function-face, change-log-acknowledgement-face):
26107         New backward-compatibility aliases for renamed faces.
26108         (change-log-font-lock-keywords): Use renamed change-log faces.
26110         * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
26111         (custom-set, custom-changed, custom-saved, custom-button)
26112         (custom-button-pressed, custom-documentation, custom-state)
26113         (custom-comment, custom-comment-tag, custom-variable-tag)
26114         (custom-variable-button, custom-face-tag, custom-group-tag-1)
26115         (custom-group-tag): Remove "-face" suffix from face names.
26116         (custom-magic-alist, custom-magic-value-create)
26117         (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
26118         (custom-invalid-face, custom-rogue-face, custom-modified-face)
26119         (custom-set-face, custom-changed-face, custom-saved-face)
26120         (custom-button-face, custom-button-pressed-face)
26121         (custom-documentation-face, custom-state-face)
26122         (custom-comment-face, custom-comment-tag-face)
26123         (custom-variable-tag-face, custom-variable-button-face)
26124         (custom-face-tag-face, custom-group-tag-face-1)
26125         (custom-group-tag-face):
26126         New backward-compatibility aliases for renamed faces.
26128         * wid-edit.el (widget-documentation, widget-button)
26129         (widget-field, widget-single-line-field, widget-inactive)
26130         (widget-button-pressed): "-face" suffix removed from face names.
26131         (widget-documentation-face, widget-button-face)
26132         (widget-field-face, widget-single-line-field-face)
26133         (widget-inactive-face, widget-button-pressed-face):
26134         New backward-compatibility aliases for renamed faces.
26135         (widget-documentation-face, widget-button-face)
26136         (widget-button-pressed-face, widget-specify-field)
26137         (widget-specify-inactive): Use renamed widget faces.
26139 2005-06-10  Kenichi Handa  <handa@m17n.org>
26141         * term/x-win.el (x-clipboard-yank): Remove condition-case
26142         wrapping.
26144 2005-06-11  Kenichi Handa  <handa@m17n.org>
26146         * add-log.el (change-log-font-lock-keywords): Make the regexp for
26147         date lines stricter.
26149 2005-06-10  Zhang Wei  <id.brep@gmail.com>
26151         * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
26152         of x-get-selection.
26154 2005-06-10  Juanma Barranquero  <lekktu@gmail.com>
26156         * comint.el (comint-mode, comint-snapshot-last-prompt):
26157         * frame.el (frame-current-scroll-bars):
26158         * term.el (term-mode, term-check-proc, term-input-sender)
26159         (term-simple-send, term-extract-string, term-word)
26160         (term-match-partial-filename):
26161         * window.el (window-current-scroll-bars):
26162         * emulation/cua-base.el (cua-normal-cursor-color)
26163         (cua-read-only-cursor-color, cua-overwrite-cursor-color)
26164         (cua-global-mark-cursor-color):
26165         * mail/undigest.el (rmail-forward-separator-regex):
26166         Fix typos in docstrings.
26168         * comint.el (comint-check-proc, make-comint-in-buffer)
26169         (comint-source-default): Doc fixes.
26171         * term.el (term-send-string): Improve argument/docstring consistency.
26173 2005-06-09  Luc Teirlinck  <teirllm@auburn.edu>
26175         * comint.el (comint-send-input): Bind `inhibit-read-only' around
26176         call to `delete-region'.
26177         (comint-mode-hook): Do not enable Font Lock by default.
26179 2005-06-09  Lute Kamstra  <lute@gnu.org>
26181         * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
26182         could be void.
26184 2005-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
26186         * emacs-lisp/debug.el (debugger-will-be-back): New var.
26187         (debug): Use it.
26188         (debugger-step-through, debugger-continue, debugger-jump)
26189         (debugger-return-value): Set it when needed.
26190         (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
26191         Use inhibit-read-only.
26193 2005-06-09  Juanma Barranquero  <lekktu@gmail.com>
26195         * window.el (shrink-window-if-larger-than-buffer)
26196         (window-size-fixed): Fix typo in docstring.
26198         * thumbs.el: Don't set `auto-image-file-mode'.  Do not create the
26199         thumbnails directory on loading.
26200         (thumbs-conversion-program): Use `eq' to check the system type,
26201         not `equal'.
26202         (thumbs-temp-dir): Initialize to `temporary-file-directory',
26203         not "/tmp".  Fix docstring.
26204         (thumbs-thumbsdir): New function to return the thumbnails
26205         directory, creating it if needed.
26206         (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
26207         (thumbs-temp-file): Delete variable and make it into a function.
26208         (thumbs-resize-image, thumbs-modify-image): Use it.
26209         (thumbs-kill-buffer): Simplify.
26210         (thumbs-gensym): Defalias or duplicate CL `gensym'.
26211         (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
26212         docstrings.
26214 2005-06-09  Kim F. Storm  <storm@cua.dk>
26216         * subr.el (save-match-data): Add RESEAT arg `evaporate' to
26217         set-match-data to free markers in match-data.
26219         * replace.el (replace-match-data): Pass RESEAT arg `t' to
26220         match-data to unchain markers in match-data.
26222 2005-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
26224         * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
26225         the debugger immediately anyway.  Undo the 2005-06-06 change, rendered
26226         unnecessary now.
26228 2005-06-08  Richard M. Stallman  <rms@gnu.org>
26230         * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
26231         give the variable a doc string that doesn't say don't set it directly.
26233         * textmodes/ispell.el (ispell-check-version):
26234         Use match-string-no-properties.
26235         (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
26236         (ispell-buffer-local-words): Likewise.
26238         * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
26239         except on terminals with enough colors to really display it.
26240         (makefile-dependency-regex): Delete spurious `bb'.
26242         * faces.el (escape-glyph): Use blue once again in last case.
26243         (no-break-space): Redefine so that it isn't invisible on a tty.
26245 2005-06-08  Kim F. Storm  <storm@cua.dk>
26247         * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
26248         also when reading directory name.
26250 2005-06-08  Lute Kamstra  <lute@gnu.org>
26252         * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
26253         (flyspell-mode-line-string): Remove autoload cookie.
26254         (flyspell-mode): Remove defvar.
26256 2005-06-07  Lute Kamstra  <lute@gnu.org>
26258         * textmodes/org.el (org-run-mode-hooks): New function.
26259         (org-agenda-mode): Use it.
26261 2005-06-07  David McCabe  <davemccabe@gmail.com>  (tiny change)
26263         * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
26265 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
26267         * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
26269 2005-06-06  Luc Teirlinck  <teirllm@auburn.edu>
26271         * font-lock.el (font-lock-add-keywords): Doc fix.
26273 2005-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
26275         * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
26276         (tex-compile-default): In the absence of any history, use the order in
26277         tex-compile-alist to choose the preferred command.
26278         (tex-compile-commands): Reorder a bit.
26280         * textmodes/flyspell.el (flyspell-auto-correct-binding)
26281         (flyspell-incorrect-face, flyspell-duplicate-face):
26282         Use (X)Emacs-agnostic code.
26283         (flyspell-mode-map): Don't overwrite at each load.  Remove code
26284         redundant with the subsequent add-minor-mode.  Merge Emacs and
26285         XEmacs code.
26286         (flyspell-word): Minor simplification.
26287         (flyspell-math-tex-command-p): Quieten the byte-compiler.
26288         (flyspell-external-point-words): Remove unused vars `size' and `start'.
26289         (flyspell-do-correct): Rename from flyspell-xemacs-correct.
26290         Merge the corresponding Emacs code.
26291         (flyspell-correct-word, flyspell-xemacs-popup):
26292         Use flyspell-do-correct.
26294         * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
26295         a dedicated window.
26297         * international/latexenc.el (latexenc-find-file-coding-system):
26298         Undo part of last patch, to turn off a compiler warning.
26300 2005-06-06  Juri Linkov  <juri@jurta.org>
26302         * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
26303         Rename `tmm-inactive-face' to `tmm-inactive'.
26305 2005-06-06  Matt Hodges  <MPHodges@member.fsf.org>
26307         * iswitchb.el: Rename faces.
26309 2005-06-06  Kim F. Storm  <storm@cua.dk>
26311         * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
26312         (cua-global-mark): Remove -face suffix from face names.
26314         * emulation/cua-gmrk.el (cua--init-global-mark):
26315         Remove cua-global-mark face setup.
26317 2005-06-06  Richard M. Stallman  <rms@gnu.org>
26319         * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
26320         just like other allowed characters.
26321         (makefile-match-dependency): Exclude leading and training whitespace
26322         from the range of regexp subexp 1.
26323         (makefile-macroassign-regex): Don't try to match the body,
26324         just the name of the macro being defined.
26326         * info.el (Info-read-node-name-2): New function.
26327         (Info-read-node-name-1): Use that.
26328         Add a completion-base-size-function property.
26330         * simple.el (completion-setup-function): Look for
26331         completion-base-size-function property of minibuffer-completion-table.
26333         * files.el (locate-file-completion): Doc fix.
26335         * printing.el: Don't call pr-update-menus; user must do that.
26337         * emacs-lisp/debug.el (debugger-window): New variable.
26338         (debug): Use debugger-window if it is set and still alive.
26339         Record debugger-window for next entry.
26341         * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
26343 2005-06-06  Matthias F\e,Av\e(Brste  <slashdevslashnull@gmx.net>
26345         * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
26346         (hack-one-local-variable, hack-local-variables)
26347         (hack-local-variables-prop-line): Pass that arg.
26349 2005-06-06  Kim F. Storm  <storm@cua.dk>
26351         * ido.el (ido-first-match, ido-only-match, ido-subdir)
26352         (ido-indicator): Remove -face suffix from face names.
26354 2005-06-06  Juri Linkov  <juri@jurta.org>
26356         * font-lock.el (font-lock-regexp-backslash)
26357         (font-lock-regexp-backslash-construct): New faces.
26358         (lisp-font-lock-keywords-2): Use new faces.  Match `?:' only
26359         after `('.  Add `while-no-input' to control structures.
26361         * faces.el (no-break-space, shadow): New faces.
26362         (escape-glyph): Use less loud colors pink2 and red4.
26364         * diff-mode.el (diff-context-face)
26365         * dired.el (dired-ignored)
26366         * rfn-eshadow.el (file-name-shadow)
26367         * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
26369         * info.el (Info-title-1-face): Use green instead of yellow because
26370         bold yellow is not readable on light backgrounds.
26372         * progmodes/compile.el (compilation-start): Move `erase-buffer' up
26373         before selecting the desired mode to not spend time fontifying
26374         old contents.
26376 2005-06-06  Juanma Barranquero  <lekktu@gmail.com>
26378         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
26379         (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
26381         * ps-print.el (ps-default-fg, ps-default-bg):
26382         Fix typos in docstrings.
26384         * isearchb.el (isearchb): Don't pass a spurious second argument to
26385         `iswitchb-completions'.
26387 2005-06-05  Nick Roberts  <nickrob@snap.net.nz>
26389         * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
26390         to preserve point.
26391         (gdb-find-file-hook): Add doc string.
26393         * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
26394         C dereferenced pointer expression.
26395         (gud-tool-bar-map): Put it on the tool bar.  Re-order icons.
26397         * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
26399         * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
26400         * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
26401         * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
26402         * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
26403         * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
26404         Make background transparent.
26406 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
26408         * font-lock.el (font-lock-add-keywords): Doc fix.  Comment change.
26409         (font-lock-remove-keywords): Doc fix.
26410         (font-lock-mode-major-mode): Compiler defvar.
26411         (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
26413         * font-core.el (font-lock-mode-major-mode): Compiler defvar.
26414         (font-lock-mode): Update `font-lock-mode-major-mode'.
26415         (font-lock-set-defaults): Compiler defvar.
26416         (font-lock-default-function): Take `font-lock-mode-major-mode'
26417         into account.
26419         * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
26420         keep track of which major mode it enabled the minor mode for.
26421         Use find-file-hook again.  Update docstring.
26423         * simple.el (eval-expression-print-level)
26424         (eval-expression-print-length, eval-expression-debug-on-error):
26425         Doc fixes.
26427 2005-06-04  Matt Hodges  <MPHodges@member.fsf.org>
26429         * iswitchb.el (iswitchb-single-match-face)
26430         (iswitchb-current-match-face, iswitchb-virtual-matches-face)
26431         (iswitchb-invalid-regexp-face): New faces.
26432         (iswitchb-completions): Use them.
26433         (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
26434         now marked as an obsolete alias.
26435         (iswitchb-read-buffer): Remove check for bound font variables.
26436         (iswitchb-invalid-regexp): New free variable.
26437         (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
26438         set iswitchb-invalid-regexp.
26439         (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
26440         invalid regexps.
26441         (iswitchb-completions): Add check for complete match when entering
26442         a regexp.
26443         (iswitchb-completions): Remove require-match argument.
26444         (iswitchb-exhibit): Fix caller.
26445         (iswitchb-common-match-inserted): New variable.
26446         (iswitchb-complete, iswitchb-completion-help): Use it.
26448 2005-06-04  David Reitter  <david.reitter@gmail.com>  (tiny change)
26450         * url-http.el (url-http-chunked-encoding-after-change-function):
26451         Use `url-http-debug' instead of `message'.
26453 2005-06-04  Thierry Emery  <thierry.emery@free.fr>  (tiny change)
26455         * url-http.el (url-http-parse-headers): Pass redirected URL as a
26456         callback argument.
26458 2005-06-04  Kim F. Storm  <storm@cua.dk>
26460         * simple.el (line-move): Only call sit-for when moving backwards.
26462         * ido.el (ido-make-merged-file-list-1): New defun split from
26463         ido-make-merged-file-list.
26464         (ido-make-merged-file-list): Bind throw-on-input around call to
26465         ido-make-merged-file-list-1.  Return input-pending-p if
26466         interrupted by more input available.
26467         (ido-read-internal): Handle input-pending-p return value from
26468         ido-make-merged-file-list.
26470 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
26472         * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
26473         compatibility code.
26475         * international/latexenc.el (latexenc-find-file-coding-system):
26476         Don't inherit the EOL part of the coding-system from the
26477         tex-main buffer.  Fit within 80 columns.
26479 2005-06-03  Matt Hodges  <MPHodges@member.fsf.org>
26481         * tmm.el (tmm-inactive-face): New face.
26482         (tmm-remove-inactive-mouse-face): New function.
26483         (tmm-prompt, tmm-add-one-shortcut)
26484         (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
26485         but not selectable.
26487 2005-06-03  Juanma Barranquero  <lekktu@gmail.com>
26489         * faces.el (face-equal): Improve argument/docstring consistency.
26491 2005-06-03  Daniel Pfeiffer  <occitan@esperanto.org>
26493         * progmodes/make-mode.el (makefile-targets-face)
26494         (makefile-shell-face, makefile-makepp-perl-face): Add :version.
26495         (makefile-bsdmake-dependency-regex)
26496         (makefile-makepp-rule-action-regex)
26497         (makefile-bsdmake-rule-action-regex): New constants.
26498         (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
26500         * progmodes/compile.el (compilation-error-regexp-alist-alist):
26501         Allow (...) within `...' for makepp messages.
26503 2005-06-03  Michael Kifer  <kifer@cs.stonybrook.edu>
26505         * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
26507         * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
26508         "." files are deleted from all file lists before comparison.
26510         * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
26511         (viper-ESC-key): Made them customizable.
26513         * viper.el (viper-non-hook-settings): Fix the names of defadvices.
26515 2005-06-01  Luc Teirlinck  <teirllm@auburn.edu>
26517         * autorevert.el (auto-revert-buffers): Use save-match-data.
26519 2005-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
26521         * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
26522         menu items with a nil command binding.
26524 2005-06-01  Juanma Barranquero  <lekktu@gmail.com>
26526         * emacs-lisp/cl-macs.el (defsetf):
26527         Improve argument/docstring consistency.
26529         * faces.el (list-faces-display): Improve the formatting by
26530         computing the maximum length required for any face-name (reworked
26531         patch of 1999-01-11, accidentally deleted on 1999-07-21).
26532         (internal-find-face): Remove redundant info in docstring.
26534 2005-06-01  Nick Roberts  <nickrob@snap.net.nz>
26536         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
26537         (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
26538         (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
26539         (gdb-assembler-custom): Improve regexps.
26540         (def-gdb-auto-update-handler): Use window point to preserve point.
26542 2005-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
26544         * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
26546 2005-05-31  Jay Belanger  <belanger@truman.edu>
26548         * calc/calc-embed.el (calc-embedded-word): Change argument passed
26549         to calc-embedded.
26550         (calc-embedded-make-info): Have plain prefix argument select
26551         entire line.
26553 2005-05-31  Juanma Barranquero  <lekktu@gmail.com>
26555         * faces.el (list-faces-display): Signal error if passed a regexp
26556         that matches no face name.
26558         * simple.el (filter-buffer-substring): Fix typo in docstring.
26560 2005-05-31  Richard M. Stallman  <rms@gnu.org>
26562         * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
26563         (vhdl-emacs-21): Doc fix.
26564         (vhdl-mode): Unconditionally set comment-padding.
26565         (vhdl-fixup-whitespace-region): Insert spaces only where
26566         there are none.
26567         (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
26569 2005-05-30  John Wiegley  <johnw@newartisans.com>
26571         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
26572         * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
26573         * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
26574         `directory-sep-char' to ?/, and all uses of `string-to-int' to
26575         `string-to-number'.
26577 2005-05-30  Jay Belanger  <belanger@truman.edu>
26579         * calc/calc.el (calc-bug-address): Fix docstring.
26580         (calc-window-hook, calc-trail-window-hook): New variables.
26581         (calc-trail-display): Restore use of calc-trail-window-hook.
26582         (calc): Restore use of calc-window-hook.
26584 2005-05-31  Masatake YAMATO  <jet@gyve.org>
26586         * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
26588         * help-fns.el (help-C-file-name): Add autoload mark for
26589         `find-function-noselect'.
26591 2005-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
26593         * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
26594         (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
26596 2005-05-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
26598         * calendar/diary-lib.el (mark-included-diary-files): Only kill
26599         included diary buffer if it was not already being visited.
26600         Reported by Stephen Berman <Stephen.Berman@gmx.net>.
26602         * calendar/icalendar.el (top-level): Do not require appt.
26604         * mail/supercite.el (sc-select-attribution): Only use a list
26605         element from sc-attrib-selection-list if it returns a string.
26606         Reported by Davide G. M. Salvetti <salve@debian.org>.
26608 2005-05-30  Juanma Barranquero  <lekktu@gmail.com>
26610         * thumbs.el (thumbs-thumbname): The resulting thumbname now
26611         includes a hash value to improve its uniqueness, and has a ".jpg"
26612         extension.  Also, it is now a valid filename on all systems.
26613         (thumbs-make-thumb): Use `let', not `let*'.
26614         (thumbs-show-thumbs-list): Check for JPEG availability.
26616 2005-05-30  Richard M. Stallman  <rms@gnu.org>
26618         * filesets.el (filesets-menu-ensure-use-cached):
26619         Prevent warning when emacs-version>= is undefined.
26621         * printing.el (pr-interactive-n-up): Use string-to-number.
26623         * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
26625         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
26626         Warn only when name to be defined is quoted.
26628 2005-05-30  Nick Roberts  <nickrob@snap.net.nz>
26630         * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
26631         Make regexp more robust.
26632         (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
26633         Force regeneration of disassembly.
26635 2005-05-29  Jay Belanger  <belanger@truman.edu>
26637         * calc/calc.el (calc-user-invocation): Check if
26638         calc-invocation-macro is non-nil.
26640 2005-05-29  Juri Linkov  <juri@jurta.org>
26642         * add-log.el (change-log-font-lock-keywords):
26643         Add `+' to e-mail regexp to accept mail address with keywords.
26645         * man.el (Man-name-regexp): Add `:' to accept qualified names.
26647 2005-05-29  Luc Teirlinck  <teirllm@auburn.edu>
26649         * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
26651         * ielm.el (inferior-emacs-lisp-mode): Ditto.
26653 2005-05-29  Richard M. Stallman  <rms@gnu.org>
26655         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
26656         Undo the change that moves to end of the current word.
26658 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
26660         * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
26661         Throw error when count <= 0 to ensure input is a number.
26662         (gdb-read-memory-custom): Pick up address from buffer.
26663         (gdb-memory-mode): Allow user to increment and decrement
26664         memory address from header line.
26666 2005-05-29  Richard M. Stallman  <rms@gnu.org>
26668         * flyspell.el (flyspell-version): Function deleted.
26669         (flyspell-auto-correct-previous-hook): Doc fix.
26671         * jit-lock.el (jit-lock-function, jit-lock-after-change):
26672         Do nothing if memory is full.
26674         * font-lock.el (font-lock-fontify-syntactically-region):
26675         Pass t for GREEDY to looking-back.
26677         * saveplace.el (save-place-alist-to-file): Write the file
26678         using write-region.
26680         * subr.el (looking-back): New argument GREEDY.
26682         * progmodes/compile.el (compilation-start): Set the mode
26683         before inserting the initial text.
26685         * progmodes/which-func.el (which-func-update-1): Turn the mode
26686         off in case of error by setting which-func-mode.
26688 2005-05-29  Peter Heslin  <p.j.heslin@durham.ac.uk>  (tiny change)
26690         * flyspell.el (flyspell-auto-correct-previous-word):
26691         Narrow down to what's on the screen, and recenter overlays
26692         at the end of the next word.
26694 2005-05-29  Manuel Serrano  <Manuel.Serrano@sophia.inria.fr>
26696         * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
26697         (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
26698         (flyspell-abbrev-p): Default to nil.
26699         (flyspell-use-global-abbrev-table-p): Doc fix.
26700         (flyspell-large-region): Allow nil as value.
26701         (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
26703         (mail-mode-flyspell-verify): More robust handling
26704         of `mail-header-separator'.  More efficient signature detection.
26705         Allow for regexp metacharacters in message-header-separator.
26706         Adding `To' not to be checked in mail-mode-flyspell-verify.
26708         (flyspell-prog-mode): Run flyspell-prog-mode-hook.
26709         (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
26710         Bind flyspell-auto-correct-binding.
26711         Bind C-. and C-, .
26712         (flyspell-mode-map): Likewise.
26713         (flyspell-mode): Doc fix.
26714         (flyspell-accept-buffer-local-defs): Preserve current buffer.
26715         (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
26716         (flyspell-word-cache-result): New var, always local.
26717         (flyspell-check-pre-word-p): Doc fix.
26718         (flyspell-check-changed-word-p): Handle spc like newline.
26719         (flyspell-post-command-hook): Set flyspell-word-cache-result.
26720         (flyspell-word-search-backward, flyspell-word-search-forward):
26721         New functions.
26722         (flyspell-word): Return t if nothing to check.
26723         When parsing TeX code, check for after } or \.
26724         Use flyspell-word-search-backward to find previous word.
26725         Return nil if duplicated word.
26726         For word already checked, return same value as last time.
26727         Set flyspell-word-cache-result after checking.
26728         Don't clobber the return value.
26729         (flyspell-get-word): Major rewrite.
26730         (flyspell-external-point-words): New locals pword, pcount.
26731         Fix size used in progress message.
26732         Find the proper corresponding word in flyspell-large-region-buffer.
26733         (flyspell-region): Check for flyspell-large-region = nil.
26734         (flyspell-highlight-incorrect-region): Clean up overlays in region.
26735         (flyspell-auto-correct-word): Check that WORD is a cons.
26736         (flyspell-correct-word): Likewise.
26738 2005-05-29  Daniel Pfeiffer  <occitan@esperanto.org>
26740         * progmodes/make-mode.el (makefile-rule-action-regex)
26741         (makefile-macroassign-regex, makefile-makepp-mode)
26742         (makefile-bsdmake-mode): Continuation lines may be empty.
26743         Reported by Joshua Varner.
26744         (makefile-makepp-font-lock-keywords): Add $(stem).
26746 2005-05-28  Karl Berry  <karl@gnu.org>
26748         * textmodes/tex-mode.el: Now that tex-send-command calls
26749         shell-quote-argument (2005-03-31 change), remove all calls to
26750         shell-quote-argument; they all end up invoking tex-send-command.
26751         The double quoting loses on filenames with non-safe characters,
26752         such as "@".  Reported by Frederik Fouvry.
26754 2005-05-29  Nick Roberts  <nickrob@snap.net.nz>
26756         * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
26757         about preserving point.
26759 2005-05-27  Jay Belanger  <belanger@truman.edu>
26761         * calc/calc-misc.el (calc-info-goto-node): Use info instead of
26762         Info-goto-node.
26764         * calc/calc-embed.el (calc-embed-arg): New variable.
26765         (calc-do-embedded-activate, calc-embedded-activate-formula)
26766         (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
26767         variable by new variable.
26768         (calc-embedded-make-info): Replace undeclared variable by new
26769         variable.  When selecting region with positive prefix
26770         argument, use end of previous line instead of beginning of line.
26772         * calc/calc-aent.el (calc-arg-values): Declare it.
26774         * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
26775         Declare them.
26777         * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
26779         * calc/calc.el (calc-alg-map): Declare it.
26781         * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
26783 2005-05-28  Nick Roberts  <nickrob@snap.net.nz>
26785         * progmodes/gdb-ui.el (gdb-all-registers): New variable.
26786         (gdb-registers-buffer, toggle-gdb-all-registers):
26787         Toggle display of floating point registers.
26788         (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
26790         * progmodes/gud.el (gud-goto-info): Use info.  Don't use require.
26791         (toggle-gud-tooltip-dereference):
26792         Rename from gud-toggle-tooltip-dereference.
26794 2005-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
26796         * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
26798 2005-05-27  Jay Belanger  <belanger@truman.edu>
26800         * calc/calc-prog.el (calc-kbd-report): Remove.
26801         (calc-kbd-query): Rewrite.
26803 2005-05-27  Juanma Barranquero  <lekktu@gmail.com>
26805         * image.el (image-library-alist): Move to image.c.
26806         (image-type-available-p): Doc fix.
26808 2005-05-27  Lute Kamstra  <lute@gnu.org>
26810         * calc/calc.el (calc):
26811         * outline.el (outline-1, outline-2, outline-3, outline-4)
26812         (outline-5, outline-6, outline-7, outline-8):
26813         * textmodes/dns-mode.el (dns-mode):
26814         * textmodes/sgml-mode.el (sgml-namespace-face):
26815         * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
26816         (tex-verbatim-face, tex-use-reftex):
26817         * textmodes/texinfo.el (texinfo-heading-face):
26818         Specify customization group.
26820         * longlines.el: Don't require easy-mmode.
26821         (longlines-visible-face): Specify customization group.
26823 2005-05-27  Kenichi Handa  <handa@m17n.org>
26825         * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
26826         encoding table of windows-1251.
26828         * international/ucs-tables.el (ucs-set-table-for-input):
26829         If translation-table-for-input of a coding system is a symbol, get
26830         its translation-table property.
26832         * international/code-pages.el: Don't register a coding system into
26833         non-iso-charset-alist more than once.
26834         (cp-make-coding-system): Likewise.
26836 2005-05-26  John Wiegley  <johnw@newartisans.com>
26838         * eshell/esh-cmd.el (eshell-eval-command): If the return value of
26839         `eshell-resume-eval' is wrapped in a list, it indicates that the
26840         command was run asynchronously.  In that case, unwrap the value
26841         before checking the delimiter value.
26843         * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
26844         character before a space at the end of a line is \, assume the space
26845         is part of the last argument rather than a final argument separator.
26847         * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
26848         is in use, and the target is `t' or `nil' (which are the most common
26849         values), don't assume that the symbol target is a buffer.
26851 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
26853         * calendar/calendar.el (calendar-mode-line-format):
26854         Use mode-line-highlight as mouse-face.
26856         * time.el (display-time-string-forms, display-time-update):
26857         Use mode-line-highlight as mouse-face.
26859 2005-05-26  Jay Belanger  <belanger@truman.edu>
26861         * calc/calc.el (calc-language-alist): Remove extra defvar.
26863 2005-05-26  Lute Kamstra  <lute@gnu.org>
26865         * arc-mode.el (archive-mode):
26866         * bookmark.el (bookmark-read-annotation-mode)
26867         (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
26868         * bs.el (bs-mode):
26869         * calc/calc-yank.el (calc-edit-mode):
26870         * calc/calc.el (calc-mode, calc-trail-mode):
26871         * calculator.el (calculator-mode):
26872         * chistory.el (command-history-mode):
26873         * comint.el:
26874         * cus-edit.el (custom-mode):
26875         * descr-text.el (describe-text-mode):
26876         * ebuff-menu.el (Electric-buffer-menu-mode):
26877         * ediff-util.el (ediff-mode):
26878         * emacs-lisp/re-builder.el (reb-mode):
26879         * emulation/vi.el (vi-mode-setup):
26880         * emulation/ws-mode.el (wordstar-mode):
26881         * eshell/esh-mode.el (eshell-mode):
26882         * forms.el (forms-mode):
26883         * help-mode.el (help-mode):
26884         * hexl.el (hexl-mode):
26885         * ibuffer.el (ibuffer-mode):
26886         * ielm.el (inferior-emacs-lisp-mode):
26887         * info.el (Info-mode, Info-edit-mode):
26888         * international/swedish.el:
26889         * ledit.el (ledit-from-lisp-mode):
26890         * locate.el (locate-mode):
26891         * mail/rmail.el (rmail-mode):
26892         * mail/rmailedit.el (rmail-edit-mode):
26893         * mail/rmailsum.el (rmail-summary-mode):
26894         * mail/supercite.el (sc-electric-mode):
26895         * net/eudc.el (eudc-mode):
26896         * net/quickurl.el (quickurl-list-mode):
26897         * net/snmp-mode.el (snmp-mode, snmpv2-mode):
26898         * obsolete/ooutline.el (outline-mode):
26899         * obsolete/options.el (Edit-options-mode):
26900         * obsolete/rnews.el (news-mode):
26901         * obsolete/rnewspost.el (news-reply-mode):
26902         * play/5x5.el (5x5-mode):
26903         * play/decipher.el (decipher-mode, decipher-stats-mode):
26904         * play/gomoku.el (gomoku-mode):
26905         * play/snake.el (snake-mode):
26906         * play/solitaire.el (solitaire-mode):
26907         * play/tetris.el (tetris-mode):
26908         * progmodes/ada-mode.el (ada-mode):
26909         * progmodes/antlr-mode.el (antlr-mode):
26910         * progmodes/autoconf.el (autoconf-mode):
26911         * progmodes/dcl-mode.el (dcl-mode):
26912         * progmodes/delphi.el (delphi-mode):
26913         * progmodes/ebrowse.el (ebrowse-tree-mode)
26914         (ebrowse-electric-list-mode, ebrowse-member-mode)
26915         (ebrowse-electric-position-mode):
26916         * progmodes/f90.el (f90-mode):
26917         * progmodes/fortran.el (fortran-mode):
26918         * progmodes/icon.el (icon-mode):
26919         * progmodes/idlw-help.el (idlwave-help-mode):
26920         * progmodes/idlw-shell.el (idlwave-shell-mode):
26921         * progmodes/idlwave.el (idlwave-mode):
26922         * progmodes/inf-lisp.el (inferior-lisp-mode):
26923         * progmodes/m4-mode.el (m4-mode):
26924         * progmodes/meta-mode.el (metafont-mode, metapost-mode):
26925         * progmodes/modula2.el (modula-2-mode):
26926         * progmodes/octave-inf.el (inferior-octave-mode):
26927         * progmodes/octave-mod.el (octave-mode):
26928         * progmodes/pascal.el (pascal-mode):
26929         * progmodes/sh-script.el (sh-mode):
26930         * progmodes/sql.el (sql-mode, sql-interactive-mode):
26931         * progmodes/vhdl-mode.el (vhdl-mode):
26932         * progmodes/xscheme.el (scheme-interaction-mode):
26933         * replace.el (occur-mode):
26934         * ses.el (ses-mode):
26935         * simple.el (completion-list-mode):
26936         * skeleton.el:
26937         * speedbar.el (speedbar-mode):
26938         * term.el (term-mode):
26939         * terminal.el (terminal-edit-mode):
26940         * textmodes/reftex-index.el (reftex-index-mode)
26941         (reftex-index-phrases-mode):
26942         * textmodes/reftex-sel.el (reftex-select-label-mode)
26943         (reftex-select-bib-mode):
26944         * textmodes/reftex-toc.el (reftex-toc-mode):
26945         * wdired.el (wdired-change-to-wdired-mode):
26946         * wid-browse.el (widget-browse-mode):
26947         Use run-mode-hooks.
26949         * array.el (array-mode):
26950         * calendar/todo-mode.el (todo-mode):
26951         * man.el (Man-mode):
26952         * play/landmark.el (lm-mode):
26953         * play/mpuz.el (mpuz-mode):
26954         Use kill-all-local-variables and run-mode-hooks.
26956         * subr.el (delay-mode-hooks): Specify indentation.
26958 2005-05-26  Mark A. Hershberger  <mah@everybody.org>
26960         * xml.el (xml-substitute-special): Don't die for undefined xml
26961         entities.
26963 2005-05-26  Jay Belanger  <belanger@truman.edu>
26965         * calc/calc-prog.el (calc-user-define-edit): Don't find substring
26966         of nil.
26968 2005-05-27  Nick Roberts  <nickrob@snap.net.nz>
26970         * progmodes/gdb-ui.el (gdb-frame-address):
26971         Rename from gdb-current-address.
26972         (gdb-previous-frame-address): Rename from gdb-previous-address.
26973         (gdb-selected-frame): Rename from gdb-current-frame.
26974         (gdb-get-selected-frame): Rename from gdb-get-current-frame.
26975         (gdb-frame-number): Rename from gdb-current-stack-level.
26976         (gdb-ann3): Match new mode-name for disassembly buffer.
26977         Extend initialization of variables.
26978         (gdb-post-prompt): Update disassembly from gdb-frame-handler.
26979         (gdb-memory-mode): Use mouse-face in header line.
26980         (gdb-assembler-buffer-name): Call it disassembly and give frame
26981         in mode line.
26982         (gdb-source-spec-regexp, gdb-assembler-custom)
26983         (gdb-invalidate-assembler, gdb-frame-handler):
26984         Make robust to leading zeroes in address format.
26986 2005-05-26  Carsten Dominik  <dominik@science.uva.nl>
26988         * textmodes/org.el (org-mode): Use `define-derived-mode' to
26989         define `org-mode'.
26990         (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
26992 2005-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
26994         * log-edit.el (log-edit-changelog-entries): Distinguish between
26995         filenames like xfns.c and fns.c.
26997 2005-05-25  Luc Teirlinck  <teirllm@auburn.edu>
26999         * buff-menu.el (Buffer-menu-revert-function): Improve handling of
27000         point after reverting.
27001         (Buffer-menu-make-sort-button): Handle the case where
27002         `Buffer-menu-use-header-line' is nil.
27004 2005-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
27006         * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
27007         New funcs.  In minibuffer-local-completion-map bind `]', `/'
27008         and `:' to them.
27010 2005-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
27012         * startup.el (normal-top-level): Allow modification of load-path while
27013         we're iterating over it.
27015 2005-05-25  Juanma Barranquero  <lekktu@gmail.com>
27017         * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
27018         (thumbs-cleanup-thumbsdir, thumbs-call-convert)
27019         (thumbs-resize-interactive, thumbs-insert-image)
27020         (thumbs-insert-thumb, thumbs-dired-show-marked)
27021         (thumbs-find-image-at-point, thumbs-delete-images)
27022         (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
27023         (thumbs-increment-image-size, thumbs-decrement-image-size):
27024         Fix typos in docstrings.
27026 2005-05-24  Andre Spiegel  <spiegel@gnu.org>
27028         * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
27029         (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
27030         (cperl-mode): Use them.
27032 2005-05-24  Juanma Barranquero  <lekktu@gmail.com>
27034         * window.el (quit-window, shrink-window-if-larger-than-buffer):
27035         Doc fixes.
27037 2005-05-24  Nick Roberts  <nickrob@snap.net.nz>
27039         * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
27040         Bind C-d to gdb-inferior-io-eof.
27042         * dired.el (dired-dnd-popup-notice): Use message-box.
27044 2005-05-23  Masatake YAMATO  <jet@gyve.org>
27046         * bindings.el (mode-line-major-mode-keymap):
27047         Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
27049         * faces.el (mode-line-highlight): New face.
27051         * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
27052         as mouse-face.
27054         * bindings.el (top-level, help-echo, mode-line-modified)
27055         (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
27056         as mouse-face.
27058 2005-05-23  Juanma Barranquero  <lekktu@gmail.com>
27060         * progmodes/cc-engine.el (c-guess-basic-syntax):
27061         Remove spurious call to `zerop'.
27063         * emacs-lisp/cl.el (acons, pairlis): Add docstring.
27065 2005-05-23  Martin Stjernholm  <bug-cc-mode@gnu.org>
27067         CC Mode update to 5.30.10:
27069         * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
27070         could go past the limit in decoration level 2, thereby causing
27071         errors during interactive fontification.
27073         * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
27074         the file is evaluated interactively.
27076         * cc-engine.el (c-guess-basic-syntax): Handle operator
27077         declarations somewhat better in C++.
27079         * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
27080         make use of `run-mode-hooks' which has been added in Emacs 21.1.
27081         (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
27082         (awk-mode): Use it.
27083         (make-local-hook): Suppress warning about obsoleteness.
27085         * cc-engine.el, cc-align.el, cc-cmds.el
27086         (c-append-backslashes-forward, c-delete-backslashes-forward)
27087         (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
27088         Compensate for return value from `forward-line' when it has moved
27089         but not to a different line due to eob.
27091         * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
27092         `objc-method-intro' and `objc-method-args-cont'.
27094 2005-05-23  Alan Mackenzie  <bug-cc-mode@gnu.org>
27096         CC Mode update to 5.30.10:
27098         * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
27099         in the copyright statement.  Incidentally, change "along with GNU
27100         Emacs" to "along with this program" where it occurs.
27102         * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
27103         so that it is interactive, hence can be found by M-x awk-mode
27104         whilst cc-mode is yet to be loaded.  Reported by Glenn Morris
27105         <gmorris+emacs@ast.cam.ac.uk>.
27107         * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
27108         Mode's regexps.
27110 2005-05-23  Kevin Ryde  <user42@zip.com.au>
27112         * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
27113         c-parse-state, to avoid a lisp error (on bad code).
27115 2005-05-23  Lute Kamstra  <lute@gnu.org>
27117         * subr.el (font-lock-defaults): Remove defvar as it's already
27118         defined in font-core.el.
27120         * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
27122 2005-05-23  Nick Roberts  <nickrob@snap.net.nz>
27124         * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
27125         more general and work when GDB variable "print pretty" is on,
27126         as with Emacs, for example.
27128 2005-05-22  Luc Teirlinck  <teirllm@auburn.edu>
27130         * font-core.el: Update comment.
27132         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
27133         Use `after-change-major-mode-hook' instead of `find-file-hook'.
27135         * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
27137 2005-05-22  Eli Zaretskii  <eliz@gnu.org>
27139         * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
27140         and `yank-handler' in the doc strings.
27142 2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
27144         * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
27146 2005-05-22  Richard M. Stallman  <rms@gnu.org>
27148         * help.el (describe-key): Move print-help-return-message call
27149         out of conditional.
27151         * progmodes/etags.el (list-tags): Use with-no-warnings.
27153         * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
27154         (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
27155         (starttls-extra-args, starttls-extra-arguments): Add defvars.
27157         * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
27159         * language/viet-util.el (viet-viscii-nonascii-translation-table):
27160         Add defvar.
27162         * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
27163         Use defvar, not defconst.
27165         * hexl.el (hexl-follow-line): Use with-no-warnings.
27167         * emulation/tpu-extras.el: Use write-file-functions instead of
27168         write-file-hooks.
27170         * dired.el (dired-font-lock-keywords): Fontify files with junk
27171         extensions even if marked by -F.
27173 2005-05-22  Juanma Barranquero  <lekktu@gmail.com>
27175         * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
27176         (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
27177         * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
27178         (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
27179         (concatenate, list-length, get*, getf, cl-remprop):
27180         * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
27181         (etypecase, progv, lexical-let, lexical-let*)
27182         (multiple-value-bind, multiple-value-setq, shiftf):
27183         Improve argument/docstring consistency.
27185         * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
27187 2005-05-22  Andre Spiegel  <spiegel@gnu.org>
27189         * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
27190         doesn't exist.
27192         * vc.el (vc-trunk-p): Add autoload cookie.  The function is used in
27193         vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
27195 2005-05-22  Nick Roberts  <nickrob@snap.net.nz>
27197         * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
27198         already deleted variables: auto-fill-hook, blink-paren-hook,
27199         lisp-indent-hook, inhibit-local-variables, unread-command-event,
27200         suspend-hooks, comment-indent-hook, meta-flag,
27201         before-change-function, after-change-function,
27202         font-lock-doc-string-face.
27204 2005-05-21  Luc Teirlinck  <teirllm@auburn.edu>
27206         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
27208 2005-05-21  Eli Zaretskii  <eliz@gnu.org>
27210         * mail/rmail.el (rmail-reply): Filter the list in reply-to through
27211         rmail-dont-reply-to.
27213 2005-05-21  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
27215         * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
27216         literal blank when splitting new-header-values.
27218 2005-05-21  Matt Hodges  <MPHodges@member.fsf.org>
27220         * calendar/cal-menu.el (cal-menu-update): Add separator as a
27221         string so that tmm doesn't create a completion entry for it.
27223         * textmodes/table.el (table-disable-menu): Ditto.
27225 2005-05-21  Richard M. Stallman  <rms@gnu.org>
27227         * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
27229         * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
27231         * net/rcompile.el (remote-compile): Use compilation-start.
27233         * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
27235 2005-05-21  Daniel Pfeiffer  <occitan@esperanto.org>
27237         * files.el (auto-mode-alist): Check GNUmakefile before makefile.
27238         Default to makefile-bsdmake-mode on BSD systems.
27240         * imenu.el (imenu-generic-expression, imenu--generic-function'):
27241         REGEXP may also be a search function now.  The part of doc-string
27242         for describing the structure was 95% identical to that of
27243         `imenu--generic-function'.  Unify it there.
27245         * progmodes/make-mode.el (makefile-imenu-generic-expression):
27246         Use function to find dependencies, because regexp alone is so complex,
27247         it easily goes into an endless loop.
27248         (makefile-makepp-mode): Also add submenu for Perl functions
27249         defined in the makefile.
27250         (makefile-bsdmake-mode): Special imenu-generic-expression no
27251         longer needed, due to function call.
27252         (makefile-match-dependency): Take BOUND into account when checking
27253         if we're through.
27255 2005-05-20  Jay Belanger  <belanger@truman.edu>
27257         * calc/calc-units.el (calc-invalidate-units-table):
27258         Use inhibit-read-only.
27259         (math-build-units-table-buffer): Use view-mode.
27261 2005-05-20  David Kastrup  <dak@gnu.org>
27263         * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
27264         easy-menu-add is not a nop on Emacs; and clarify when to call it.
27266 2005-05-20  Lute Kamstra  <lute@gnu.org>
27268         * diff-mode.el (diff-header-face, diff-file-header-face)
27269         (diff-index-face, diff-hunk-header-face, diff-removed-face)
27270         (diff-added-face, diff-changed-face, diff-function-face)
27271         (diff-context-face, diff-nonexistent-face): Put them in the
27272         diff-mode customization group.
27274 2005-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
27276         * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
27278         * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
27280         * font-lock.el (lisp-font-lock-keywords-2): Don't error.
27281         Minor regexp-optimization.
27283 2005-05-20  Carsten Dominik  <dominik@science.uva.nl>
27285         * textmodes/org.el (org-agenda-toggle-time-grid): New command.
27286         (org-agenda-use-time-grid, org-agenda-time-grid): New options.
27287         (org-agenda-add-time-grid-maybe): New function.
27288         (org-agenda): Call `org-agenda-add-time-grid-maybe'.
27289         (org-table-create): `dotimes' instead of `mapcar'.
27290         (org-xor): Simplify implementation.
27291         (org-agenda): `inhibit-redisplay' turned on.
27292         (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
27293         a consistent line after a state change.
27294         (org-agenda-remove-times-when-in-prefix): New option.
27295         (org-prefix-has-time): New variable.
27296         (org-parse-time-string): Optional argument NODEFAULT.
27297         (org-format-agenda-item): Parse items for time-of-day
27298         specifications and move these into the prefix if possible.
27299         (org-agenda-priority): Get current heading, not previous heading
27300         during agenda remote editing.
27302 2005-05-20  Juanma Barranquero  <lekktu@gmail.com>
27304         * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
27305         (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
27306         (remove-duplicates, delete-duplicates, substitute)
27307         (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
27308         (nsubstitute-if-not, find, find-if, find-if-not, position)
27309         (position-if, position-if-not, count, count-if, count-if-not)
27310         (mismatch, search, sort*, stable-sort, merge, member*)
27311         (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
27312         (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
27313         (intersection, nintersection, set-difference, nset-difference)
27314         (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
27315         (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
27316         (nsublis, tree-equal): Improve argument/docstring consistency.
27318         * subr.el (send-string, send-region): Remove obsolescence declaration.
27319         (window-dot, set-window-dot, read-input, show-buffer)
27320         (eval-current-buffer, string-to-int):
27321         Add release number to obsolescence declarations.
27323 2005-05-19  Kim F. Storm  <storm@cua.dk>
27325         * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
27326         (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
27328 2005-05-20  Matt Hodges  <MPHodges@member.fsf.org>
27330         * faces.el (list-faces-display): Make back button respect optional
27331         regexp arg.
27333 2005-05-19  Juanma Barranquero  <lekktu@gmail.com>
27335         * calculator.el (calculator-radix-grouping-mode)
27336         (calculator-radix-grouping-digits, calculator-displayer)
27337         (calculator-radix-grouping-separator, calculator-copy-displayer):
27338         * dabbrev.el (dabbrev-search-these-buffers-only):
27339         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
27340         (diff-advance-after-apply-hunk, diff-mode-hook)
27341         (diff-minor-mode-prefix):
27342         * imenu.el (imenu-use-popup-menu):
27343         * jit-lock.el (jit-lock-context-time):
27344         * newcomment.el (comment-fill-column, comment-column)
27345         (comment-style, comment-padding, comment-multi-line)
27346         (comment-empty-lines, comment-auto-fill-only-comments):
27347         * reveal.el (reveal-around-mark):
27348         * uniquify.el (uniquify-buffer-name-style)
27349         (uniquify-after-kill-buffer-p)
27350         (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
27351         (uniquify-min-dir-content, uniquify-separator)
27352         (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
27353         * w32-vars.el (w32-fixed-font-alist):
27354         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
27355         * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
27356         * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
27357         * progmodes/perl-mode.el (perl-indent-level)
27358         (perl-continued-statement-offset, perl-continued-brace-offset)
27359         (perl-brace-offset, perl-brace-imaginary-offset)
27360         (perl-label-offset, perl-indent-continued-arguments)
27361         (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
27362         * progmodes/tcl.el (tcl-indent-level)
27363         (tcl-continued-indent-level, tcl-auto-newline)
27364         (tcl-tab-always-indent, tcl-electric-hash-style)
27365         (tcl-help-directory-list, tcl-use-smart-word-finder)
27366         (tcl-application, tcl-command-switches, tcl-prompt-regexp)
27367         (inferior-tcl-source-command):
27368         * textmodes/fill.el (enable-kinsoku):
27369         * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
27370         * textmodes/table.el (table-yank-handler):
27371         Specify missing group (and type, if simple) in defcustom.
27373 2005-05-19  Luc Teirlinck  <teirllm@auburn.edu>
27375         * progmodes/compile.el (compilation-finish-function): Fix defvar.
27377 2005-05-19  Richard M. Stallman  <rms@gnu.org>
27379         * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
27381         * subr.el (event-basic-type): Don't get an error.
27382         (left-fringe-p): Function deleted.
27384         * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
27385         (list-buffers-noselect): Set `font-lock-face' property, not `face'.
27387         * dired-aux.el (dired-copy-file-recursive): Handle symlinks
27388         in recursive copy.
27390         * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
27392         * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
27394         * emacs-lisp/bytecomp.el
27395         (byte-compile-file-form-custom-declare-variable):
27396         Call byte-compile-nogroup-warn if appropriate.
27398         * progmodes/compile.el (compilation-finish-function): Mark obsolete.
27399         (compilation-set-window): Don't call left-fringe-p; do it directly.
27401 2005-05-19  Jay Belanger  <belanger@truman.edu>
27403         * calc/calc-graph.el (calc-graph-format-data): Make sure
27404         var-PlotRejects is bound before trying to check its value.
27406 2005-05-19  Carsten Dominik  <dominik@science.uva.nl>
27408         * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
27409         definition of this variable from reftex-global.el to reftex.el,
27410         because it is needed in the menu.
27412 2005-05-19  Lute Kamstra  <lute@gnu.org>
27414         * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
27415         years are fixed.  Don't insert a space after a dash.
27417 2005-05-19  Kim F. Storm  <storm@cua.dk>
27419         * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
27421 2005-05-19  Daniel Pfeiffer  <occitan@esperanto.org>
27423         * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
27424         strings, because (eq ... ?\\) is fairly frequent.
27426         * progmodes/make-mode.el (makefile-add-this-line-targets):
27427         Simplify and integrate into `makefile-pickup-targets'.
27428         (makefile-add-this-line-macro): Simplify and integrate into
27429         `makefile-pickup-macros.
27430         (makefile-pickup-filenames-as-targets): Simplify.
27431         (makefile-previous-dependency, makefile-match-dependency):
27432         Don't stumble over `::'.
27434 2005-05-19  Nick Roberts  <nickrob@snap.net.nz>
27436         * subr.el (post-command-idle-hook, post-command-idle-delay):
27437         Remove obsoletion of post-command-idle-hook and
27438         post-command-idle-delay.
27440         * faces.el (list-faces-display): Provide button when describe-face
27441         is called to take user back to the list of faces.
27443         * help-fns.el (describe-variable): Remove hyperlinks in a
27444         variable's value as these are quite frequently inappropriate.
27446         * follow.el (follow-submit-feedback, follow-mode):
27447         Remove references to post-command-idle-hook.
27449 2005-05-18  Daniel Pfeiffer  <occitan@esperanto.org>
27451         * progmodes/make-mode.el (makefile-previous-dependency)
27452         (makefile-match-dependency): Check for := (and in bsd mode also
27453         !=) to give a better result, even when font-lock is not on.
27455 2005-05-18  Jay Belanger  <belanger@truman.edu>
27457         * calc/calc-help.el (calc-s-prefix-help):
27458         Add `calc-copy-special-constant' to help string.
27460 2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>
27462         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
27464 2005-05-18  Jay Belanger  <belanger@truman.edu>
27466         * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
27467         in linear factors are in proper order.
27469 2005-05-18  Carsten Dominik  <dominik@science.uva.nl>
27471         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
27472         Support for jurabib.
27474         * textmodes/reftex.el (featurep): Define aliases for overlay
27475         commands, for XEmacs compatibility, and use these aliases in
27476         overlay initializations.
27477         (reftex-highlight): Use `reftex-move-overlay'.
27478         (reftex-unhighlight): Use `reftex-delete-overlay'.
27479         (reftex-uniq): Function removed.  Use `reftex-uniquify' instead.
27480         (reftex-access-search-path): Use `reftex-uniquify' instead of
27481         `reftex-uniq'
27483         * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
27484         `before-string' property modification enables for Emacs as well.
27485         (reftex-select-item): Use `reftex-delete-overlay'.
27486         (reftex-select-mark): Use `reftex-make-overlay' and
27487         `reftex-overlay-put'.
27488         (reftex-select-unmark): Use `reftex-delete-overlay' and
27489         `reftex-overlay-put'.
27491 2005-05-18  Lute Kamstra  <lute@gnu.org>
27493         * emacs-lisp/lisp.el (check-parens): Fix docstring.
27495 2005-05-18  Juanma Barranquero  <lekktu@gmail.com>
27497         * add-log.el (add-change-log-entry):
27498         * array.el (array-make-template, array-reconfigure-rows)
27499         (array-init-max-row, array-init-max-column)
27500         (array-init-columns-per-line, array-init-field-width):
27501         * replace.el (replace-match-maybe-edit, perform-replace):
27502         * textmodes/spell.el (spell-region):
27503         Replace `read-input' by `read-string'.
27505         * forms.el (forms-mode):
27506         * finder.el (finder-compile-keywords):
27507         * shadowfile.el (shadow-read-files):
27508         Replace `eval-current-buffer' by `eval-buffer'.
27510         * terminal.el (te-pass-through):
27511         * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
27512         (ange-ftp-raw-send-cmd):
27513         * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
27514         (send-process-next-char, telnet-initial-filter, telnet):
27515         Replace `send-string' by `process-send-string'.
27517         * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
27518         (prolog-consult-region): Replace `send-string' by
27519         `process-send-string'; replace `send-region' by `process-send-region'.
27521         * progmodes/delphi.el (delphi-log-msg):
27522         Replace `set-window-dot' by `set-window-point'.
27524         * subr.el (window-dot, set-window-dot, read-input, send-string)
27525         (send-region, show-buffer, eval-current-buffer):
27526         Make really obsolete, as the comment says.
27528 2005-05-17  Kim F. Storm  <storm@cua.dk>
27530         * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
27531         (cua--init-keymaps): Bind C-return instead of S-return to set
27532         rectangle mark.
27534         * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
27535         instead of S-return to toggle/clear rectangle mark.
27537 2005-05-17  Daniel Pfeiffer  <occitan@esperanto.org>
27539         * progmodes/make-mode.el (makefile-dependency-skip): New variable.
27540         (makefile-macroassign-regex, makefile-make-font-lock-keywords):
27541         Also fontify plain strings assigned to variables, mostly so that a
27542         colon has a face and is thus not taken as a dependency separator.
27543         (makefile-previous-dependency): Inline the new matcher, because it
27544         is too complex to work in both directions.
27545         (makefile-match-dependency): Eliminate `backward' arg (see above).
27546         Completely reimplemented so as to not sometimes go into an endless
27547         loop.  It should also be more efficient, because first it only
27548         searches for `:', instead of applying the very complex regexp.
27549         (makefile-mode): Cancel `font-lock-support-mode', because blocks
27550         to be fontified in one piece can be too long for JIT.
27551         Makefiles are never *that* big.
27553 2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>
27555         * dired.el (dired-mode): Simplify.
27557 2005-05-17  Lute Kamstra  <lute@gnu.org>
27559         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
27560         defcustom for the mode hook variable.
27562         * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
27563         Emacs Lisp Reference Manual.
27565 2005-05-17  Juanma Barranquero  <lekktu@gmail.com>
27567         * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
27568         (evenp, list*):
27569         * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
27570         * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
27572         * net/tramp-smb.el (tramp-smb-open-connection):
27573         Pass `tramp-chunksize' as fifth (required) argument.
27575 2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>
27577         * font-lock.el (lisp-font-lock-keywords-1):
27578         Set `font-lock-negation-char-face' for [^...] char group.
27579         (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
27581         * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
27582         a var, and refine it to mask one more level of nested vars.
27583         (makefile-rule-action-regex): Turn it into a var, and refine it so
27584         it recognizes backslashed continuation lines as belonging to the
27585         same command.
27586         (makefile-macroassign-regex): Refine it so it recognizes
27587         backslashed continuation lines as belonging to the same command.
27588         (makefile-var-use-regex): Don't look at the next char, because it
27589         might be the same one to be skipped by the initial [^$], leading
27590         to an overlooked variable use.
27591         (makefile-make-font-lock-keywords): Remove two parameters, which
27592         are now variables that some of the modes set locally.
27593         Handle dependency and rule action matching through functions, because
27594         regexps alone match too often.  Dependency matching now comes
27595         last, so it can check, whether a colon already matched something else.
27596         (makefile-mode): Inform that font-lock improves makefile parsing
27597         capabilities.
27598         (makefile-match-dependency, makefile-match-action): New functions.
27600 2005-05-16  Juanma Barranquero  <lekktu@gmail.com>
27602         * emacs-lisp/cl-extra.el (equalp): Doc fix.
27604         * align.el (align-regexp):
27605         * ansi-color.el (ansi-color-get-face):
27606         * array.el (array-reconfigure-rows, array-init-max-row)
27607         (array-init-max-column, array-init-columns-per-line)
27608         (array-init-field-width):
27609         * dired-aux.el (dired-trample-file-versions):
27610         * dired-x.el (dired-mark-sexp):
27611         * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
27612         * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
27613         * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
27614         * faces.el (face-read-integer):
27615         * files.el (backup-extract-version, insert-directory):
27616         * hexl.el (hexl-insert-decimal-char):
27617         * server.el (server-process-filter):
27618         * shell.el (shell-extract-num):
27619         * startup.el (command-line-1):
27620         * term.el (term-command-hook):
27621         * time-stamp.el (time-stamp, time-stamp-string-preprocess)
27622         (time-stamp-do-number):
27623         * time.el (display-time-update):
27624         * timezone.el (timezone-parse-date, timezone-zone-to-minute)
27625         (timezone-fix-time):
27626         * vms-patch.el (vms-suspend-resume-hook):
27627         * calendar/appt.el (appt-convert-time):
27628         * calendar/cal-bahai.el (mark-bahai-diary-entries):
27629         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
27630         * calendar/cal-islam.el (mark-islamic-diary-entries):
27631         * calendar/calendar.el (calendar-cursor-to-date)
27632         (calendar-star-date):
27633         * calendar/diary-lib.el (diary-attrtype-convert)
27634         (mark-diary-entries, diary-entry-time):
27635         * calendar/solar.el (solar-get-number):
27636         * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
27637         * emacs-lisp/re-builder.el (reb-display-subexp):
27638         * emulation/edt.el (edt-set-scroll-margins):
27639         * emulation/tpu-extras.el (tpu-set-scroll-margins):
27640         * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
27641         (vip-get-ex-count):
27642         * emulation/viper-ex.el (viper-get-ex-token)
27643         (viper-get-ex-buffer, viper-get-ex-count, ex-next):
27644         * international/fontset.el (fontset-plain-name):
27645         * mail/feedmail.el (feedmail-look-at-queue-directory):
27646         * mail/mailalias.el (mail-get-names):
27647         * mail/rmail.el (rmail-convert-to-babyl-format):
27648         * mail/rmailsum.el (rmail-make-basic-summary-line)
27649         (rmail-summary-next-same-subject, rmail-summary-rmail-update)
27650         (rmail-summary-goto-msg):
27651         * mail/smtpmail.el (smtpmail-read-response):
27652         * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
27653         (ange-ftp-vms-add-file-entry):
27654         * play/gametree.el (gametree-looking-at-ply)
27655         (gametree-current-branch-score):
27656         * progmodes/ada-xref.el (ada-prj-find-prj-file)
27657         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
27658         * progmodes/cperl-mode.el (condition-case):
27659         * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
27660         (ebrowse-set-member-buffer-column-width)
27661         (ebrowse-select-1st-to-9nth):
27662         * progmodes/etags.el (etags-snarf-tag):
27663         * progmodes/flymake.el (flymake-parse-line):
27664         * progmodes/idlw-shell.el (idlwave-shell-parse-line)
27665         (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
27666         (idlwave-shell-menu-def):
27667         * progmodes/ps-mode.el (ps-run-goto-error):
27668         * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
27669         (vhdl-speedbar-contract-level):
27670         * term/mac-win.el (x-handle-numeric-switch):
27671         * term/sun-mouse.el (sun-get-frame-data):
27672         * term/w32-win.el (x-handle-numeric-switch):
27673         * term/x-win.el (x-handle-numeric-switch):
27674         * textmodes/ispell.el (ispell-parse-output):
27675         * textmodes/nroff-mode.el (nroff-outline-level):
27676         * textmodes/reftex-cite.el (reftex-bib-sort-year)
27677         (reftex-bib-sort-year-reverse, reftex-format-citation):
27678         * textmodes/reftex-parse.el (reftex-init-section-numbers)
27679         (reftex-section-number):
27680         * textmodes/texinfmt.el (texinfo-paragraphindent):
27681         Replace `string-to-int' by `string-to-number'.
27683         * international/latexenc.el: Add page marker to force the "Local
27684         Variables:" string out of the last page.
27686 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
27688         * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
27689         tooltip-change-major-mode.
27690         (gud-tooltip-print-command): Remove case where gud-minor-mode
27691         is gdb ("--fullname").
27692         (gud-tooltip-tips): Turn GUD tooltips off for this case and
27693         explain to user.
27695 2005-05-16  Jay Belanger  <belanger@truman.edu>
27697         * calc/calc-store.el (calc-copy-special-constant): New function.
27699         * calc/calc-ext.el (calc-init-extensions): Add binding for
27700         `calc-copy-special-constant'.
27702         * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
27703         for the `calc-copy-special-constant' command.
27705 2005-05-16  Nick Roberts  <nickrob@snap.net.nz>
27707         * subr.el (left-fringe-p): New function.
27709         * progmodes/compile.el (compilation-setup): Set local value of
27710         overlay-arrow-string to "" always.
27711         (compilation-set-window): Left fringe then don't scroll.
27712         No left fringe then no arrow and scroll message to top.
27713         (compilation-context-lines): Adjust doc string accordingly.
27715 2005-05-16  Kim F. Storm  <storm@cua.dk>
27717         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
27718         (ido-magic-delete-char): New commands for C-f, C-b, C-d.
27719         (ido-wide-find-dir-or-delete-dir): New command for M-d.
27720         (ido-define-mode-map): Bind them.  Add C-x prefix to fallback commands.
27721         (ido-read-file-name): Handle commands with ido property value
27722         equal to find-file as reading a file name, to allow C-d to enter dired.
27723         (ibuffer-find-file): Add ido property with value find-file.
27725 2005-05-15  Kim F. Storm  <storm@cua.dk>
27727         * subr.el (open-network-stream-nowait): Remove.
27728         (open-network-stream-server): Remove.
27730 2005-05-15  Richard M. Stallman  <rms@gnu.org>
27732         * faces.el (describe-face): Output a definition link button.
27734         * help-mode.el (help-face-def): New button type.
27736         * emacs-lisp/copyright.el (copyright-fix-years):
27737         Match properly if the first year is 2-digit.
27738         Don't mess up the whitespace after the years by filling.
27740         * dired-aux.el (dired-mark-confirm):
27741         Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
27743         * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
27744         (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
27745         (dired-mark-pop-up): Handle FILES = (t FILE) specially.
27747         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
27748         Set font-lock-comment-start-skip.
27750         * font-lock.el (font-lock-comment-start-skip): New variable.
27751         (font-lock-comment-end-skip): New variable.
27752         (font-lock-fontify-syntactically-region): Use them if non-nil.
27754 2005-05-15  Jay Belanger  <belanger@truman.edu>
27756         * calc/calc-store.el (calc-store-value): Return a string rather
27757         than display it as a message.
27758         Use calc-var-name for variable name.
27759         (calc-store-into): Add the result of calc-store-value to message.
27760         (calc-copy-variable): Add a message.
27761         (calc-store-exchange): Improve error messages.
27762         (calc-store-binary, calc-store-map): Don't reset the values of
27763         special constants.
27765 2005-05-14  Luc Teirlinck  <teirllm@auburn.edu>
27767         * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
27768         manual to docstring.
27770         * files.el (hack-local-variables-confirm): Add STRING argument.
27771         Make the function handle non file visiting buffers correctly.
27772         (hack-local-variables-prop-line, hack-local-variables)
27773         (hack-one-local-variable): Use STRING arg of
27774         `hack-local-variables-confirm'.
27776 2005-05-14  Michael Albinus  <michael.albinus@gmx.de>
27778         Sync with Tramp 2.0.49.
27780         * net/tramp.el (tramp-handle-dired-call-process)
27781         (tramp-handle-insert-directory):`insert-buffer' cannot be used
27782         because the contents of the Tramp buffer is changed before
27783         insertion (`expand-file' and alike).
27784         (tramp-handle-insert-directory): If `localname' has an empty
27785         nondirectory name, it must not be quoted.
27786         (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local
27787         variable `tramp-chunksize'.  Change callees.
27788         (tramp-open-connection-setup-interactive-shell): Check remote host
27789         for buggy `send-process-string' implementation.
27790         Set `tramp-chunksize' if found.  Reported by Michael Kifer
27791         <kifer@cs.sunysb.edu> (and a lot of other people all the years).
27792         (tramp-handle-shell-command): `insert-buffer' cannot be used
27793         because the contents of the Tramp buffer is changed before
27794         insertion (`expand-file' and alike).  Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
27795         <frederic.bothamy@free.fr>.
27796         (tramp-set-auto-save): Actions should be done for Tramp file name
27797         handler only.  Ange-FTP has its own auto-save mechanism.
27798         Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
27799         (tramp-set-auto-save-file-modes): Set file modes of
27800         `buffer-auto-save-file-name' to ?\600 as fallback solution.
27801         Reported by Ferenc Wagner <wferi@tba.elte.hu>.
27802         (tramp-bug): Remove obsolete variable.
27803         (tramp-append-tramp-buffers): Rewrite partly.  More suitable check
27804         for presence of `mml-mode'.  Make it running for older Emacsen as well.
27806 2005-05-14  John Paul Wallington  <jpw@pobox.com>
27808         * ibuf-ext.el (define-ibuffer-filter filename):
27809         If `dired-directory' is a list, use its car.
27811 2005-05-14  Daniel Brockman  <daniel@brockman.se>  (tiny change)
27813         * ibuffer.el (define-ibuffer-column filename):
27814         If `dired-directory' is a list, use its car.
27816 2005-05-14  Richard M. Stallman  <rms@gnu.org>
27818         * subr.el (symbol-file): Doc fix.
27820         * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
27821         (byte-compile-form): Call byte-compile-nogroup-warn.
27822         (byte-compile-warning-types): Doc fix.
27824         * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
27826         * progmodes/cc-engine.el (c-literal-faces):
27827         Add font-lock-comment-delimiter-face.
27829         * net/net-utils.el (dig): Use with-no-warnings.
27831         * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
27832         (sc-recite-frame-alist, sc-default-cite-frame)
27833         (sc-default-uncite-frame, sc-default-recite-frame)
27834         (sc-attrib-selection-list, sc-rewrite-header-list):
27835         Mark as risky-local-variable.
27837         * international/ogonek.el (ogonek-jak, ogonek-how):
27838         Don't use beginning-of-buffer.
27840         * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
27842         * calendar/solar.el (solar-data-list): Move definition up.
27844         * dnd.el (dnd-protocol-alist): Add autoload.
27846         * progmodes/sh-script.el: Many doc usage fixes.
27847         (sh-indent-after-do): Change default to match common styles.
27849 2005-05-13  Luc Teirlinck  <teirllm@auburn.edu>
27851         * files.el (interpreter-mode-alist)
27852         (auto-mode-interpreter-regexp): Doc fixes.
27854 2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>
27856         * tmm.el (tmm-get-keymap): Include only active menus and menu items.
27858         * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
27860 2005-05-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
27862         * dired.el (dired-mode): make-variable-buffer-local =>
27863         make-local-variable.
27865 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
27867         * term/mac-win.el (mac-select-convert-to-string): Try coding
27868         systems in mac-script-code-coding-systems if specified one cannot
27869         encode string for `com.apple.traditional-mac-plain-text'.
27871 2005-05-13  Daniel Pfeiffer  <occitan@esperanto.org>
27873         * progmodes/make-mode.el (makefile-targets-face)
27874         (makefile-shell-face, makefile-makepp-perl-face): New faces.
27875         (makefile-dependency-regex): Fix it to not make the colon in
27876         $(var:a=b) special.
27877         (makefile-rule-action-regex): New regexp for highlighting embedded
27878         Shell strings.
27879         (makefile-macroassign-regex): Handle != for highlighting as
27880         embedded Shell strings.
27881         (makefile-var-use-regex): New const.
27882         (makefile-statements, makefile-automake-statements)
27883         (makefile-gmake-statements, makefile-makepp-statements)
27884         (makefile-bsdmake-statements): New consts.
27885         (makefile-make-font-lock-keywords): New function.
27886         (makefile-automake-font-lock-keywords)
27887         (makefile-gmake-font-lock-keywords)
27888         (makefile-makepp-font-lock-keywords)
27889         (makefile-bsdmake-font-lock-keywords): New consts.
27890         (makefile-mode-map): Add switchers between the various submodes.
27891         (makefile-mode): Document the availability of the variants.
27892         (makefile-automake-mode, makefile-gmake-mode)
27893         (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
27895         * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
27896         new variants of makefile-mode.
27898 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
27900         * font-lock.el (font-lock-comment-delimiter-face): Fix up
27901         the inheritance.
27903 2005-05-12  Luc Teirlinck  <teirllm@auburn.edu>
27905         * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
27906         (inferior-lisp-load-hook): Convert defcustoms back to defvars.
27908         * files.el (normal-mode): Extend the scope of the
27909         `enable-local-variables' binding to include the `set-auto-mode' call.
27910         (magic-mode-alist): Doc fix.
27912 2005-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
27914         * font-lock.el (font-lock-comment-delimiter-face): Inherit from
27915         font-lock-comment-face rather than copying its setting.
27917 2005-05-12  Andreas Schwab  <schwab@suse.de>
27919         * eshell/esh-mode.el (eshell-send-input): Doc fix.
27921 2005-05-12  Lute Kamstra  <lute@gnu.org>
27923         * emacs-lisp/generic.el (define-generic-mode): Don't generate a
27924         defcustom for the mode hook variable.  Delete the last argument.
27925         * generic-x.el: Fix callers of define-generic-mode.
27926         (generic-x-modes): Delete group.
27927         (show-tabs-tab-face, show-tabs-space-face): Put them in the
27928         generic-x customization group.
27930 2005-05-12  Kim F. Storm  <storm@cua.dk>
27932         * font-lock.el (font-lock-negation-char-face): Default to "off".
27934         * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
27935         font-lock-negation-char-face to ! in !=.
27937 2005-05-12  Masatake YAMATO  <jet@gyve.org>
27939         * add-log.el (find-change-log): Fix typos in the docstring
27940         of function.
27942 2005-05-11  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
27944         * international/latexenc.el (latexenc-find-file-coding-system):
27945         Avoid `re-search-forward' when looking for input encoding because
27946         of speed and safety.  Better regular expressions for recognizing
27947         input encoding.  Limit a search for TeX-master/tex-main-file to
27948         the local variable section.
27950 2005-05-11  Dan Nicolaescu  <dann@ics.uci.edu>
27952         * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
27953         syntax of $ to "'" (quote).
27955 2005-05-11  Reiner Steib  <Reiner.Steib@gmx.de>
27957         * dnd.el (dnd-protocol-alist): Improve custom type.
27959         * dired.el (dired-dnd-protocol-alist): New variable.
27960         (dired-mode): Use `dired-dnd-protocol-alist'.  Move call of
27961         `dired-mode-hook' to the end.
27963 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
27965         * font-lock.el (font-lock-fontify-syntactically-region): Don't use
27966         comment-end if comment-start-skip is not set.
27967         Obey the font-lock-comment-delimiter-face variables.
27969 2005-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
27971         * files.el (executable-find): Move from executable.el.  Use
27972         locate-file.
27973         * progmodes/executable.el (executable-find): Move to files.el.
27975         * font-lock.el (font-lock-fontify-keywords-region): Use a marker
27976         when trying to ensure forward progress.
27978 2005-05-11  Chong Yidong  <cyd@stupidchicken.com>
27980         * mouse-sel.el (mouse-sel-follow-link-p): New function.
27981         (mouse-select, mouse-select-internal, mouse-extend-internal):
27982         Use it to implement mouse-1-click-follows-link functionality.
27984 2005-05-11  Richard M. Stallman  <rms@gnu.org>
27986         * font-lock.el (font-lock-fontify-syntactically-region):
27987         Use font-lock-comment-delimiter-face for comment delimiters.
27989 2005-05-10  Jay Belanger  <belanger@truman.edu>
27991         * calc/calc-help.el (calc-m-prefix-help): Add mention of
27992         preserving embedded modes.
27994 2005-05-10  Richard M. Stallman  <rms@gnu.org>
27996         * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
27998         * progmodes/ada-mode.el (ada-adjust-case-skeleton):
27999         Move from ada-stmt.el.
28000         (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
28002         * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
28003         Move to ada-mode.el.
28004         (ada-stmt-mode-hook): Delete; do the work in ada-mode.
28006         * cus-edit.el (custom-file): Call file-chase-links.
28008         * files.el (read-directory-name): Fix previous change.
28009         (hack-local-variables-confirm): New function.
28010         (hack-local-variables-prop-line, hack-local-variables)
28011         (hack-one-local-variable): Use it.
28013 2005-05-10  Lute Kamstra  <lute@gnu.org>
28015         * font-lock.el (font-lock-keywords-alist)
28016         (font-lock-removed-keywords-alist): Clarify docstrings.
28018 2005-05-10  Nick Roberts  <nickrob@snap.net.nz>
28020         * progmodes/gdb-ui.el (gdb-macro-info): New variable.
28021         (gdb-source-info): Check for preprocessor info.
28022         (gdb-tooltip-print-1): New function.  Don't print tooltip if it is
28023         a macro for a function.
28024         (gdb-info-breakpoints-custom): Try to find file again if not already
28025         found (user might have used GDB dir command).
28026         (gdb-get-location): Update gdb-location-alist correctly for change
28027         to gdb-info-breakpoints-custom.
28029         * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
28030         (gud-tooltip-print-command): Add gdbmi case.
28031         (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
28032         preprocessor info.
28034 2005-05-09  Reiner Steib  <Reiner.Steib@gmx.de>
28036         * startup.el (fancy-splash-insert): Fix typo in doc string.
28038 2005-05-09  Juanma Barranquero  <lekktu@gmail.com>
28040         * obsolete/float.el (string-to-float):
28041         * obsolete/hilit19.el (hilit-add-pattern):
28042         * obsolete/rnews.el (news-parse-range, news-select-message)
28043         (news-get-pruned-list-of-files): Replace `string-to-int' by
28044         `string-to-number'.
28046         * obsolete/uncompress.el: Set `find-file-not-found-functions', not
28047         `find-file-not-found-hooks'; use `add-hook'.
28048         (uncompress-while-visiting): Set `write-file-functions', not
28049         `write-file-hooks'; use `add-hook'.
28051 2005-05-09  Kim F. Storm  <storm@cua.dk>
28053         * emulation/cua-base.el (cua-copy-region, cua-cut-region)
28054         (cua-paste): Handle clipboard action.
28055         (cua--init-keymaps): Remap clipboard-kill-region and
28056         clipboard-kill-ring-save.
28058 2005-05-08  Eli Zaretskii  <eliz@gnu.org>
28060         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
28061         Improve commentary.
28063         * simple.el (next-error-overlay-arrow-position): Revert the change
28064         made on 2005-04-30.
28066 2005-05-07  Jay Belanger  <belanger@truman.edu>
28068         * calc/calcsel2.el (calc-commute-left, calc-commute-right)
28069         (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
28070         `calc-sel-reselect'.
28072         * calc/calc-mode.el (calc-save-modes): Reset the modes list if
28073         Calc is in embedded mode.
28075 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
28077         * progmodes/compile.el (compilation-setup):
28078         Set overlay-arrow-string to an empty string on text terminals.
28080         * textmodes/ispell.el (ispell-program-name): Try looking for
28081         "aspell" along exec-path, and if found, use it as the default
28082         speller program.
28084 2005-05-07  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
28086         * international/mule.el (sgml-xml-auto-coding-function):
28087         Recognize encoding='FOO' in single quotes as well as in double quotes.
28089 2005-05-07  Johan Bockg\e,Ae\e(Brd  <bojohan@dd.chalmers.se>
28091         * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
28092         as well as `interactive', so that defmacro* would recognize
28093         `declare' forms.
28095 2005-05-07  Eli Zaretskii  <eliz@gnu.org>
28097         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
28098         Explain more about the LIGHTER arg's usage in the doc string.
28099         Add commentary to clarify what the code does.  Fix the regexp that
28100         strips whitespace from LIGHTER.  Quote LIGHTER before using it,
28101         since it could have characters special to regular expressions.
28103 2005-05-07  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
28105         * replace.el (occur-1): Bind inhibit-read-only so that
28106         erase-buffer doesn't barf on read-only text properties (likewise
28107         for add-text-properties in occur-engine).  Mark buffer as unmodified.
28108         (occur-engine): Don't set buffer-read-only here.
28110 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
28112         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
28113         list-buffers-directory.  This caused the *cvs-commit* buffer to be
28114         sometimes mistakenly reused as a *cvs* buffer.
28116 2005-05-07  Nick Roberts  <nickrob@snap.net.nz>
28118         * tooltip.el: Move code for GUD tooltips into gud.el.
28119         (require): CL no longer needed to compile case.
28120         (tooltip-mode): Do not toggle functions for GUD tooltips.
28121         (tooltip-gud-tips-p): Remove.  Replace with minor mode
28122         gud-tooltip-mode in gud.el.
28123         (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
28124         (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
28125         tooltip-gud prefix with gud-tooltip and obsolete.
28126         (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
28127         (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
28128         (tooltip-mouse-motion): Mouse movement functions/variable.
28129         Rename in gud.el by adding gud prefix.
28130         (tooltip-gud-original-filter, tooltip-gud-dereference)
28131         (tooltip-gud-event, tooltip-toggle-gud-tips)
28132         (tooltip-gud-process-output, tooltip-gud-print-command)
28133         (tooltip-gud-tips): GUD tooltip functions/variables.  Rename in
28134         gud.el by replacing tooltip-gud prefix with gud-tooltip.
28135         (gdb-tooltip-print): Move to gdb-ui.el.
28137         * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
28138         (require): CL needed to compile case.
28139         (gud-tooltip-mode): Use to toggle GUD tooltips instead of
28140         tooltip-gud-tips-p.  Make it a minor-mode.
28141         (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
28142         (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
28143         (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
28144         (gud-tooltip-change-major-mode)
28145         (gud-tooltip-activate-mouse-motions-if-enabled)
28146         (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
28147         (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
28148         (gud-tooltip-original-filter, gud-tooltip-dereference)
28149         (gud-tooltip-event, tooltip-toggle-gud-tips)
28150         (gud-tooltip-process-output, gud-tooltip-print-command)
28151         (gud-tooltip-tips): Move from tooltip.el.
28153         * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
28154         (gdb-cpp-define-alist-flags): Doc fix.
28155         (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
28156         gud-tooltip-mode is t.
28158 2005-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
28160         * net/goto-addr.el (goto-address-fontify): Make sure the overlays
28161         evaporate if their text is deleted.
28162         (goto-address-at-point): Make it work as a mouse binding as well.
28163         (goto-address-at-mouse): Obsolete it.  Update users.
28165 2005-05-06  Glenn Morris  <gmorris@ast.cam.ac.uk>
28167         * calendar/appt.el (top-level): No longer activate on load.
28169 2005-05-06  Juanma Barranquero  <lekktu@gmail.com>
28171         * calendar/cal-bahai.el (mark-bahai-diary-entries):
28172         * net/webjump.el (webjump):
28173         * progmodes/idlw-help.el (idlwave-do-context-help1)
28174         (idlwave-highlight-linked-completions):
28175         * textmodes/po.el (po-find-file-coding-system-guts):
28176         Replace `assoc-ignore-case' by `assoc-string'.
28178 2005-05-06  Eli Zaretskii  <eliz@gnu.org>
28180         * files.el (locate-file): Doc fix.
28182         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
28183         Remove the redundant test for ms-dos.
28185         * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
28186         look for the preprocessor with exec-suffixes.  If not found in
28187         standard places, look in exec-path.  Remove most of the tests that
28188         used system-type.
28190         * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
28192         * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
28194         * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
28195         file-name clash with jka-compr.el on 8+3 filesystems.
28197 2005-05-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28199         * term/mac-win.el: Don't define or bind scroll bar functions if
28200         x-toolkit-scroll-bars is t.
28201         (x-select-text, x-get-selection-value): Clear
28202         x-last-selected-text-clipboard if x-select-enable-clipboard is
28203         nil.
28204         (PRIMARY): Put mac-scrap-name property.
28205         (mac-select-convert-to-file-url): New function.
28206         (public.file-url): New selection target type.  Add to
28207         selection-converter-alist.
28208         (x-get-selection, x-selection-value): Handle it.
28209         (x-cut-buffer-or-selection-value): New alias.
28211 2005-05-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
28213         * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
28214         entry to avoid calling bibtex-find-entry with arg global
28215         being t.  Remove arg key.
28216         (bibtex-summary-function, bibtex-complete-crossref-cleanup)
28217         (bibtex-copy-summary-as-kill): Change accordingly.
28219 2005-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
28221         * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
28222         (org-agenda-date-later): Use with-current-buffer.
28224 2005-05-05  Luc Teirlinck  <teirllm@auburn.edu>
28226         * emacs-lisp/byte-run.el (define-obsolete-function-alias)
28227         (define-obsolete-variable-alias): Doc Fixes.
28229 2005-05-06  Kim F. Storm  <storm@cua.dk>
28231         * simple.el (line-move-1): Fix 2005-04-26 change.  Must still use
28232         vertical-motion when selective-display is active.
28234         * ido.el (ido-setup-hook): New hook.
28235         (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
28236         (ido-input-stack): New var.
28237         (ido-define-mode-map): Bind M-b to ido-push-dir.  Move old
28238         ido-next-work-file binding to M-O.
28239         Bind M-f to ido-wide-find-file-or-pop-dir.
28240         (ido-define-mode-map): Don't run ido-define-mode-map-hook.
28241         (ido-read-internal): Run ido-setup-hook.
28242         Catch quit in read-file-name and read-string to cancel edit.
28243         Handle new push, pop, and pop-all exit codes (for M-b/M-f).
28244         Automatically pop-all when completing a directory name (RET).
28245         (ido-file-internal): Add with-no-warnings around ffap and dired code.
28246         (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
28247         (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
28248         (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
28249         New functions for M-b/M-f to move among the directory components.
28250         (ido-make-merged-file-list): Catch quit to cancel merge.
28251         (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
28252         (ido-completion-help): No warnings for ido-completion-buffer-full.
28254 2005-05-05  Daniel Pfeiffer  <occitan@esperanto.org>
28256         * font-lock.el (font-lock-negation-char-face): New face and variable.
28257         * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
28258         * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
28259         * progmodes/cperl-mode.el (cperl-init-faces): Use it.
28260         * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
28262 2005-05-05  Juanma Barranquero  <lekktu@gmail.com>
28264         * emacs-lisp/byte-run.el (define-obsolete-function-alias):
28265         Fix typo in docstring.
28267         * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
28268         (ebrowse-print-statistics-line)
28269         (ebrowse-electric-position-mode-hook): Fix typo in docstring.
28271         * term/w32-win.el (image-library-alist): Add additional name for
28272         Xpm library.
28274 2005-05-05  Nick Roberts  <nickrob@snap.net.nz>
28276         * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
28277         use gcc instead of cpp.
28279         * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
28280         (gdb-create-define-alist): Use it.
28281         (gdb-cpp-define-alist-program): Update for MS-DOS.
28283 2005-05-04  Nick Roberts  <nickrob@snap.net.nz>
28285         * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
28287 2005-05-04  Richard M. Stallman  <rms@gnu.org>
28289         * help.el (describe-key): No error when UNTRANSLATED is nil.
28291         * simple.el (line-move-1): Fix previous change to signal errors
28292         appropriately.
28294 2005-05-03  Ulf Jasper  <ulf.jasper@web.de>
28296         * calendar/icalendar.el (icalendar-version): Now at 0.12.
28297         (icalendar-duration-correction): Remove.
28298         (icalendar--get-event-properties): Split result at commas.
28299         (icalendar--decode-isoduration): New optional argument
28300         DURATION-CORRECTION.
28301         (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
28302         (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
28303         (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
28304         (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
28305         (icalendar--convert-anniversary-to-ical): New functions, extracted
28306         from icalendar-export-region, with bug fixes.
28307         (icalendar-export-region): Use the above functions.
28308         (icalendar-import-buffer): Check before saving diary file.
28309         (icalendar--convert-recurring-to-diary)
28310         (icalendar--convert-non-recurring-all-day-to-diary)
28311         (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
28312         extracted from icalendar--convert-ical-to-diary, with bug fixes.
28313         (icalendar--convert-ical-to-diary): Use the above functions.
28315 2005-05-03  Nick Roberts  <nickrob@snap.net.nz>
28317         * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
28318         Remove these recent additions.
28319         (c-mode): Restore to before 2005-04-28.
28321         * progmodes/cc-vars.el (cc-define-list-program): Remove this
28322         recent addition.
28324         * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
28325         (gdb-define-alist): New variables.
28326         (gdb-create-define-alist): New function.
28327         (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
28328         (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
28329         with string-to-number.
28330         (gdb-reset): Kill gdb-define-alist.  Move assignments outside loop.
28332         * progmodes/gud.el: Replace string-to-int with string-to-number.
28333         (gud-find-file): Handle gdb-define-alist.
28335         * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
28337 2005-05-02  Jay Belanger  <belanger@truman.edu>
28339         * calc/calc-aent.el (math-read-token):
28340         * calc/calc-bin.el (calc-word-size):
28341         * calc/calc-ext.el (calc-read-number-fancy):
28342         * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
28343         (math-parse-date, math-parse-standard-date, calcFunc-tzone):
28344         * calc/calc-frac.el (calc-over-notation):
28345         * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
28346         (calc-graph-num-points, calc-graph-init):
28347         * calc/calc-prog.el (calc-read-parse-table-part)
28348         (calc-edit-macro-repeats):
28349         * calc/calc-yank.el (calc-do-grab-rectangle):
28350         * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
28351         Replace `string-to-int' by `string-to-number'.
28353 2005-05-02  Kim F. Storm  <storm@cua.dk>
28355         * kmacro.el: Use executing-kbd-macro-index variable.
28357 2005-05-02  Thien-Thi Nguyen  <ttn@gnu.org>
28359         * net/rlogin.el (rlogin-parse-words): Delete func.
28360         (rlogin): Use split-string, not rlogin-parse-words.
28361         Also, if there are option-like elements in the parsed args,
28362         take the host to be the first arg immediately following them.
28363         Suggested by Michael Mauger.
28365 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
28367         * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
28369 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
28371         * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
28372         (cc-mode-cpp-program): Rename to cc-define-list-program and
28373         move to cc-vars.el.
28375         * progmodes/cc-vars.el (cc-define-list-program):
28376         Change to "gcc -E -dM -".  Make customizable.
28378 2005-05-02  Kim F. Storm  <storm@cua.dk>
28380         * emulation/cua-base.el: Fix check for CUA-mode if no init file.
28382 2005-05-02  Nick Roberts  <nickrob@snap.net.nz>
28384         * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
28386         * international/mule-util.el (truncate-string): Remove alias and
28387         obsolete declaration.
28389         * international/mule-cmds.el (update-iso-coding-systems):
28390         Remove alias and obsolete declaration.
28392         * international/mule.el (coding-system-parent): Remove alias and
28393         obsolete declaration.
28395         * subr.el (define-function, sref): Remove aliases and obsolete
28396         declarations.
28397         (chars-in-region): Remove obsolete declaration.
28399 2005-05-01  Richard M. Stallman  <rms@gnu.org>
28401         * info.el (Info-mode): Set widen-automatically to nil, locally.
28403         * simple.el (widen-automatically): New variable.
28404         (pop-global-mark): Obey widen-automatically.
28406 2005-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
28408         * term/xterm.el (function-key-map): Call substitute-key-definition
28409         before the keymap size is increased by a lot of define-key calls.
28411 2005-05-01  Richard M. Stallman  <rms@gnu.org>
28413         * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
28414         Rename ARG to ELEMENT.  Doc fix.
28416 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
28418         * allout.el (allout-exposure): Remove macro and obsolete declaration.
28419         Remove references to allout-exposure/change to allout-new-exposure.
28421         * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
28422         bytecode symbols.
28424         * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
28425         (compiled-function-p, focus-frame, unfocus-frame):
28426         Remove aliases and obsolete declarations.
28427         Back out inadvertent changes from previous commit.
28429 2005-05-01  Luc Teirlinck  <teirllm@auburn.edu>
28431         * files.el (require-final-newline): Make Custom tags consistent
28432         with mode-require-final-newline.
28433         (mode-require-final-newline): Doc fix.
28435 2005-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
28437         * international/latexenc.el (latexenc-find-file-coding-system):
28438         Fix regular expressions.
28440 2005-05-01  David Kastrup  <dak@gnu.org>
28442         * international/latexenc.el (latexenc-find-file-coding-system):
28443         Fix regular expressions.
28445 2005-05-01  Nick Roberts  <nickrob@snap.net.nz>
28447         * subr.el (string-to-int): Make obsolete.
28449 2005-04-30  Richard M. Stallman  <rms@gnu.org>
28451         * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
28453         * loadup.el: load jka-comp-hook.
28455         * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
28456         (jka-compr-handler): Add autoload.  `put' calls moved
28457         to jka-comp-hook.el.
28458         (compression, jka-compr): defgroups moved to jka-comp-hook.el.
28459         (jka-compr-inhibit): Autoload.
28461         * jka-comp-hook.el: New file.
28462         Enable the mode by default.
28464         * files.el (backup-buffer-copy): Use copy-file instead
28465         of write-region, and put back the 'excl.
28467 2005-04-30  Chong Yidong  <cyd@stupidchicken.com>
28469         * progmodes/flymake.el (flymake-split-string)
28470         (flymake-split-string, flymake-log, flymake-pid-to-names)
28471         (flymake-reg-names, flymake-get-source-buffer-name)
28472         (flymake-unreg-names, flymake-add-line-err-info)
28473         (flymake-add-err-info): Clarify docstrings.
28474         (flymake-popup-menu, flymake-make-emacs-menu)
28475         (flymake-make-xemacs-menu): Add docstrings.
28476         (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
28477         Set variables directly throughout.
28479 2005-04-30  Nick Roberts  <nickrob@snap.net.nz>
28481         * progmodes/cc-mode.el (cc-create-define-alist): Check that file
28482         exists.  Initialize cc-define-alist.
28483         (c-mode): Add cc-create-define-alist locally to after-save-hook.
28484         If there is no file (Macroexpansion) don't create an alist.
28486 2005-04-29  Sam Steingold  <sds@gnu.org>
28488         * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
28489         (cc-create-define-alist): Use it instead of the hard-coded string.
28491 2005-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
28493         * international/mule-conf.el (file-coding-system-alist): Fix regexp
28494         for latexenc.
28496 2005-04-29  Lute Kamstra  <lute@gnu.org>
28498         * emacs-lisp/generic.el: Improve commentary section.
28499         (define-generic-mode): Improve docstring.
28501 2005-04-29  Carsten Dominik  <dominik@science.uva.nl>
28503         * textmodes/org.el (many places): Change to quiet the byte compiler.
28504         (org-prefix-format-compiled): New variable.
28505         (org-compile-prefix-format): New function.
28506         (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
28507         (org-agenda-prefix-format, org-timeline-prefix-format): New options.
28508         (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
28509         (org-get-entries-from-diary): Use `org-get-time-of-day' for
28510         consistency with entries from `org-mode' files.
28511         (org-get-time-of-day): Fix bug with partial matches early in a line.
28512         (org-non-link-chars): New constant.
28513         (org-link-regexp): Respect `org-non-link-chars'.
28514         (org-agenda-day-view): Remove command.
28515         (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
28516         (org-follow-bbdb-link, org-store-link): Search also company field.
28517         (org-highlight-overlay): New variable.
28518         (org-highlight, org-unhighlight): New functions.
28519         (org-agenda-mode): Add pre-command-hook to remove highlight.
28520         (org-evaluate-time-range): Behavior depends upon whether time stamp
28521         contains a time or not.
28522         (org-show-subtree, org-show-entry): New functions.
28523         (org-agenda-cleanup-fancy-diary): Remove empty lines.
28525 2005-04-28  Luc Teirlinck  <teirllm@auburn.edu>
28527         * comint.el (comint-output-filter-functions): Add autoload cookie.
28529 2005-04-28  Kim F. Storm  <storm@cua.dk>
28531         * ido.el (ido-everywhere): Fix last change.
28533 2005-04-28  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>
28535         * international/latexenc.el: New file.
28536         * international/mule-conf.el (file-coding-system-alist): For .tex,
28537         .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
28539 2005-04-28  Lute Kamstra  <lute@gnu.org>
28541         * font-lock.el (font-lock-add-keywords)
28542         (font-lock-remove-keywords): Clarify docstring.
28543         (font-lock-keywords-alist, font-lock-removed-keywords-alist):
28544         Don't start docstrings with a `*'.
28545         (font-lock-update-removed-keyword-alist): Give it a docstring.
28547         * generic-x.el: Update commentary section.
28548         Only require font-lock when compiling.
28549         Define all modes conditionally.
28550         Place all generic modes in the generic-x-modes customization group.
28551         (generic-x-modes): New customization group.
28552         (generic-default-modes, generic-mswindows-modes)
28553         (generic-unix-modes, generic-other-modes): New constants.
28554         (generic-define-mswindows-modes, generic-define-unix-modes):
28555         Update docstrings.  Make them obsolete.
28556         (generic-extras-enable-list): New default value.  Update docstring.
28557         Improve :type.  Change :set function.
28558         (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
28559         Fix docstring.
28561         * emacs-lisp/generic.el (generic-mode-internal):
28562         Simplify font-lock-defaults.
28563         (define-generic-mode): Fix docstring.
28565 2005-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
28567         * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
28568         font-lock-face property to highlight matches.
28570 2005-04-28  Nick Roberts  <nickrob@snap.net.nz>
28572         * progmodes/cc-mode.el (cc-create-define-alist): New function.
28573         (cc-define-alist): New variable.
28574         (c-mode): Make it local and initialize it.
28576         * progmodes/gdb-ui.el (gdb-active-process): New variable.
28577         (gdb-exited): New function.
28578         (gdb-annotation-rules): Use it.
28579         (gdb-starting): Set gdb-active-process to t.
28580         (gdb-stopping): Amend doc string.
28581         (gdb-reset): Set gdb-active-process to nil.
28583         * tooltip.el (tooltip-gud-tips): Show the associated #define
28584         directives when a C program under GDB is not executing.
28586 2005-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
28588         * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
28589         font-lock-fontify-syntactic-keywords.
28591         * font-lock.el (font-lock-default-fontify-region): Don't force
28592         parse-sexp-lookup-properties to nil.
28594 2005-04-27  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
28596         * man.el (man-mode-syntax-table): Set up `:' to have
28597         word-constituent syntax.
28599 2005-04-27  Lute Kamstra  <lute@gnu.org>
28601         * novice.el (disable-command): Don't add spurious newlines to the
28602         init file.  Reported by Dan Jacobson <jidanni@jidanni.org>.
28604 2005-04-26  Jay Belanger  <belanger@truman.edu>
28606         * calc/calc-yank.el (calc-edit-finish): Make sure there is more
28607         than one window before deleting window.
28609 2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>
28611         * shell.el (shell-prompt-pattern): Doc fix.
28612         (shell-mode): Set paragraph-separate buffer locally to "\\'".
28614         * comint.el (comint-prompt-regexp, comint-get-old-input)
28615         (comint-use-prompt-regexp)
28616         (comint-use-prompt-regexp-instead-of-fields)
28617         (comint-replace-by-expanded-history, comint-send-input)
28618         (comint-output-filter, comint-get-old-input-default)
28619         (comint-line-beginning-position, comint-bol, comint-show-output)
28620         (comint-backward-matching-input, comint-forward-matching-input)
28621         (comint-next-prompt, comint-previous-prompt):
28622         Rename `comint-use-prompt-regexp-instead-of-fields' to
28623         `comint-use-prompt-regexp'.  Keep old name as alias and declare
28624         obsolete.
28625         (comint-use-prompt-regexp): Shorten first line of doc string.
28627         * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
28628         Set paragraph-separate buffer locally to "\\'".
28630         * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
28631         Adapt to above name change.
28633         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
28634         (smbclient-prompt-regexp): Ditto.
28636         * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
28638 2005-04-27  Nick Roberts  <nickrob@snap.net.nz>
28640         * progmodes/gdb-ui.el (gdb-location-alist): Rename from
28641         gdb-location-list.
28642         Break lines that are over 80 characters wide.
28644 2005-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
28646         * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
28647         New fun and var, to preserve compatibility.
28649         * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
28651 2005-04-26  Dominique de Waleffe  <ddw@missioncriticalit.com>  (tiny change)
28653         * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
28654         name to file-newer-than-file-p.
28656 2005-04-26  Richard M. Stallman  <rms@gnu.org>
28658         * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
28660         * progmodes/python.el (python-mode):
28661         Use new name eldoc-documentation-function.
28663         * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
28665         * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
28666         (eldoc-documentation-function):
28667         Rename from eldoc-print-current-symbol-info-function.  Calls changed.
28669 2005-04-26  Nick Roberts  <nickrob@snap.net.nz>
28671         * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
28673 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
28675         * term/xterm.el (function-key-map): Fix strings for
28676         {C,S,A,C-S}-f[1-4].  Use substitute-key-definition to bind
28677         {C,S,A,C-S}-{f1-f12}.
28679 2005-04-26  Kenichi Handa  <handa@m17n.org>
28681         * international/mule-cmds.el (select-safe-coding-system):
28682         Fix previous change.
28684 2005-04-26  Lute Kamstra  <lute@gnu.org>
28686         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
28688         * font-lock.el (font-lock-fontify-region-function): Fix docstring.
28689         (font-lock-comment-delimiter-face): Ditto.
28691         * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
28693 2005-04-25  Jay Belanger  <belanger@truman.edu>
28695         * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
28696         to t while inserting information; use help-mode.
28698 2005-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
28700         * term.el (ansi-term-color-vector): Use the xterm colors.
28701         (term-raw-map): Don't add mappings for \eO and \e[.  Map deletechar.
28703 2005-04-25  Lute Kamstra  <lute@gnu.org>
28705         * font-core.el (font-lock-defaults): Fix docstring.
28707         * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
28709 2005-04-25  Kenichi Handa  <handa@m17n.org>
28711         * international/mule-cmds.el (select-safe-coding-system):
28712         Don't check consistency with coding: spec, etc if raw-text or
28713         no-conversion was found to be safe.
28715 2005-04-24  Richard M. Stallman  <rms@gnu.org>
28717         * mail/sendmail.el (mail-font-lock-keywords): Match any number of
28718         citation markers at start of each line.
28720         * mail/rmail.el (rmail-font-lock-keywords): Match any number of
28721         citation markers at start of each line.
28723         * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
28725         * files.el (mode-require-final-newline): Fix previous change.
28726         (require-final-newline): Fix type label.
28728 2005-04-24  Glenn Morris  <gmorris@ast.cam.ac.uk>
28730         * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
28731         statement in buffer (broken by 2004-11-24 change).
28733 2005-04-24  Kim F. Storm  <storm@cua.dk>
28735         * ido.el (ido-everywhere): Save and restore old read-buffer-function
28736         and read-file-name-function values.  Don't overwrite existing
28737         non-nil values if ido-mode is enabled without ido-everywhere.
28739 2005-04-24  Luc Teirlinck  <teirllm@auburn.edu>
28741         * files.el (mode-require-final-newline): Minor doc fix.
28743 2005-04-24  Eli Zaretskii  <eliz@gnu.org>
28745         * subr.el (syntax-after): Doc fix.
28746         (syntax-class): If argument is nil, return nil.  Mask off upper 16
28747         bits, not 8 bits.
28749         * files.el (mode-require-final-newline): Doc fix.
28750         (backup-buffer-copy): Fix last change.
28752 2005-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28754         * term/mac-win.el: Require select.  Set selection-coding-system to
28755         mac-system-coding-system.  Call menu-bar-enable-clipboard.
28756         (x-last-selected-text-clipboard, x-last-selected-text-primary)
28757         (x-select-enable-clipboard): New variables.
28758         (x-select-text, x-get-selection, x-selection-value)
28759         (x-get-selection-value, mac-select-convert-to-string)
28760         (mac-services-open-file, mac-services-open-selection)
28761         (mac-services-insert-text): New functions.
28762         (CLIPBOARD, FIND): Put mac-scrap-name property.
28763         (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
28764         (public.tiff): Put mac-ostype property.
28765         (selection-converter-alist): Add entries for them.
28766         (mac-application-menu-map): New keymap.
28767         (interprogram-cut-function, interprogram-paste-function): Set to
28768         x-select-text and x-get-selection-value, respectively.
28769         (split-window-keep-point): Set to t.
28771 2005-04-23  Richard M. Stallman  <rms@gnu.org>
28773         * files.el (read-directory-name): Always pass non-nil
28774         DEFAULT-FILENAME arg to read-file-name.
28775         (backup-buffer-copy, basic-save-buffer-2): Take care against
28776         writing thru an unexpected existing symlink.
28777         (revert-buffer): In indirect buffer, revert the base buffer.
28778         (magic-mode-alist): Doc fix.
28779         (buffer-stale-function): Doc fix.
28780         (minibuffer-with-setup-hook): Avoid warning.
28781         (mode-require-final-newline): Doc and custom fix.
28783         * follow.el (follow-end-of-buffer): Use with-no-warnings.
28785         * font-lock.el (font-lock-comment-face): On terminals with few colors,
28786         use the default appearance.
28787         (font-lock-comment-delimiter-face): New face, new variable.
28789         * imenu.el (imenu--generic-function): The official position of a
28790         definition is the start of the line that BEG is in.
28792         * midnight.el (midnight-timer): Move defvar up.
28794         * mouse.el (mouse-drag-region-1): Delete some debugging code.
28796         * saveplace.el (save-place-to-alist): Use with-no-warnings.
28798         * startup.el (command-line): Use with-no-warnings.
28800         * window.el (window-size-fixed): New defvar.
28802         * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
28804         * mail/rmail.el (rmail-font-lock-keywords):
28805         Use font-lock-comment-delimiter-face.
28807         * mail/sendmail.el (mail-font-lock-keywords):
28808         Use font-lock-comment-delimiter-face.
28810         * progmodes/compile.el (next-error-highlight-timer): New defvar.
28812 2005-04-23  SAITO Takuya  <tabmore@rivo.mediatti.net>  (tiny change)
28814         * progmodes/compile.el (compilation-mode-font-lock-keywords):
28815         Specify t for LAXMATCH when matching directories.
28816         Save match data around compilation-compat-error-properties form.
28818 2005-04-23  David Kastrup  <dak@gnu.org>
28820         * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
28821         Mention that the autoloaded aliases should be kept for AUCTeX.
28823 2005-04-23  Andreas Schwab  <schwab@suse.de>
28825         * isearch.el (isearch-forward): Doc fix.
28827 2005-04-23  Eli Zaretskii  <eliz@gnu.org>
28829         * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
28830         (jit-lock-stealth-nice): Change default value to 0.5.
28832 2005-04-23  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
28834         * abbrev.el (write-abbrev-file): Write table entries in
28835         alphabetical order by table name.
28837 2005-04-22  Kim F. Storm  <storm@cua.dk>
28839         * ido.el (ido-read-internal): Fix `list' completion.
28841 2005-04-22  Kenichi Handa  <handa@m17n.org>
28843         * recentf.el (recentf-save-file-coding-system): New variable.
28844         (recentf-save-list): Encode the file by
28845         recentf-save-file-coding-system and add coding: tag.
28847 2005-04-22  Nick Roberts  <nickrob@snap.net.nz>
28849         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
28851 2005-04-21  Lute Kamstra  <lute@gnu.org>
28853         * loadhist.el (unload-feature): Don't remove a function from hooks
28854         if it is about to be restored to an autoload .  Remove functions
28855         that will become unbound from auto-mode-alist.  Simplify the code.
28857         * subr.el (assq-delete-all): New implementation that is linear,
28858         not quadratic.  Suggested by David Kastrup <dak@gnu.org>.
28859         (rassq-delete-all): New function.
28861         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
28862         Add size-indication-mode.
28864 2005-04-21  Kenichi Handa  <handa@m17n.org>
28866         * international/mule-cmds.el: Add autoload for widget-value in
28867         eval-when-compile.
28869 2005-04-21  Nick Roberts  <nickrob@snap.net.nz>
28871         * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
28872         Add tooltip-mode.
28874         * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
28876 2005-04-20  Luc Teirlinck  <teirllm@auburn.edu>
28878         * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
28879         (inferior-lisp-filter-regexp, inferior-lisp-program)
28880         (inferior-lisp-load-command, inferior-lisp-prompt)
28881         (inferior-lisp-mode-hook, lisp-source-modes)
28882         (inferior-lisp-load-hook): defvar->defcustom.
28883         (inferior-lisp-program, inferior-lisp-prompt)
28884         (inferior-lisp-load-hook): Doc fixes.
28885         (inferior-lisp-install-letter-bindings): Small change in
28886         introductory comment.
28888 2005-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
28890         * vc.el (vc-annotate-color-map): Change some colors so that text
28891         using them as foreground is readable on both white and black
28892         backgrounds.
28894 2005-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
28896         * international/mule-conf.el (translation-table-for-input):
28897         Remove redundant declaration.
28899 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
28901         * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
28903         * tooltip.el (tooltip-gud-tips-p): Expand documentation.
28904         (tooltip-toggle-gud-tips): New function.
28906 2005-04-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28908         * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
28909         right angle brackets.
28911 2005-04-20  Nick Roberts  <nickrob@snap.net.nz>
28913         * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
28915 2005-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
28917         * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
28918         Remove.  Update callers to use expand-file-name instead.
28920         * subr.el (syntax-class): New function.
28922         * simple.el (blink-matching-open): Use it.
28924         * paren.el (show-paren-function): Use it to recognize parens that are
28925         also used in 2-char comment markers.
28927 2005-04-19  Lute Kamstra  <lute@gnu.org>
28929         * loadhist.el (unload-feature): Update for new format of
28930         load-history.  Simplify the code.
28932 2005-04-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28934         * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
28935         (mac-add-charset-info): New function.  Initialize variable
28936         mac-charset-info-alist using it.
28937         (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
28938         for translation.
28939         (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
28940         (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
28941         (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
28942         New CCL programs.
28944 2005-04-19  Kim F. Storm  <storm@cua.dk>
28946         * simple.el (next-buffer, prev-buffer, next-error)
28947         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
28948         (clone-indirect-buffer-other-window): Move bindings to bindings.el.
28950         * bindings.el (next-buffer, prev-buffer, next-error)
28951         (scroll-other-window, keyboard-quit, keyboard-escape-quit)
28952         (clone-indirect-buffer-other-window): Move bindings from simple.el.
28953         (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
28954         (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
28956 2005-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
28958         * isearch.el (isearch-edit-string): Make the search-ring available for
28959         minibuffer history commands.
28960         (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
28961         the default history commands now work just as well.
28962         (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
28964 2005-04-18  Kim F. Storm  <storm@cua.dk>
28966         * emulation/cua-base.el (cua--pre-command-handler): Add more
28967         elaborate check for shift modifier on non-window systems.
28969 2005-04-18  Lars Hansen  <larsh@math.ku.dk>
28971         * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
28973 2005-04-18  Kim F. Storm  <storm@cua.dk>
28975         * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
28976         and make it optional.  Don't test tooltip-gud-echo-area here.
28977         (tooltip-gud-process-output, gdb-tooltip-print):
28978         Pass tooltip-gud-echo-area to tooltip-show.
28979         (tooltip-help-tips): Remove second optional arg to tooltip-show.
28981 2005-04-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
28983         * tooltip.el (tooltip-mode): `emacs-quick-startup' and
28984         `display-graphic-p' may not be bound yet.
28986 2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>
28988         * startup.el (command-line): No longer enable Xterm Mouse mode by
28989         default in terminals compatible with xterm.
28991         * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
28993 2005-04-18  Nick Roberts  <nickrob@snap.net.nz>
28995         * tooltip.el (tooltip-gud-echo-area): Rename from
28996         tooltip-use-echo-area.
28997         (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
28998         (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
28999         area independently of where help tooltips are displayed.
29001 2005-04-17  David Kastrup  <dak@gnu.org>
29003         * cus-theme.el (custom-theme-write-variables): Quote variables
29004         where necessary.
29006 2005-04-17  Richard M. Stallman  <rms@gnu.org>
29008         * simple.el (yank-excluded-properties): Add follow-link to value.
29010         * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
29012         * startup.el (fancy-splash-max-time): Just 30 seconds.
29013         (fancy-splash-delay): Just 7.
29014         (fancy-splash-screens): No time limit other than fancy-splash-max-time.
29016         * loadhist.el (unload-feature): Update for new format of load-history.
29017         Simplify the code.
29019         * mail/rmail.el (rmail-ignored-headers): Ignore more headers
29020         (rmail-font-lock-keywords): Don't fontify the text of a citation.
29022         * mail/sendmail.el (mail-font-lock-keywords):
29023         Don't fontify subject text.
29024         Don't fontify the text of a citation.
29026 2005-04-17  Mark H. Weaver  <mhw@netris.org>  (tiny change)
29028         * comint.el (comint-output-filter): Run comint-output-filter-functions
29029         with point where the user had it.
29031 2005-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
29033         * international/ucs-tables.el (ucs-set-table-for-input):
29034         Disable when using unify-on-decoding.
29036 2005-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
29038         * emulation/cua-base.el (cua-global-mark-face): Add special case
29039         for displays supporting a high number of colors.
29041 2005-04-16  Matt Hodges  <MPHodges@member.fsf.org>  (tiny change)
29043         * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
29045 2005-04-16  Chong Yidong  <cyd@stupidchicken.com>
29047         * filesets.el (filesets-add-buffer): If user supplies a name of a
29048         non-existing fileset, create a new fileset.
29050 2005-04-16  Carsten Dominik  <dominik@science.uva.nl>
29052         * textmodes/org.el (org-up-heading-all): Fix bug with
29053         `outline-up-heading-all'.
29055 2005-04-16  Andreas Schwab  <schwab@suse.de>
29057         * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
29058         /etc/permissions.d/* and /etc/aliases.d/*.
29060 2005-04-16  Kenichi Handa  <handa@m17n.org>
29062         * international/code-pages.el (cp-make-coding-system):
29063         Set `translation-table-for-input' property value to the symbol
29064         ucs-mule-to-mule-unicode, not to that value.
29065         (pt154): Escape guillemet by `\'.
29067 2005-04-15  Luc Teirlinck  <teirllm@auburn.edu>
29069         * loadup.el: Load tooltip if x-show-tip is fboundp.
29071         * startup.el (command-line): Add comment.
29073         * tooltip.el (tooltip-mode): Specify correct standard value for
29074         Custom in init-value.
29076 2005-04-15  Nick Roberts  <nickrob@snap.net.nz>
29078         * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
29079         possible.
29081 2005-04-15  Carsten Dominik  <dominik@science.uva.nl>
29083         * textmodes/org.el (org-agenda-date-prompt): Rename from
29084         `org-agenda-date-today'.
29085         (org-evaluate-time-range): Insert at point instead of directly
29086         after time range.
29087         (org-first-headline-recenter, org-subtree-end-visible-p)
29088         (org-optimize-window-after-visibility-change): New functions
29089         (org-agenda-post-command-hook): Don't allow point at end of line,
29090         to make sure it always hits the text properties.
29091         (org-agenda-next-date-line, org-agenda-previous-date-line):
29092         New commands.
29093         (org-set-regexps-and-options): Category may contain white space.
29094         (org-agenda-get-deadlines, org-agenda-get-scheduled):
29095         Improve marker positions.
29096         (org-agenda-new-marker): Argument POS made optional.
29097         (org-agenda-get-timestamps): Deadlines which are done are listed
29098         in org-done-face now.
29099         (org-agenda-get-todos, org-agenda-get-timestamps)
29100         (org-agenda-get-deadlines, org-agenda-get-scheduled):
29101         Set `undone-face' and `done-face' properties.
29102         (org-last-todo-state-is-todo): New variable.
29103         (org-todo): Set `org-last-todo-state-is-todo'.
29104         (org-agenda-todo): Change face according to
29105         `org-last-todo-state-is-todo'.  And change other lines referring to
29106         the same entry.
29107         (org-calendar-goto-agenda): New command.
29108         (org-calendar-to-agenda-key): New option.
29109         (org-startup-folded): New allowed value `content'.
29110         (org-set-regexps-and-options): Accept new value `content' for
29111         `org-startup-folded'.
29112         (org-get-current-options): Handle new value `content' for
29113         `org-startup-folded'.
29114         (org-insert-todo-heading): New command.
29115         (org-mode): Insert first line "*-* mode: org-mode -*-" when called
29116         interactively in empty file and option
29117         `org-insert-mode-line-in-empty-file' has been set.
29118         (org-agenda-todo, org-agenda-priority): Modify to use
29119         `org-agenda-change-all-lines'.
29120         (org-warning-face): Change color on dark background
29122 2005-04-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
29124         * international/mule-cmds.el (set-locale-environment): On Mac OS,
29125         use preferences AppleLocale and AppleLanguages, and variable
29126         mac-system-locale for default locale.  On Mac OS Classic, use
29127         mac-system-coding-system for default coding systems.
29129         * term/mac-win.el: Don't set file-name-coding-system.
29130         Decode variables system-name, emacs-build-system, user-login-name, and
29131         user-full-name by mac-system-coding-system on Mac OS Classic.
29132         (mac-system-coding-system): New variable.
29134 2005-04-13  Luc Teirlinck  <teirllm@auburn.edu>
29136         * startup.el (command-line): Handle `xterm-mouse-mode' before
29137         reading init file.
29139         * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
29141 2005-04-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
29143         * progmodes/sh-script.el (sh-here-document-word): Make it a
29144         defcustom.  Doc fix.
29145         (sh-add): Bash uses $(( )) for arithmetic.
29146         (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
29147         (sh-maybe-here-document): Remove quotes and leading whitespace
29148         from heredoc word when closing.  Indent heredoc with tabs if word
29149         starts with "-".
29151 2005-04-13  Richard M. Stallman  <rms@gnu.org>
29153         * simple.el (undo): Fix previous change.
29155         * custom.el (defface): Doc fix.
29157 2005-04-13  Lute Kamstra  <lute@gnu.org>
29159         * Makefile.in (DONTCOMPILE): Remove list.
29160         (compile, compile-always): Don't use DONTCOMPILE.
29161         (update-authors): Load the library in which batch-update-authors
29162         is defined.
29163         * makefile.w32-in (DONTCOMPILE): Remove list.
29164         (compile, compile-always): Fix comments.
29165         (update-authors): Load the library in which batch-update-authors
29166         is defined.
29168         * generic-x.el (generic-mode-ini-file-find-file-hook):
29169         Rename to ini-generic-mode-find-file-hook.
29170         Keep generic-mode-ini-file-find-file-hook as an alias.
29171         (ini-generic-mode-find-file-hook): Rename from
29172         generic-mode-ini-file-find-file-hook.  Fix docstring.
29173         (ini-generic-mode): Docstring change.
29174         (bat-generic-mode-run-as-comint): Silence the byte compiler.
29176         * help.el (describe-key-briefly): UNTRANSLATED can be nil when
29177         called from lisp.
29179         * generic.el: Move to the emacs-lisp subdir.
29181 2005-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
29183         * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
29184         and C-S- function and cursor motion keys.
29186 2005-04-12  Luc Teirlinck  <teirllm@auburn.edu>
29188         * startup.el (command-line): Enable Xterm Mouse mode by default.
29189         * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
29190         for Custom.  No longer show "Mouse" in mode line when enabled.
29191         Doc fix.
29193 2005-04-12  Kim F. Storm  <storm@cua.dk>
29195         * emulation/cua-base.el (cua-rectangle-face)
29196         (cua-rectangle-noselect-face): Define face attributes here.
29198         * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
29200 2005-04-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
29202         * startup.el (command-line): Turn off blinking cursor if
29203         cursorBlink in resources is off or false.
29205 2005-04-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
29207         * term/mac-win.el (dnd): Require dnd.
29208         (mac-drag-n-drop): Call dnd-handle-one-url.
29209         (kTextEncodingMacRoman, kTextEncodingISOLatin1)
29210         (kTextEncodingISOLatin2): Remove constants.
29211         (mac-script-code-coding-systems): New constant.
29212         (mac-handle-language-change): New function.
29213         (special-event-map): Bind it to `language-change' event.
29214         (mac-centraleurroman, mac-cyrillic): New coding systems.
29215         (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
29216         (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
29217         and mac-cyrillic-encoder to encode-mac-centraleurroman and
29218         encode-mac-cyrillic, respectively.
29220 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
29222         * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
29223         Don't set overlay-arrow-string to "=>" as this is done
29224         globally in C now.
29226 2005-04-12  Lute Kamstra  <lute@gnu.org>
29228         * generic-x.el (rc-generic-mode, rul-generic-mode):
29229         Fix auto-mode-alist entries.
29230         (etc-fstab-generic-mode): Tweak fontification.
29232         * generic.el (generic-make-keywords-list): Fix docstring.
29233         (generic-mode-internal): Simplify generic-font-lock-keywords.
29235 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
29237         * whitespace.el (whitespace-buffer-leading)
29238         (whitespace-buffer-trailing): Revert the incorrect test inversion.
29239         However, fix the highlight area for the leading and
29240         trailing whitespaces to show space.
29242 2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
29244         * whitespace.el (whitespace-version): Bump to 3.5
29246         (whitespace-buffer-leading, whitespace-buffer-trailing):
29247         Invert sense of the test to highlight the whitespace.
29249 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
29251         * progmodes/gud.el (gud-display-line): GUD uses its own
29252         overlay arrow now so don't set overlay-arrow-string.
29253         (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
29255 2005-04-11  Dan Nicolaescu  <dann@ics.uci.edu>
29257         * term.el (term-ansi-current-bold, term-ansi-current-underline)
29258         (term-ansi-current-reverse, term-ansi-current-invisible)
29259         (term-ansi-face-already-done): Change to boolean.
29260         (term-reset-terminal, term-handle-colors-array): Handle the above
29261         vars accordingly.
29262         (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
29263         (term-emulate-terminal): Use the new name.
29265         * faces.el (secondary-selection): Use yellow1, not yellow.
29266         (trailing-whitespace): Use red1, not red.
29268 2005-04-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
29270         * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
29271         (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
29272         (dired-dnd-handle-file): Call dnd-get-local-file-uri
29274         * cus-edit.el (dnd): New group.
29276         * term/w32-win.el (dnd): Require dnd
29277         (w32-drag-n-drop): Call dnd-handle-one-url.
29279         * x-dnd.el: Require dnd.
29280         (x-dnd-handle-uri-list, x-dnd-handle-file-name):
29281         Call dnd-handle-one-url.
29282         (x-dnd-types-alist, x-dnd-insert-utf8-text)
29283         (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
29284         to dnd-insert-text.
29285         (x-dnd-protocol-alist, x-dnd-open-file-other-window)
29286         (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
29287         (x-dnd-get-local-file-name, x-dnd-open-local-file)
29288         (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
29290         * dnd.el (dnd-protocol-alist): New file with generic DND functions.
29292 2005-04-11  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
29294         * wdired.el: Doc fixes.
29295         (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
29296         (wdired-use-dired-vertical-movement): Rename from
29297         wdired-always-move-to-filename-beginning.
29298         (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
29299         (wdired-change-to-wdired-mode): Change mode name.
29300         (wdired-newline): Delete.
29302 2005-04-11  Richard M. Stallman  <rms@gnu.org>
29304         * whitespace.el (whitespace-highlight-the-space):
29305         Don't call whitespace-unhighlight-the-space here.
29307         * simple.el (undo): Record t in undo-equiv-table
29308         for the redo record made by an undo-in-region.
29310 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
29312         * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
29313         (gdb-frame-inferior-io-buffer): New Functions to control
29314         display of separate IO buffer.
29315         (menu): Add them to menu-bar.
29316         (gdb-display-buffer): Check for buffer another frame.
29317         Protect GUD buffer.
29318         (gdb-setup-windows): Create IO buffer if not already there.
29319         (gdb-memory-mode): Remove purecopy noops.
29321 2005-04-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
29323         * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
29324         and pass to self-insert-command.
29326 2005-04-11  Lute Kamstra  <lute@gnu.org>
29328         * generic.el: Commentary section cleanup.
29329         (generic): Delete.
29330         (generic-use-find-file-hook, generic-lines-to-scan)
29331         (generic-find-file-regexp, generic-ignore-files-regexp)
29332         (default-generic-mode, generic-mode-find-file-hook)
29333         (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
29334         * generic-x.el (generic-x): Docstring fix.  Put it in the data group.
29335         (generic-use-find-file-hook, generic-lines-to-scan)
29336         (generic-find-file-regexp, generic-ignore-files-regexp)
29337         (default-generic-mode, generic-mode-find-file-hook)
29338         (generic-mode-ini-file-find-file-hook): Move from generic.el.
29340 2005-04-10  Karl Fogel  <kfogel@red-bean.com>
29342         * bookmark.el (bookmark-write-file): Catch errors writing file.
29343         This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
29345 2005-04-10  Richard M. Stallman  <rms@gnu.org>
29347         * startup.el (fancy-splash-tail): Update copyright year.
29348         (command-line): Split part of -Q into -D.
29349         (emacs-basic-display): New defvar.
29350         (fancy-splash-text): Correct name of menu item.
29352         * saveplace.el (save-place-alist-to-file): Catch errors writing file.
29354         * info.el (Info-fontify-node): Handle fontification of multiple * Menu
29355         lines in one node.
29357         * comint.el (comint-send-input): New arg ARTIFICIAL.
29358         Callers in this file changed.
29360         * abbrev.el (define-abbrevs): Read system abbrevs properly.
29362         * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
29364 2005-04-10  Chong Yidong  <cyd@stupidchicken.com>
29366         * url/url-ldap.el (url-ldap): Add docstring.  Fix call to
29367         `ldap-search-internal'.
29369 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
29371         * files.el (set-auto-mode-1): Use line-end-position.
29373         * international/latin-1.el:
29374         * international/latin-2.el:
29375         * international/latin-3.el:
29376         * international/latin-4.el:
29377         * international/latin-5.el:
29378         * international/latin-8.el:
29379         * international/latin-9.el: Give punctuation syntax to NBSP.
29381         * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
29382         (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
29383         Use char-classes to accept non-ascii letters, accepted in some recent
29384         bibtex implementations.
29386 2005-04-10  Luc Teirlinck  <teirllm@auburn.edu>
29388         * custom.el (custom-set-minor-mode): Any non-nil value for the
29389         variable should enable the mode when set through Custom.
29391 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
29393         * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
29394         TAB binding so tab-always-indent is obeyed.
29395         (vhdl-minibuffer-local-map): Move initialization into declaration.
29396         (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
29397         (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
29398         (vhdl-hooked-abbrev): Avoid test for XEmacs.
29399         (vhdl-current-line): Use line-beginning-position.
29400         (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
29401         with-output-to-temp-buffer, so the current position can be recorded.
29403 2005-04-10  Masatake YAMATO  <jet@gyve.org>
29405         * progmodes/compile.el (compilation-error-regexp-alist-alist):
29406         Add regexp for gcov.
29408 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
29410         * calendar/time-date.el (time-to-seconds, seconds-to-time)
29411         (days-to-time, time-subtract, time-add): Don't use the #xhhhh
29412         syntax which Emacs 20 doesn't support.
29414 2005-04-09  Richard M. Stallman  <rms@gnu.org>
29416         * help.el (describe-key-briefly, describe-key):
29417         Replace strings as event types with "(any string)".
29419 2005-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
29421         * arc-mode.el (archive-mode-map): Move initialization into
29422         the declaration.  Override *all* bindings of `undo'.
29423         (archive-lemacs): Remove, use (featurep 'xemacs) instead.
29425 2005-04-09  Jay Belanger  <belanger@truman.edu>
29427         * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
29429 2005-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
29431         * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
29432         (xterm-register-default-colors): Update color values computation
29433         to match xterm-200.
29435 2005-04-09  Kenichi Handa  <handa@m17n.org>
29437         * international/code-pages.el (iso-latin-7): Fix the map.
29439 2005-04-08  Luc Teirlinck  <teirllm@auburn.edu>
29441         * emacs-lisp/lisp.el (defun-prompt-regexp)
29442         (parens-require-spaces, buffer-end, end-of-defun)
29443         (insert-parentheses): Doc fixes.
29445 2005-04-08  Kim F. Storm  <storm@cua.dk>
29447         * comint.el (comint-highlight-prompt): Fix face spec.
29448         * hi-lock.el (hi-green): Likewise.
29450 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
29452         * cus-edit.el (custom-modified-face):
29453         * comint.el (comint-highlight-input): Fix previous changes.
29454         * term.el (term-handle-ansi-escape): Add a comment.
29456 2005-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
29458         * whitespace.el (whitespace-highlight-the-space): Put the same overlay
29459         in the buffer and in whitespace-highlighted-space.
29460         (whitespace-unhighlight-the-space): Simplify.
29461         (whitespace-buffer): Simplify.
29463 2005-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
29465         * textmodes/table.el (table-cell-face): Add special case for
29466         displays supporting a high number of colors.
29467         * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
29468         (vhdl-font-lock-reserved-words-face)
29469         (vhdl-speedbar-architecture-face)
29470         (vhdl-speedbar-instantiation-face)
29471         (vhdl-speedbar-architecture-selected-face)
29472         (vhdl-speedbar-instantiation-selected-face): Likewise.
29473         * progmodes/sh-script.el (sh-heredoc-face): Likewise.
29474         * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
29475         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
29476         (ebrowse-root-class-face, ebrowse-member-attribute-face)
29477         (ebrowse-progress-face): Likewise.
29478         * progmodes/compile.el (compilation-info-face): Likewise.
29479         * progmodes/cc-fonts.el (c-invalid-face): Likewise.
29480         * emacs-lisp/re-builder.el (reb-match-3): Likewise.
29481         * calendar/calendar.el (diary-face): Likewise.
29482         * woman.el (woman-italic-face, woman-bold-face)
29483         (woman-unknown-face): Likewise.
29484         * wid-edit.el (widget-button-pressed-face): Likewise.
29485         * whitespace.el (whitespace-highlight-face): Likewise.
29486         * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
29487         * pcvs-info.el (cvs-marked-face): Likewise.
29488         * info.el (info-xref): Likewise.
29489         * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
29490         * hilit-chg.el (highlight-changes-face)
29491         (highlight-changes-delete-face): Likewise.
29492         * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
29493         (hi-red-b): Likewise.
29494         * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
29495         * font-lock.el (font-lock-keyword-face)
29496         (font-lock-function-name-face, font-lock-warning-face): Likewise.
29497         * cus-edit.el (custom-invalid-face, custom-modified-face)
29498         (custom-set-face, custom-changed-face, custom-variable-tag-face)
29499         (custom-group-tag-face-1, custom-group-tag-face): Likewise.
29500         * comint.el (comint-highlight-prompt): Likewise.
29502 2005-04-08  Lute Kamstra  <lute@gnu.org>
29504         * font-lock.el (font-lock-keywords): Docstring fixes.
29506 2005-04-08  Kenichi Handa  <handa@m17n.org>
29508         * ps-mule.el (ps-mule-show-warning): If the number of unprintable
29509         chars are more than a limit, print " and more..." at the tail.
29511 2005-04-08  Kim F. Storm  <storm@cua.dk>
29513         * emacs-lisp/authors.el (authors-aliases): Update list.
29514         (authors-ignored-files): New list.
29515         (authors-fixed-entries): Fix typo.
29516         (authors-renamed-files-alist): Update list.
29517         (authors-add): Check authors-ignored-files.
29519 2005-04-08  Carsten Dominik  <dominik@science.uva.nl>
29521         * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
29522         optional, to ensure backward compatibility.
29524 2005-04-08  Stephen Eglen  <stephen@gnu.org>
29526         * textmodes/flyspell.el (flyspell-large-region): Doc fix.
29528 2005-04-08  Kim F. Storm  <storm@cua.dk>
29530         * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
29532         * mouse.el (mouse-on-link-p): Doc fix.
29534 2005-04-07  Luc Teirlinck  <teirllm@auburn.edu>
29536         * ielm.el (ielm-prompt-read-only): Doc fix.
29538         * comint.el (comint-prompt-read-only): Doc fix.
29540 2005-04-07  Benjamin Rutt  <brutt@bloomington.in.us>
29542         * ffap.el (ffap-pass-wildcards-to-dired): New user option to
29543         ensure dired always handles wildcards passed to ffap.
29544         (find-file-at-point): Use it.
29545         (ffap-dired-wildcards): Doc fix.
29547 2005-04-07  Juri Linkov  <juri@jurta.org>
29549         * simple.el (next-error-overlay-arrow-position): New defvar.
29550         Put "=>" on its property `overlay-arrow-string'.  Add it to
29551         `overlay-arrow-variable-list'.
29553         * progmodes/compile.el (compilation-setup):
29554         Set `next-error-overlay-arrow-position' to nil.  Also set it to
29555         nil in the local hook `kill-buffer-hook'.  Make local variable
29556         `overlay-arrow-string' and set it to "=>".
29557         (compilation-goto-locus): Set BOL position to
29558         `next-error-overlay-arrow-position' instead of
29559         `overlay-arrow-position'.
29561         * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
29562         locally instead of adding it to the global hook.
29563         (Info-kill-buffer): Move up.
29565 2005-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
29567         * term/xterm.el (xterm-standard-colors): Update color values from
29568         xterm-200.
29570 2005-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
29572         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
29574         * fast-lock.el:
29575         * lazy-lock.el: Move them to the obsolete subdir.
29577 2005-04-06  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
29579         * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
29580         (wdired-add-replace-advice): Remove.
29581         (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
29583 2005-04-06  Kim F. Storm  <storm@cua.dk>
29585         * startup.el (command-line): Add --bare-bones alias for -Q.
29587 2005-04-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
29589         * term/mac-win.el: Use create-fontset-from-mac-roman-font to
29590         create the startup fontset if a font specification ends with
29591         `mac-roman'.
29593 2005-04-06  Lute Kamstra  <lute@gnu.org>
29595         * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
29596         change.
29598         * emacs-lisp/copyright.el (copyright-update-year): Replace the
29599         right subexpression.  Suggested by Jay Bingham <jay.bingham@hp.com>.
29601 2005-04-05  Lute Kamstra  <lute@gnu.org>
29603         * generic.el (generic-mode-internal): Fix 2005-03-31 change.
29604         (define-generic-mode): Ditto.  Fix debug declaration.
29606         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
29607         Put them in the generic-x group.
29609         * calendar/timeclock.el (timeclock): Doc fix.
29611         * generic.el (define-generic-mode): Don't use custom-current-group.
29612         Document default :group value.
29613         * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
29614         (define-global-minor-mode): Don't use custom-current-group.
29616 2005-04-05  Glenn Morris  <gmorris@ast.cam.ac.uk>
29618         * startup.el (command-line-1): Display startup-echo-area-message
29619         when fancy splash screen is in use.
29621         * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
29622         (sh-escaped-newline): New face.
29623         (sh-font-lock-keywords) <shell>: Improve regexp for escaped
29624         newline, and use sh-escaped-newline face.
29626         * progmodes/tcl.el (tcl-escaped-newline): New face.
29627         (tcl-builtin-list): New variable.
29628         (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
29629         newlines.  Fix keywords subexpression number.
29631 2005-04-05  Carsten Dominik  <dominik@science.uva.nl>
29633         * textmodes/org.el (org-diary-default-entry): Fix call to
29634         `add-to-diary-entry'.
29636 2005-04-05  Kim F. Storm  <storm@cua.dk>
29638         * ediff-init.el: Use (featurep 'xemacs).
29640 2005-04-05  David Ponce  <david@dponce.com>
29642         * cus-edit.el (face): Derive from symbol widget.  Display sample
29643         of the current face on the fly.
29644         (widget-face-sample-face-get, widget-face-notify): New functions.
29645         (widget-face-value-create): Remove.
29647         * wid-edit.el (widget-field-end): Temporarily remove field
29648         narrowing before to call `get-char-property'.
29650 2005-04-04  Jay Belanger  <belanger@truman.edu>
29652         * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
29653         (math-read-subscripts): New variable.
29654         (math-read-preprocess-string): Process subscripts.
29656 2005-04-04  Luc Teirlinck  <teirllm@auburn.edu>
29658         * comint.el (comint-prompt-read-only): Doc fix.
29660         * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
29661         `-1'.  Doc fix.
29663 2005-04-04  Carsten Dominik  <dominik@science.uva.nl>
29665         * textmodes/org.el (org-insert-mode-line-in-empty-file):
29666         Change default value to nil.
29668 2005-04-04  Lute Kamstra  <lute@gnu.org>
29670         * autorevert.el (auto-revert-mode): Specify :group.
29671         * battery.el (display-battery-mode): Specify :group.
29672         * diff-mode.el (diff-minor-mode): Specify :group.
29673         * font-core.el (font-lock-mode): Specify :group.
29674         * hl-line.el (hl-line-mode): Specify :group.
29675         * iimage.el (iimage): New customization group.
29676         (iimage-mode): Specify :group.
29677         * longlines.el (longlines-mode): Specify :group.
29678         * master.el: Don't require easy-mmode.
29679         (master): New customization group.
29680         (master-mode): Specify :group.
29681         * msb.el (msb-mode): Specify :group.
29682         * reveal.el (reveal-mode): Specify :group.
29683         * simple.el (next-error-follow-minor-mode): Specify :group.
29684         * smerge-mode.el (smerge-mode): Specify :group.
29685         * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
29686         * emulation/cua-base.el (cua-mode): Specify :group.
29687         * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
29688         * language/thai-util.el (thai-auto-composition-mode)
29689         (thai-word-mode): Specify :group.
29690         * mail/supercite.el (sc-minor-mode): Specify :group.
29691         * progmodes/cwarn.el (cwarn-mode): Specify :group.
29692         * progmodes/flymake.el (flymake-mode): Specify :group.
29693         * progmodes/glasses.el (glasses-mode): Specify :group.
29694         * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
29695         * textmodes/enriched.el (enriched-mode): Specify :group.
29696         * textmodes/refill.el (refill-mode): Specify :group.
29698         * add-log.el (change-log-font-lock-keywords): Names in
29699         parenthesized lists can contain spaces.
29701 2005-04-04  Thien-Thi Nguyen  <ttn@gnu.org>
29703         * startup.el (fancy-splash-text): Shorten default text of
29704         "Emacs Tutorial" line.  Also, if the current language env
29705         indicates an available tutorial file other than TUTORIAL,
29706         extract its title and append it to the line in parentheses.
29707         (fancy-splash-insert): If arg is a thunk, funcall it.
29709 2005-04-04  Jay Belanger  <belanger@truman.edu>
29711         * calc.el (calc-language-alist): Add tags to customization type.
29713 2005-04-03  Luc Teirlinck  <teirllm@auburn.edu>
29715         * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
29716         Doc fix.
29718 2005-04-03  Marcelo Toledo  <marcelo@gnu.org>
29720         * add-log.el (change-log-font-lock-keywords): The manual
29721         describing a Change Log entry, says: (...) "Aside from these
29722         header lines, every line in the change log starts with a space or
29723         a tab.".  The font-lock was not highlighting lines started with
29724         spaces, added support for it.
29726 2005-04-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
29728         * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
29729         (bibtex-generate-url-list): Update docstring accordingly.  Put the
29730         complex example in the docstring.
29731         (bibtex-font-lock-url): Use pop.
29733 2005-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
29735         * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
29737         * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
29739 2005-04-03  Glenn Morris  <gmorris@ast.cam.ac.uk>
29741         * filesets.el (filesets-set-default): Doc fix.
29743 2005-04-03  Lute Kamstra  <lute@gnu.org>
29745         * generic.el (define-generic-mode): Add argument to specify
29746         keywords for defcustom.
29747         (default-generic-mode): Specify :group.
29749         * generic-x.el: Specify :group for all generic modes.
29751         * desktop.el (desktop-no-desktop-file-hook)
29752         (desktop-after-read-hook): Doc fix.
29754 2005-04-02  Luc Teirlinck  <teirllm@auburn.edu>
29756         * simple.el (visible-mode): Use explicit :group keyword.
29757         This changes the group of `visible-mode-hook' from paren-blinking
29758         to editing-basics.
29760 2005-04-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
29762         * mail/rmail.el (rmail-parse-url): Bugfix.  Parse traditional
29763         mailbox specifications as well as URLs.
29764         (rmail-insert-inbox-text): Remove unused conditional branches.
29766 2005-04-01  Jay Belanger  <belanger@truman.edu>
29768         * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
29769         (calc-gnuplot-print-command): Move definitions to calc.el.
29771         * calc/calc-embed.el (calc-embedded-announce-formula)
29772         (calc-embedded-open-formula, calc-embedded-close-formula)
29773         (calc-embedded-open-word, calc-embedded-close-word)
29774         (calc-embedded-open-plain, calc-embedded-close-plain)
29775         (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
29776         (calc-embedded-open-mode, calc-embedded-close-mode):
29777         Move definitions to calc.el.
29779         * calc/calc.el (calc-settings-file, calc-language-alist):
29780         Make customizable.
29781         (calc-embedded-announce-formula, calc-embedded-open-formula)
29782         (calc-embedded-close-formula, calc-embedded-open-word)
29783         (calc-embedded-close-word, calc-embedded-open-plain)
29784         (calc-embedded-close-plain, calc-embedded-open-new-formula)
29785         (calc-embedded-close-new-formula, calc-embedded-open-mode)
29786         (calc-embedded-close-mode, calc-gnuplot-name)
29787         (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
29788         from other files and make customizable.
29790 2005-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
29792         * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
29793         Use buffer-live-p.
29794         (cvs-mode-run): Don't call cvs-update-header here.
29795         (cvs-run-process): Call cvs-update-header.
29796         Use process properties for cvs-postprocess and cvs-buffer so that
29797         the sentinel can behave better if the temp buffer is killed.
29798         Use a pipe rather than a tty, to better handle unexpected prompts.
29799         (cvs-sentinel): Rewrite.  Call cvs-update-header.
29801 2005-04-01  Andre Spiegel  <spiegel@gnu.org>
29803         * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
29804         we go via Tramp or Ange-FTP.  Suggested by Kai Grossjohann.
29806 2005-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
29808         * generic.el (define-generic-mode): Add indentation rule.
29810 2005-03-31  Luc Teirlinck  <teirllm@auburn.edu>
29812         * files.el (mode-require-final-newline): Make Custom correctly
29813         report a nil value and allow to set it to nil via Custom.
29814         Doc fix.
29816 2005-04-01  Kenichi Handa  <handa@m17n.org>
29818         * international/characters.el: Enable the correct case setting for
29819         dotless-i and dotted-I.
29821 2005-04-01  Kim F. Storm  <storm@cua.dk>
29823         * ido.el (ido-file-internal): Fall back to non-ido command if
29824         initial directory is on slow ftp (or tramp) host.
29826 2005-03-31  Richard M. Stallman  <rms@gnu.org>
29828         * emacs-lisp/autoload.el (make-autoload):
29829         Handle define-global-minor-mode.
29831         * emacs-lisp/easy-mmode.el (define-global-minor-mode):
29832         Rename from easy-mmode-define-global-mode.
29833         (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
29835         * progmodes/scheme.el (scheme-mode-syntax-table):
29836         Update syntax of | and # for two-character comment syntax.
29838 2005-03-31  Lute Kamstra  <lute@gnu.org>
29840         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
29841         (define-minor-mode): Call custom-current-group at load-time.
29843         * generic.el (define-generic-mode): Add debug declaration.
29844         Add defcustom for the mode hook.
29845         (generic-mode-internal): Use run-mode-hooks.
29847 2005-03-31  Kim F. Storm  <storm@cua.dk>
29849         * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
29850         (mouse-fixup-help-message): New defun called by show_help_echo
29851         to fixup mouse-2 prefix in help messages when applicable.
29853         * tooltip.el (tooltip-show-help-function): Don't fixup message here.
29855 2005-03-31  Kenichi Handa  <handa@m17n.org>
29857         * language/thai-word.el (thai-find-word-ends): Pay attention to
29858         the case that we reach the end of buffer.
29860         * textmodes/fill.el (fill-text-properties-at): New function.
29861         (fill-newline): Use fill-text-properties-at instead of
29862         text-properties-at.
29864 2005-03-31  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
29866         * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
29867         not comint-quote-filename.
29869 2005-03-31  Thien-Thi Nguyen  <ttn@gnu.org>
29871         * help-fns.el (help-with-tutorial): Revert last change.
29873 2005-03-31  Kim F. Storm  <storm@cua.dk>
29875         * emulation/cua-base.el (cua-scroll-down): Add CUA property.
29877 2005-03-30  Paul Eggert  <eggert@cs.ucla.edu>
29879         * calendar/cal-china.el: Update reference to "Calendrical
29880         Calculations" book; there's a new edition.
29881         * calendar/cal-coptic.el: Likewise.
29882         * calendar/cal-french.el: Likewise.
29883         * calendar/cal-hebrew.el: Likewise.
29884         * calendar/cal-islam.el: Likewise.
29885         * calendar/cal-iso.el: Likewise.
29886         * calendar/cal-julian.el: Likewise.
29887         * calendar/cal-mayan.el: Likewise.
29888         * calendar/cal-persia.el: Likewise.
29889         * calendar/calendar.el: Likewise.
29890         * calendar/holidays.el: Likewise.
29891         * calendar/lunar.el: Likewise.
29892         * calendar/solar.el: Likewise.
29894         * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
29895         white space from doc string.
29897 2005-03-30  Jay Belanger  <belanger@truman.edu>
29899         * calc/calc-help.el (calc-full-help): Remove email address.
29901 2005-03-30  Thien-Thi Nguyen  <ttn@gnu.org>
29903         * help-fns.el (help-with-tutorial): Delete title line.
29905 2005-03-30  Glenn Morris  <gmorris@ast.cam.ac.uk>
29907         * calendar/cal-x.el (calendar-one-frame-setup)
29908         (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
29909         rather than `symbol' for set-window-dedicated-p.
29911         * calendar/appt.el (appt-buffer-name): Make it a constant.
29912         (appt-add): Doc fix.
29914         * filesets.el (filesets-menu-path, filesets-menu-before)
29915         (filesets-menu-in-menu): Doc fix.  Now valid in GNU Emacs.
29916         (filesets-menu-cache-file): Use directory ~/.emacs.d.
29917         (filesets-add-submenu): Delete and use add-submenu instead.
29919 2005-03-30  Carsten Dominik  <dominik@science.uva.nl>
29921         * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
29922         (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
29923         (org-diary-default-entry): New function.
29924         (org-get-entries-from-diary): Better parsing of diary entries.
29925         (org-agenda-check-no-diary): New function.
29926         ("diary-lib"): Advice to function `add-to-diary-list', to allow
29927         linking to diary entries.
29928         (org-agenda-execute-calendar-command): New function.
29929         (org-agenda): Improve visible section in window.
29930         Use `org-fit-agenda-window'.
29931         (org-fit-agenda-window): New option.
29932         (org-move-subtree-down): Better handling of empty lines
29933         at end of subtree.
29934         (org-cycle): Numeric prefix is interpreted now as show-subtree N
29935         levels up.
29936         (org-fontify-done-headline): New option.
29937         (org-headline-done-face): New face.
29938         (org-set-font-lock-defaults): Use `org-headline-done-face'.
29939         (org-table-copy-down): Rename from `org-table-copy-from-above'.
29940         When current field is non-empty, it is copied to next row.
29941         (org-table-copy-from-above): Fix bug which made it
29942         impossible to copy fields containing only a single non-white character.
29944 2005-03-30  Kim F. Storm  <storm@cua.dk>
29946         * kmacro.el (kmacro-end-macro): Isearch may store this command
29947         into the macro -- so ignore it when executing keyboard macro.
29949 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
29951         * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
29953 2005-03-29  Kenichi Handa  <handa@m17n.org>
29955         * language/thai.el ("Thai"): Set setup-function and exit-function
29956         for Thai language environment.
29958         * language/thai-util.el: Require thai-word.
29959         (thai-word-mode-map): New variable.
29960         (thai-word-mode): New minor mode.
29961         (setup-thai-language-environment-internal): New function.
29962         (exit-thai-language-environment-internal): New function.
29964         * language/thai-word.el (thai-word-table): Declare it by defvar,
29965         use dolist to initialize it.
29966         (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
29967         (thai-fill-find-break-point): New functions.
29969 2005-03-29  Richard M. Stallman  <rms@gnu.org>
29971         * simple.el (idle-update-delay): Move definition up.
29972         (set-mark): Doc fix.
29974 2005-03-29  Chong Yidong  <cyd@stupidchicken.com>
29976         * longlines.el: New file.
29978         * simple.el (buffer-substring-filters): New variable.
29979         (filter-buffer-substring): New function.
29980         (kill-region, copy-region-as-kill): Use it.
29982         * register.el (copy-to-register, append-to-register)
29983         (prepend-to-register): Use filter-buffer-substring.
29985 2005-03-30  Nick Roberts  <nickrob@snap.net.nz>
29987         * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
29988         (gud-filter-pending-text): Move in front of gdb.
29989         (gud-overlay-arrow-position): New variable.
29990         (gud-sentinel, gud-display-line): Use it in place of
29991         overlay-arrow-position.
29993 2005-03-29  Glenn Morris  <gmorris@ast.cam.ac.uk>
29995         * progmodes/fortran.el (fortran-if-indent): Doc fix.
29996         (fortran-font-lock-keywords-2): Add "where", "elsewhere".
29997         (fortran-font-lock-keywords-4): New variable.
29998         (fortran-blocks-re, fortran-end-block-re)
29999         (fortran-start-block-re): New constants, for hideshow.
30000         (hs-special-modes-alist): Add a Fortran entry.
30001         (fortran-mode-map): Bind fortran-end-of-block,
30002         fortran-beginning-of-block to \M-\C-n, \M-\C-p.
30003         (fortran-mode): Doc fix.  Add fortran-font-lock-keywords-4.
30004         (fortran-looking-at-if-then, fortran-end-of-block)
30005         (fortran-beginning-of-block): New functions, for hideshow.
30007         * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
30008         Doc fix.  Tweak regexp.
30009         (f90-beginning-of-block): Push mark first.
30011 2005-03-29  Jay Belanger  <belanger@truman.edu>
30013         * calc/calc.el: Update copyright date.
30014         (calc-version): Increase to 2.1.
30015         (calc-version-date): Remove.
30017         * calc/calc-help.el: Update copyright date.
30018         (calc-full-help): Remove reference to calc-version-date.
30019         Update copyright date.
30021 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
30023         * vc.el (vc-do-command): Use a pipe for async processes, so password
30024         prompts don't show up at places where the user can't reply.
30026 2005-03-29  Olive Lin  <olive.lin@versateladsl.be>  (tiny change)
30028         * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
30029         on the file name we pass to the inferior shell.
30031 2005-03-29  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
30033         * progmodes/which-func.el (which-function): Be robust in the face of an
30034         imenu--make-index-alist failure.
30036 2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
30038         * reveal.el (reveal-mode-map): Don't override C-a and C-e.
30040         * progmodes/python.el (python-preoutput-filter): Fix last change.
30042 2005-03-29  Lute Kamstra  <lute@gnu.org>
30044         * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
30045         functions and compiled macros.
30046         (debug-convert-byte-code): Handle macros too.
30047         (debug-on-entry-1): Don't signal an error when trying to clear a
30048         function that is not set to debug on entry.
30050 2005-03-29  Jay Belanger  <belanger@truman.edu>
30052         * calc/calc-lang.el: Add functions to math-function-table
30053         properties of tex and math.
30055 2005-03-29  Kenichi Handa  <handa@m17n.org>
30057         * ps-mule.el (ps-mule-plot-string): Translate characters by
30058         ps-print-translation-table.
30059         (ps-mule-begin-job): Call find-charset-region/string with
30060         ps-print-translation-table.
30061         (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
30063         * ps-print.el (ps-print-translation-table): New variable.
30064         (ps-plot-region): Translate characters by ps-print-translation-table.
30066 2005-03-29  Juri Linkov  <juri@jurta.org>
30068         * simple.el (next-error-highlight-timer): New variable.
30070         * progmodes/compile.el (compilation-goto-locus):
30071         Use `next-error-highlight-timer' instead of `sit-for'.
30073 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
30075         * mail/supercite.el (sc-mail-field): Use assoc-string.
30076         (sc-get-address): Simplify regexps.
30078         * files.el (minibuffer-with-setup-hook): New macro.
30079         (find-file-read-args): Use it to avoid let-binding
30080         minibuffer-with-setup-hook (which breaks turning on/off
30081         file-name-shadow-mode while in the prompt).
30083         * complete.el (PC-read-include-file-name-internal):
30084         Use test-completion.
30086 2005-03-28  Luc Teirlinck  <teirllm@auburn.edu>
30088         * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
30090 2005-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
30092         * window.el (window-buffer-height): Use count-screen-lines.
30094         * progmodes/python.el (python-preoutput-leftover): New var.
30095         (python-preoutput-filter): Use it.
30096         (python-send-receive): Loop until all the result has been received.
30098 2005-03-28  Juri Linkov  <juri@jurta.org>
30100         * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
30102         * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
30103         "Recover Crashed Session".
30104         (menu-bar-search-menu): Add ellipsis to "Search tagged files".
30105         (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
30106         (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
30107         (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
30108         (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
30109         (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
30110         (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
30111         (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
30113         * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
30114         Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
30115         Ediff Sessions", "Toggle use of separate control buffer frame",
30116         "Use separate frame for Ediff control buffer".
30118         * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
30119         Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
30120         "Rename Bookmark", "Delete Bookmark".
30122         * info.el (Info-mode-menu): Remove ellipsis from "Index".
30123         Add ellipsis to "Lookup a String", "Lookup a string in all indices".
30124         Add `:active Info-index-alternatives' to "Next Matching Item".
30126         * wdired.el (wdired-change-to-wdired-mode):
30127         Mention `wdired-abort-changes' key in the initial message.
30129         * international/mule.el (auto-coding-alist): Associate non-ascii
30130         image filename extensions with `no-conversion'.
30132 2005-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
30134         * international/iso-acc.el:
30135         * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
30137 2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>
30139         * textmodes/sgml-mode.el (html-mode): Doc update.
30141         * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
30143 2005-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
30145         * term.el (term-move-columns): Fix face after extending a line.
30146         (term-insert-spaces): Likewise.
30147         (term-reset-terminal): Fix off by one error.
30149 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
30151         * international/mule.el (auto-coding-alist): Add .xpi files.
30153         * files.el (auto-mode-alist): Add .xpi files.
30155 2005-03-26  Jure Cuhalev  <gandalf@owca.info>  (tiny change)
30157         * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
30159 2005-03-26  Eli Zaretskii  <eliz@gnu.org>
30161         * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
30163 2005-03-26  Glenn Morris  <gmorris@ast.cam.ac.uk>
30165         * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
30166         binding.  Suggested by Stephan Stahl <stahl@eos.franken.de>.
30168         * calendar/cal-move.el (calendar-beginning-of-year): Move the
30169         cursor to Jan 1 when needed.
30170         (calendar-end-of-year): Fix -/+ typo.
30171         Reported by Chong Yidong <cyd@stupidchicken.com>.
30173 2005-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
30175         * progmodes/flymake.el (flymake-mode): Add autoload cookie.
30177         * emacs-lisp/debug.el (debugger-record-expression): Add a missing
30178         format to `message'.  Inspired by Deepak Goel <deego@gnufans.org>.
30180 2005-03-25  Richard M. Stallman  <rms@gnu.org>
30182         * filesets.el (filesets-init): Add autoload.
30184         * mail/mailalias.el (mail-directory): Doc fix.
30186 2005-03-25  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
30188         * mail/mailalias.el (mail-directory-process): Do nothing if
30189         mail-directory-process is an atom.
30190         (mail-get-names): Ignore mail-directory-names if it is an atom.
30191         (mail-directory-process defvar): Doc fix.
30192         (mail-names): Doc fix.
30194 2005-03-25  Johan Bockg\e,Ae\e(Brd  <bojohan+mail@dd.chalmers.se>  (tiny change)
30196         * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
30198 2005-03-26  Kenichi Handa  <handa@m17n.org>
30200         * international/mule-util.el (detect-coding-with-priority):
30201         Call update-coding-systems-internal before detect-coding-region.
30203 2005-03-26  Nick Roberts  <nickrob@snap.net.nz>
30205         * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
30206         (gdb-frames-mode-map): Add follow-link property.
30208 2005-03-25  Jay Belanger  <belanger@truman.edu>
30210         * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
30211         for variables.
30213 2005-03-25  Juri Linkov  <juri@jurta.org>
30215         * image-mode.el: Optimize image filename extension regexps in
30216         autoload cookies.  Associate .x[bp]m with `image-mode-maybe'
30217         in `auto-mode-alist'.
30218         (image-mode): Add `image-toggle-display-text' to local hook
30219         `change-major-mode-hook'.  Display the image as an image by
30220         default.  Set `cursor-type' and `truncate-lines' if the image
30221         is already displayed.  Take into account the current mode (image
30222         or text) in message.
30223         (image-minor-mode): New minor mode.
30224         (image-mode-maybe, image-toggle-display-text): New functions.
30225         (image-toggle-display): Use called-interactively-p.
30226         Let-bind `inhibit-read-only' to t.
30228         * image-mode.el (image-minor-mode): Set `cursor-type' and
30229         `truncate-lines' if the image is already displayed.  Add turning
30230         image-minor-mode off to `change-major-mode-hook'.  Add message.
30231         Call `image-toggle-display-text' after turning image-minor-mode off.
30233 2005-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
30235         * international/mule-cmds.el (set-locale-environment): For Mac OS X's
30236         Terminal.app, use utf-8.
30237         (set-display-table-and-terminal-coding-system): Add coding-system arg.
30238         (set-locale-environment): Use it.
30240         * term/xterm.el: Undo last change, better done in mule-cmds.el.
30242         * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
30244         * progmodes/python.el (python-close-block-statement-p)
30245         (python-outdent-p, python-current-defun): Use symbol-end.
30247 2005-03-25  Karl Chen  <quarl@cs.berkeley.edu>
30249         * files.el (save-some-buffers): Doc fix.
30251 2005-03-25  Werner Lemberg  <wl@gnu.org>
30253         * complete.el, thumbs.el: Replace `legal' with `valid'.
30254         * calendar/calendar.el: Replace `legal' with `valid'.
30255         * emacs-lisp/advice.el: Replace `legal' with `valid'.
30256         * mail/supercite.el: Replace `legal' with `valid'.
30257         * progmodes/cperl-mode.el, progmodes/idlw-shell.el
30258         * progmodes/idlwave.el, progmodes/vhdl-mode.el:
30259         Replace `legal' with `valid'.
30260         * textmodes/reftex-vars.el, textmodes/reftex.el:
30261         Replace `legal' with `valid'.
30263 2005-03-25  Werner Lemberg  <wl@gnu.org>
30265         * calc/calc-forms.el, calc/calc-sel.el
30266         * midnight.el, vc-cvs.el
30267         * emacs-lisp/cl-macs.el
30268         * emulation/vip.el
30269         * eshell/esh-io.el, eshell/esh-var.el
30270         * mail/supercite.el
30271         * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
30272         * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
30273         * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
30274         * progmodes/sh-script.el, progmodes/xscheme.el
30275         * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
30276         * textmodes/reftex-index.el, textmodes/reftex-parse.el
30277         * textmodes/reftex-ref.el, textmodes/reftex-vars.el
30278         * textmodes/reftex.el, textmodes/org.el:
30279         Replace `illegal' with `invalid'.
30281 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
30283         * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
30284         (flymake-find-buildfile, flymake-find-possible-master-files)
30285         (flymake-check-include, flymake-parse-line): Replace loops over the
30286         length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
30288         * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
30289         Substitute file-name-as-directory in the rest of the file.
30290         (flymake-get-common-file-prefix): Rewrite, using compare-strings.
30291         (flymake-replace-region): Remove unused arg `buffer'.
30292         (flymake-check-patch-master-file-buffer): Update calls to it.
30293         (flymake-add-err-info): Remove unused var `count'.
30294         (flymake-mode): Use define-minor-mode.
30296         * progmodes/flymake.el: Use with-current-buffer.
30297         (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
30298         flymake-replace-regexp-in-string, flymake-line-beginning-position)
30299         (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
30300         Avoid testing for `xemacs'.
30301         (flymake-nop): Move.
30302         (flymake-region-has-flymake-overlays): Return the computed value.
30303         (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
30304         Remove unused var `endline'.
30305         (flymake-get-line-count): Remove unused function.
30306         (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
30308         * emulation/vi.el:
30309         * generic.el:
30310         * hilit-chg.el (global-highlight-changes):
30311         * hi-lock.el (hi-lock-mode):
30312         * follow.el: find-file-hooks -> find-file-hook.
30314         * comint.el (comint-insert-input): Obey mouse-yank-at-point.
30316 2005-03-24  Juri Linkov  <juri@jurta.org>
30318         * dired.el (dired-mode-map): Add menu item "Compare directories"
30319         for dired-compare-directories.
30321         * dired-aux.el (dired-compare-directories): Add autoload cookie.
30322         Doc fix.  Replace `read-file-name' with `read-directory-name'.
30324 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
30326         * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
30328 2005-03-24  Jay Belanger  <belanger@truman.edu>
30330         * calc/calc-embed.el (calc-embedded-mode-change): Save all
30331         relevant mode settings in calc-embedded-original-modes when modes
30332         are permanently changed.
30334 2005-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
30336         * autoinsert.el: find-file-hooks -> find-file-hook.
30338 2005-03-24  Lute Kamstra  <lute@gnu.org>
30340         * generic.el (generic-font-lock-defaults): Make it obsolete.
30341         (generic-font-lock-keywords): New variable to replace
30342         generic-font-lock-defaults.
30343         (generic-mode-set-font-lock): Delete it.
30344         (generic-mode-internal): Don't call generic-mode-set-font-lock.
30345         (generic-bracket-support): Add docstring.
30347         * generic-x.el: Rename generic-font-lock-defaults to
30348         generic-font-lock-keywords throughout.
30349         (mailagent-rules-setup-function): Delete it.
30350         (mailagent-rules-generic-mode): Use anonymous function instead.
30351         (show-tabs-generic-mode-font-lock-defaults-1)
30352         (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
30353         Quote faces.
30354         (show-tabs-tab-face, show-tabs-space-face): Specify background,
30355         not foreground.
30357         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
30358         Recognize define-generic-mode.
30360 2005-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
30362         * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
30363         if there's no completion table.
30365 2005-03-23  Miles Bader  <miles@gnu.org>
30367         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
30368         Remove tty-specific variants, as they're no longer needed.
30370 2005-03-23  Lute Kamstra  <lute@gnu.org>
30372         * generic-x.el: Code cleanup: make args constant whenever possible.
30373         (installshield-statement-keyword-list)
30374         (installshield-system-functions-list)
30375         (installshield-system-variables-list, installshield-types-list)
30376         (installshield-funarg-constants-list): Make them constants.
30378         * generic.el (generic-make-keywords-list): Add autoload cookie.
30380         * calendar/time-date.el: Add comment on time value formats.
30381         Don't require parse-time.
30382         (with-decoded-time-value): New macro.
30383         (encode-time-value): New function.
30384         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
30385         (days-to-time): Return a valid time value when arg is huge.
30386         (time-since): Use time-subtract.
30387         (time-to-number-of-days): Use time-to-seconds.
30389 2005-03-23  David Ponce  <david@dponce.com>
30391         * recentf.el (recentf-keep): New option.
30392         (recentf-menu-action): Default to `find-file'.
30393         (recentf-keep-non-readable-files-flag)
30394         (recentf-keep-non-readable-files-p)
30395         (recentf-file-readable-p, recentf-find-file)
30396         (recentf-cleanup-remote): Remove.
30397         (recentf-include-p): More robust.
30398         (recentf-keep-p): New function.
30399         (recentf-remove-if-non-kept): Rename from
30400         `recentf-remove-if-non-readable'.  Use `recentf-keep-p'.
30401         All callers updated.
30402         (recentf-menu-items-for-commands): Fix help string.
30403         (recentf-track-closed-file): Update.  Doc fix.
30404         (recentf-cleanup): Update.  Count removed files.  Doc fix.
30406 2005-03-23  Kim F. Storm  <storm@cua.dk>
30408         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
30409         Don't inherit from fringe face (now happens automatically).
30411 2005-03-22  Kim F. Storm  <storm@cua.dk>
30413         * tooltip.el (tooltip-show-help-function): Ignore negative mouse
30414         position values.
30416 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
30418         * menu-bar.el (showhide-date-time): Remove.
30419         (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
30420         (menu-bar-make-mm-toggle): Simplify.
30422 2005-03-22  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
30424         * progmodes/perl-mode.el (perl-font-lock-keywords-2):
30425         Accept qualified variable and function names.
30427 2005-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
30429         * bindings.el (completion-ignored-extensions):
30430         Remove ".lis" for `vax-vms'.
30432 2005-03-22  Andreas Schwab  <schwab@suse.de>
30434         * generic-x.el: Revert last change.
30435         * ldefs-boot.el: Update.
30437 2005-03-22  Jay Belanger  <belanger@truman.edu>
30439         * calc/calc-embed.el (calc-embedded-original-modes): New variable.
30440         (calc-embedded-save-original-modes)
30441         (calc-embedded-restore-original-modes): New functions.
30442         (calc-do-embedded): Save original modes when entering embedded mode
30443         and restore when leaving embedded mode.
30444         (calc-embedded-modes-change): Change the value of
30445         calc-embedded-original-modes to reflect permanent changes.
30447 2005-03-22  Lute Kamstra  <lute@gnu.org>
30449         * generic-x.el: Require generic again.
30451 2005-03-22  Miles Bader  <miles@gnu.org>
30453         * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
30454         Tweak details to look good on both ttys and bitmap displays, light
30455         or dark background, etc.
30457 2005-03-21  Kim F. Storm  <storm@cua.dk>
30459         * tooltip.el (tooltip-show-help-function): Check car and cdr of
30460         mouse position.
30462 2005-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
30464         * icomplete.el: Don't forcibly turn on the mode upon load.
30465         (icomplete-mode): Use define-minor-mode.
30466         (icomplete-eoinput): Default to nil.
30467         (icomplete-minibuffer-setup): Remove autoload.
30468         (icomplete-tidy): Simplify.
30469         (icomplete-exhibit): Use buffer-undo-list to determine if we're still
30470         in the initial state or if the user has modified the field.
30471         Fix handling of icomplete-max-delay-chars.
30472         Remove code that handles the oddball case where
30473         minibuffer-completion-table is an integer.
30474         Wrap icomplete-completions in while-no-input in case building
30475         completions takes more time than expected.
30476         (icomplete-completions): Simplify.
30478 2005-03-21  Richard M. Stallman  <rms@gnu.org>
30480         * jka-compr.el (jka-compr-really-do-compress):
30481         Make variable buffer-local.
30483         * image-mode.el: Handle .xpm files too.
30484         (image-toggle-display): Preserve modification flag.
30486         * help.el (where-is): Don't mention aliases with no key bindings.
30488 2005-03-21  Lute Kamstra  <lute@gnu.org>
30490         * generic.el: Fix commentary section.  Don't require cl for
30491         compilation.
30492         (generic-mode-list): Add autoload cookie.
30493         (generic-use-find-file-hook, generic-lines-to-scan)
30494         (generic-find-file-regexp, generic-ignore-files-regexp)
30495         (generic-mode, generic-mode-find-file-hook)
30496         (generic-mode-ini-file-find-file-hook): Fix docstrings.
30497         (define-generic-mode): Make it a defmacro.  Fix docstring.
30498         (generic-mode-internal): Code cleanup.  Add autoload cookie.
30499         (generic-mode-set-comments): Code cleanup.
30500         * generic-x.el: Don't prevent compilation.  Don't require generic.
30501         Follow coding conventions.  Minor code cleanup.
30502         (etc-fstab-generic-mode): Add some keywords.
30503         * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
30504         define-generic-mode like a function declaration.
30506 2005-03-21  Jay Belanger  <belanger@truman.edu>
30508         * calc/calc-embed.el (calc-do-embedded): Put data on stack before
30509         changing modes.
30511 2005-03-21  Sam Steingold  <sds@gnu.org>
30513         * add-log.el (add-log-current-defun): Support more C DEFUN forms.
30515 2005-03-21  Thien-Thi Nguyen  <ttn@gnu.org>
30517         * progmodes/dcl-mode.el (dcl-font-lock-keywords):
30518         Add underscore to "f$ lexicals" regexp.
30520 2005-03-20  Juri Linkov  <juri@jurta.org>
30522         * subr.el (progress-reporter-do-update): When `min-value' is equal
30523         to `max-value', set `percentage' to 0 and prevent division by zero.
30525 2005-03-20  Michael Albinus  <michael.albinus@gmx.de>
30527         Sync with Tramp 2.0.48.
30529         * net/tramp.el (all): Change all addresses to .gnu.org.
30530         (tramp-append-tramp-buffers): New defun.
30531         (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
30532         Catch `dont-send' signal.
30533         (tramp-set-auto-save-file-modes): Set always permissions, because
30534         there might be an old auto-saved file belonging to another
30535         original file.  This could be a security threat.  Reported by
30536         Kjetil Kjernsmo <kjetil@kjernsmo.net>.
30537         Check for Emacs 21.3.50 removed.
30539         * net/tramp-smb.el (all): Remove debug construct for
30540         `with-parsed-tramp-file-name'.
30541         (tramp-smb-prompt): Prompt can contain spaces inside directory names.
30542         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
30543         No error message if DIRECTORY or FILENAME doesn't exist.
30544         (tramp-smb-open-connection): Check existence of
30545         `tramp-smb-program'.
30547 2005-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
30549         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
30550         Properly handle the case where the `m' or `s' command's argument is not
30551         yet terminated.
30552         (perl-indent-new-calculate): New function.
30553         (perl-indent-line): Use it.
30555 2005-03-20  Miles Bader  <miles@gnu.org>
30557         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
30558         in text-mode too.  Change to new face names.
30559         (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
30560         Add `:weight bold' attribute.
30561         (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
30563 2005-03-19  Juri Linkov  <juri@jurta.org>
30565         * files.el (auto-mode-alist): Add comment.  Optimize jar/ear/war.
30567         * international/mule.el (auto-coding-alist): Sync with
30568         `auto-mode-alist' by adding upper case archive file extensions
30569         and adding ear/war to jar extension.
30571 2005-03-19  David Casperson  <casper@unbc.ca>  (tiny change)
30573         * textmodes/tex-mode.el (tex-view): If tex-shell process is not
30574         running, restart it.
30576 2005-03-19  Yoichi NAKAYAMA  <yoichi@geiin.org>  (tiny changes)
30578         * finder.el (finder-current-item): Throw an error on an empty line.
30580         * man.el (Man-follow-manual-reference): If current-word returns
30581         nil, use "".
30583 2005-03-19  Matt Hodges  <MPHodges@member.fsf.org>
30585         * simple.el (goto-line): Doc fix.
30587 2005-03-19  Aaron S. Hawley  <Aaron.Hawley@uvm.edu>
30589         * files.el (save-buffer): Doc fix.
30591 2005-03-19  Michael R. Mauger  <mmaug@yahoo.com>
30593         * recentf.el (recentf-cleanup-remote): New variable.
30594         (recentf-cleanup): Use it to conditionally check availability of
30595         remote files.
30597 2005-03-19  Joe Edmonds  <joe-bugs-debian-org@elem.com>  (tiny change)
30599         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
30600         function names.
30602 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
30604         * language/thai-word.el: New file.
30606 2005-03-19  JUAN-LEON Lahoz Garcia  <juanleon1@gmail.com>
30608         * files.el (backup-buffer): If the file's directory is not
30609         writable, use copy instead of move to backup the file.
30611 2005-03-19  Eli Zaretskii  <eliz@gnu.org>
30613         * obsolete/keyswap.el: Moved to obsolete/ from term/.
30615 2005-03-19  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
30617         * ps-print.el (ps-generate-string-list, ps-generate-header-line):
30618         Use functionp instead of symbolp and fboundp.  Reported by Drkm
30619         <darkman_spam@yahoo.fr>.
30620         (ps-print-version): New version 6.6.6.
30622 2005-03-18  Tak Ota  <Takaaki.Ota@am.sony.com>
30624         * textmodes/table.el (table--line-column-position): New idiom.
30625         (table--row-column-insertion-point-p): New function to test
30626         validity of row and column insertion operation at a location.
30627         (table-global-menu, table-cell-menu): Use above functions for
30628         deterministic test operation.
30629         (table--editable-cell-p): Behave in deterministic fashion.
30631 2005-03-18  Juri Linkov  <juri@jurta.org>
30633         * isearch.el (isearch-lazy-highlight-new-loop):
30634         Make arguments beg and end optional.
30635         (isearch-update): Remove optional arguments nil from
30636         isearch-lazy-highlight-new-loop.
30637         (isearch-lazy-highlight-search): Let-bind case-fold-search to
30638         isearch-lazy-highlight-case-fold-search instead of
30639         isearch-case-fold-search, and let-bind isearch-regexp to
30640         isearch-lazy-highlight-regexp.
30641         Use isearch-lazy-highlight-last-string instead of isearch-string.
30643         * replace.el (perform-replace): Remove bindings of global
30644         variables isearch-string, isearch-regexp, isearch-case-fold-search.
30645         Add three new arguments to `replace-highlight'.
30646         (replace-highlight): Add arguments string, regexp, case-fold.
30647         Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
30648         to allow isearch-lazy-highlight-new-loop to use these values
30649         to set corresponding isearch-lazy-highlight-* internal
30650         variables whose values lazy highlighting will use regardless of
30651         changes to global variables isearch-string, isearch-regexp,
30652         isearch-case-fold-search during lazy highlighting loop.
30653         (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
30654         to `lazy-highlight-cleanup'.
30656         * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
30657         (ispell-highlight-face): Set default face to `isearch' when
30658         lazy highlighting is enabled.
30659         (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
30660         priority to 1.  Add lazy highlighting.
30661         (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
30662         from `isearch-dehighlight'.
30664 2005-03-18  David Ponce  <david@dponce.com>
30666         * files.el (hack-local-variables): Do a case-insensitive search
30667         for End.
30669 2005-03-18  Juri Linkov  <juri@jurta.org>
30671         * isearch.el (lazy-highlight-cleanup) <command>: Rename from
30672         `isearch-lazy-highlight-cleanup', add alias to old name and
30673         declare obsolete.  Add release numbers to other obsolete vars.
30674         (isearch-done, isearch-lazy-highlight-new-loop):
30675         Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
30676         (lazy-highlight-cleanup) <variable>: Doc fix.
30677         (isearch-lazy-highlight-update): Rename obsolete
30678         `isearch-lazy-highlight-face' to `lazy-highlight-face'.
30680 2005-03-18  Kenichi Handa  <handa@m17n.org>
30682         * language/thai-util.el: Fix categorization of Thai characters in
30683         thai-category-table.
30684         (thai-composition-pattern): Adjust it for the above change.
30685         (thai-self-insert-command, thai-compose-syllable): New functions.
30686         (thai-compose-region): Use thai-compose-syllable.
30687         (thai-compose-string): Likewise.
30688         (thai-composition-function): Likewise.
30689         (thai-auto-composition): New function.
30690         (thai-auto-composition-mode): New minor mode.
30692         * language/thai.el: Fix patterns to be registered in
30693         composition-function-table.
30695         * international/quail.el (quail-input-method): Locally bind
30696         inhibit-modification-hooks to t.
30698 2005-03-17  Richard M. Stallman  <rms@gnu.org>
30700         * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
30701         (perl-mode): Use run-mode-hooks.
30703         * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
30704         (rmail-pop-password-required, rmail-remote-password): Doc fixes.
30705         (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
30707         * mail/sendmail.el (sendmail-send-it): Reenable the code
30708         to compute resend-to-address and use it.
30710         * tar-mode.el (tar-mode): Turn off undo unconditionally.
30712         * image-mode.el: New file.
30714         * image.el (insert-sliced-image): Add autoload cookie.
30716         * font-lock.el (font-lock-lines-before): New user option.
30717         (font-lock-after-change-function): Obey it.
30719         * bindings.el (esc-map): Make M-g a prefix.
30720         Bind M-g g and M-g M-g to goto-line.
30722         * faces.el (face-id): Doc fix.
30724 2005-03-17  Frederik Fouvry  <fouvry@CoLi.Uni-SB.DE>
30726         * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
30727         (rmail-show-message): Use rmail-unknown-mail-followup-to.
30728         (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
30730         * mail/sendmail.el (mail-yank-ignored-headers)
30731         (mail-font-lock-keywords, mail-mode-fill-paragraph):
30732         Add Mail-Followup-To and Mail-Reply-To headers.
30733         (mail-citation-hook): Add autoload cookie.
30734         (mail-mode): Doc fix.
30735         (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
30736         (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
30737         (mail-mode-fill-paragraph): Handle those headers.
30738         (mail-mailing-lists): New variable.
30739         (mail-mail-reply-to, mail-mail-followup-to): New functions.
30741 2005-03-17  Juri Linkov  <juri@jurta.org>
30743         * isearch.el (isearch-fallback): Check for `(car previous)'
30744         before calling `isearch-other-end-state'.
30746 2005-03-17  Kim F. Storm  <storm@cua.dk>
30748         * simple.el (move-beginning-of-line): Move to beginning of buffer
30749         line, as well as beginning of screen line.
30751 2005-03-16  Glenn Morris  <gmorris@ast.cam.ac.uk>
30753         * calendar/diary-lib.el (mark-diary-entries): Use new optional
30754         argument REDRAW rather than calendar-redrawing variable.
30755         * calendar/calendar.el (calendar-redrawing): Delete.
30756         (redraw-calendar): Do not bind calendar-redrawing.
30758 2005-03-16  Matt Hodges  <MPHodges@member.fsf.org>
30760         * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
30761         diary-file buffer.
30763 2005-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
30765         * help.el (describe-mode): Allow a :minor-mode-function property to
30766         specify a different minor mode toggle function than the variable.
30767         * simple.el (auto-fill-function):
30768         * subr.el (add-minor-mode): Use it.
30770 2005-03-16  Kenichi Handa  <handa@m17n.org>
30772         * language/ethio-util.el (sera-being-called-by-w3): New variable.
30773         (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
30774         (ethio-fidel-to-sera-buffer): Likewise.
30776 2005-03-16  Juri Linkov  <juri@jurta.org>
30778         * emacs-lisp/find-func.el (find-function-regexp):
30779         Add defun-emitting macro `menu-bar-make-toggle'.
30781         * isearch.el: Put `isearch-scroll' property to
30782         `split-window-horizontally'.
30784         * info.el: Update error messages for `debug-ignored-errors'.
30785         (Info-isearch-search): Doc fix.
30786         (Info-find-node): Move up code to go into info buffer before
30787         recording the node to the history.
30788         (Info-fontify-node): Fontify titles only if the next line
30789         has two or more `*', `=', `-', `.'.
30790         Display "go to this node" for empty (match-string 3).
30792 2005-03-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
30794         * term/mac-win.el: Add mouse pointer shape constants.
30796 2005-03-15  Kim F. Storm  <storm@cua.dk>
30798         * simple.el (move-beginning-of-line): Use vertical-motion.
30800 2005-03-15  Juri Linkov  <juri@jurta.org>
30802         * isearch.el (isearch-error): New variable.
30803         (isearch-invalid-regexp, isearch-within-brackets): Remove.
30804         (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
30805         (isearch-within-brackets-state): Remove.
30806         (isearch-case-fold-search-state, isearch-pop-fun-state):
30807         Decrease frame index.
30808         (isearch-mode, isearch-top-state, isearch-push-state)
30809         (isearch-edit-string, isearch-abort, isearch-search-and-update)
30810         (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
30811         (isearch-search, isearch-lazy-highlight-new-loop):
30812         Replace `isearch-invalid-regexp' with `isearch-error'.
30813         Remove `isearch-within-brackets'.
30814         (isearch-search): Add `search-failed' handler to `condition-case'.
30815         (isearch-lazy-highlight-search): Add `condition-case' to catch
30816         errors and allow `isearch-lazy-highlight-update' to try
30817         highlighting from the beginning of the window.
30818         (isearch-repeat): Move up code to set isearch-wrapped to t
30819         before calling isearch-wrap-function.
30821         * info.el (Info-isearch-initial-node): New internal variable.
30822         (Info-search): Signal an error in isearch mode when search leaves
30823         the initial node.  Signal an error when `bound' is non-nil and
30824         nothing was found in the current subfile.
30825         (Info-isearch-search): Remove `condition-case'.
30826         (Info-isearch-wrap): Don't wrap when search failed during leaving
30827         the initial node.  If `Info-isearch-search' is nil, wrap around
30828         the current node.
30829         (Info-isearch-start): New fun.
30830         (Info-mode): Add buffer-local hook `Info-isearch-start' to
30831         `isearch-mode-hook'.
30833 2005-03-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
30835         * simple.el (normal-erase-is-backspace): Set default to t if
30836         running on Mac.
30838         * term/mac-win.el (function-key-map): Sync with x-win.el.
30840 2005-03-15  Kenichi Handa  <handa@m17n.org>
30842         * international/mule-cmds.el (locale-language-names): Modify the
30843         format of elements and add more entries.
30844         (locale-preferred-coding-systems): Add more entries.
30845         (set-locale-environment): Adjust for the change of
30846         locale-language-names.
30848 2005-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
30850         * pcvs.el (smerge-ediff): Remove bogus autoload.
30852 2005-03-14  Lute Kamstra  <lute@gnu.org>
30854         * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
30855         Ignore a `*' at the beginning of a line.
30857         * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
30858         * emacs-lisp/byte-run.el (macro-declaration-function): Move from
30859         subr.el.
30860         (dont-compile, eval-when-compile, eval-and-compile): Use declare
30861         to specify indentation.
30863         * generic.el (define-generic-mode): Let generic-mode-list be a
30864         list of strings; test membership with equal.
30866 2005-03-14  Kim F. Storm  <storm@cua.dk>
30868         * simple.el (next-line, previous-line): Add optional try-vscroll
30869         arg to recognize interactive use.  Pass it on to line-move.
30870         (line-move): Don't perform auto-window-vscroll when defining or
30871         executing keyboard macro to ensure consistent behavior.
30873 2005-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
30875         * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
30877 2005-03-13  Lute Kamstra  <lute@gnu.org>
30879         * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
30880         debugger-setup-buffer so that backtrace marks the frames set to
30881         debug-on-exit and we don't have to do it manually.  Set an extra
30882         debug-on-exit for macro's.
30883         (debugger-setup-buffer): Don't mark the top frame manually.
30885 2005-03-12  Lute Kamstra  <lute@gnu.org>
30887         * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
30888         lisp-indent-function throughout.
30889         (with-no-warnings): Set lisp-indent-function property.
30891 2005-03-12  Thien-Thi Nguyen  <ttn@gnu.org>
30893         * progmodes/dcl-mode.el (dcl-mode-syntax-table):
30894         Add entry for backslash.
30896 2005-03-12  Juri Linkov  <juri@jurta.org>
30898         * info.el (Info-search): Four fixes for backward search.
30900 2005-03-11  Jay Belanger  <belanger@truman.edu>
30902         * calc/calc.el (calc-language-alist): New variable.
30903         * calc/calc-embed.el (calc-embedded-language-alist): Remove.
30904         (calc-embedded-find-modes): Use calc-language-alist instead of
30905         calc-embedded-language-alist.
30907 2005-03-11  Glenn Morris  <gmorris@ast.cam.ac.uk>
30909         * calendar/calendar.el (calendar-redrawing): New internal
30910         variable.
30911         (redraw-calendar): Remove bogus save-excursion from previous
30912         change.  Bind calendar-redrawing to t for mark-diary-entries.
30913         * calendar/diary-lib.el (mark-diary-entries): No need to redraw
30914         calendar if that is why we were called.
30916 2005-03-11  Kenichi Handa  <handa@m17n.org>
30918         * international/mule.el (make-coding-system): Set property
30919         coding-system-define-form to nil.
30920         (define-coding-system-alias): Likewise.
30922 2005-03-11  Kenichi Handa  <handa@m17n.org>
30924         These changes are suggested by Dave Love <fx@gnu.org>.
30926         * textmodes/fill.el: Change encoding to iso-2022-7bit and add
30927         coding: tag.
30928         (adaptive-fill-regexp): Add more bullets.
30929         (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
30930         regexps.
30932 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
30934         * help.el (describe-mode): Properly handle non-trivial lighters.
30935         Don't ignore minor modes that are not listed in minor-mode-list.
30937         * tooltip.el (tooltip-mode): Don't complain that you can't turn the
30938         feature ON when the user requests to turn it OFF.
30940 2005-03-10  Lute Kamstra  <lute@gnu.org>
30942         * emacs-lisp/debug.el (debug-entry-code): Delete it.
30943         (implement-debug-on-entry): New function to replace debug-entry-code.
30944         (debug-on-entry-1): Use implement-debug-on-entry.  Delete the
30945         second argument as the 2005-03-07 change makes it obsolete.
30946         (debug-on-entry, cancel-debug-on-entry): Update call to
30947         debug-on-entry-1.
30948         (debug, debugger-setup-buffer): Comment update.
30949         (debugger-frame-number): Update to work with implement-debug-on-entry.
30951 2005-03-10  Jay Belanger  <belanger@truman.edu>
30953         * calc/calc-embed.el (math-ms-args): Declare it.
30954         (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
30955         math-ms-args.
30956         (calc-embedded-subst): Use math-multi-subst-rec to substitute
30957         variables.
30959 2005-03-10  Nick Roberts  <nickrob@snap.net.nz>
30961         * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
30962         Use message-box.
30964         * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
30965         (tooltip-activate-mouse-motions-if-enabled): Use dolist.
30966         (tooltip-gud-tips): Simplify.
30967         (tooltip-gud-tips-p): Remove superfluous :set.
30968         (tooltip-gud-modes): Add fortran-mode.
30969         (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
30971         * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
30973 2005-03-09  Kim F. Storm  <storm@cua.dk>
30975         * play/animate.el (animate-place-char): Use forward-line instead
30976         of next-line to improve performance.
30978 2005-03-09  Simon Josefsson  <jas@extundo.com>
30980         * net/browse-url.el (browse-url-default-browser): Doc fix.
30982 2005-03-09  Miles Bader  <miles@gnu.org>
30984         * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
30985         (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
30987 2005-03-09  Kenichi Handa  <handa@m17n.org>
30989         * international/latin-1.el: Set case and syntax for 255 only if
30990         set-case-syntax-set-multibyte is nil.
30992         * textmodes/ispell.el (ispell-insert-word): New function.
30993         (ispell-word): Use ispell-insert-word to insert a new word.
30994         (ispell-process-line): Likewise.
30995         (ispell-complete-word): Likewise.
30997 2005-03-09  Glenn Morris  <gmorris@ast.cam.ac.uk>
30999         * calendar/calendar.el (redraw-calendar): Preserve point.
31000         Reported by Matt Hodges <MPHodges@member.fsf.org>.
31001         (calendar-week-start-day): Move after definition of
31002         redraw-calendar.  Delete buffer test, since redraw-calendar has
31003         that now.
31005         * calendar/diary-lib.el (mark-diary-entries): Only call
31006         redraw-calendar in the first of any recursive calls.
31007         Reported by Alan Shutko <ats@acm.org>.
31009 2005-03-08  Juri Linkov  <juri@jurta.org>
31011         * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
31012         (html-horizontal-rule, html-line, html-image, html-checkboxes)
31013         (html-radio-buttons): Add a space before the trailing `/>' where
31014         sgml-xml-mode is non-nil.
31015         (sgml-delete-tag): Check if the tag ends with `/>' to not delete
31016         the subsequent tag of the empty XML tag.
31017         (html-href-anchor): Don't set initial input to "http:".
31018         (html-image): Ask for the image URL and set point inside alt="".
31019         (html-name-anchor): Duplicate the name in the `id' attribute when
31020         sgml-xml-mode is non-nil.
31021         (html-paragraph): Remove \n before <p>.
31022         (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
31023         instead of `checked' when sgml-xml-mode is non-nil.
31025         * facemenu.el (list-colors-print): Print #RRGGBB in default face.
31026         Remove 1 space before #RRGGBB to not truncate it on terminal
31027         windows w/o fringes.  Remove 1 space between bg and fg examples
31028         to get more space.
31029         (list-colors-duplicates): Replace `and' with `if' for `boundp' to
31030         avoid byte-compile warnings.
31032         * image-file.el (image-file-handler): Put `safe-magic' property to
31033         `image-file-handler'.
31035         * info.el (Info-isearch-search): Emulate word search in
31036         isearching through multiple Info nodes with Info-search.
31037         (Info-isearch-wrap): Allow isearch-word.
31039 2005-03-08  Lute Kamstra  <lute@gnu.org>
31041         * emacs-lisp/debug.el (debugger-step-through): Make sure that
31042         stepping into the debugger's code is not possible.
31043         (debugger-jumping-flag): Docstring update.
31045 2005-03-08  Jay Belanger  <belanger@truman.edu>
31047         * calc/calc-embed.el (calc-do-embedded): Reset mode line when
31048         embedded mode begins.
31049         (calc-embedded-language-alist): New variable.
31050         (calc-embedded-find-modes): Use calc-embedded-language-alist to
31051         set default language mode.
31053 2005-03-08  Kenichi Handa  <handa@m17n.org>
31055         * international/ccl.el (define-ccl-program): Fix docstring about
31056         extra 256 bytes assured for the output buffer.
31058         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
31059         Fix BUFFER_MAGNIFICATION to 2.
31060         (ccl-encode-mule-utf-16be-with-signature): Likewise.
31062 2005-03-07  Karl Chen  <quarl@cs.berkeley.edu>
31064         * align.el (align-rules-list): Added an alignment rule for CSS
31065         declarations (applies to css-mode and html-mode buffers).
31067 2005-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
31069         * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
31071 2005-03-07  Kim F. Storm  <storm@cua.dk>
31073         * simple.el (move-beginning-of-line): New command.
31075         * bindings.el (global-map): Bind C-a to move-beginning-of-line.
31077         * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
31079         * emulation/cua-base.el: Put CUA move property on move-end-of-line
31080         and move-beginning-of-line.
31082         * apropos.el (apropos-print): Omit command from M-x ... RET.
31084 2005-03-07  Nick Roberts  <nickrob@snap.net.nz>
31086         * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
31087         (gdb-send, gdb-send-item): Log items sent from gdb-send too.
31089 2005-03-06  Richard M. Stallman  <rms@gnu.org>
31091         * bindings.el (esc-map): Bind M-g to goto-line.
31093         * facemenu.el (global-map): Bind M-o, not M-g.
31095 2005-03-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
31097         * menu-bar.el (menu-bar-file-menu): Add the same :enable to
31098         "Open Directory" as for "Open File".
31100 2005-03-06  Chong Yidong  <cyd@stupidchicken.com>
31102         * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
31103         (push-mark-command): Run activate-mark-hook.
31105 2005-03-06  Richard M. Stallman  <rms@gnu.org>
31107         * help-mode.el (help-mode-finish): Don't alter the element
31108         in view-return-to-alist if there already is one.
31110         * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
31111         make sure the current buffer is the expected one.
31113         * novice.el (disabled-command-function): Output in *Disabled Command*.
31114         Explicitly ignore non-keyboard events, and explicitly handle C-g.
31116         * textmodes/flyspell.el (flyspell-large-region):
31117         Pass args differently for aspell.
31119         * files.el (mode-require-final-newline): Doc fix.
31121 2005-03-03  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)
31123         * progmodes/which-func.el (which-function):
31124         Specify NOERROR when calling imenu--make-index-alist.
31126 2005-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
31128         * simple.el (normal-erase-is-backspace): Define default value.
31130         * custom.el (custom-theme-set-variables): Remove unused var
31131         `immediate'.
31132         (custom-reevaluate-setting): Simple function to handle variables
31133         that are defined before their default value can really be
31134         computed.
31136         * startup.el (command-line): Use it for temporary-file-directory,
31137         small-emporary-file-directory, auto-save-file-name-transforms,
31138         blink-cursor-mode, and normal-erase-is-backspace.
31140         * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
31141         progress, even with buggy anchored keywords.
31143 2005-03-05  Luc Teirlinck  <teirllm@auburn.edu>
31145         * simple.el (goto-line): Remove unbalanced final parenthesis.
31147 2005-03-05  Richard M. Stallman  <rms@gnu.org>
31149         * simple.el (goto-line): Use a number at point as the default.
31150         With C-u as arg, switch buffers.
31152 2005-03-05  Juri Linkov  <juri@jurta.org>
31154         * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
31155         with `no-blinking-cursor'.
31157         * startup.el (no-blinking-cursor): New defvar.
31158         (command-line): Add `--no-blinking-cursor' to longopts.
31159         Set `no-blinking-cursor' to t for command line arguments
31160         -Q, -nbc, --no-blinking-cursor.  Replace `emacs-quick-startup'
31161         with `no-blinking-cursor' in the condition for calling
31162         `blink-cursor-mode'.
31164 2005-03-04  Luc Teirlinck  <teirllm@auburn.edu>
31166         * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
31167         (menu-bar-options-save): Add blink-cursor-mode.
31168         (menu-bar-options-menu): Add blink-cursor-mode.
31170 2005-03-04  Ulf Jasper  <ulf.jasper@web.de>
31172         * calendar/icalendar.el (icalendar-version): Increase to 0.11.
31173         (icalendar-export-file, icalendar-export-region)
31174         (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
31175         (icalendar--convert-ical-to-diary): Fix problem with DURATION.
31177 2005-03-04  Lute Kamstra  <lute@gnu.org>
31179         * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
31180         (debug-function-list): Ditto.
31182 2005-03-04  Robert J. Chassell  <bob@rattlesnake.com>
31184         * textmodes/texinfmt.el (texinfo-append-refill):
31185         Redefine the types of line to which @refill
31186         is not appended by replacing a search for `@refill\\|@bye' with
31187         `@refill\\|^[ \t]*@'.  The intent is to solve both the `@end
31188         itemize@refill' bug and the unfilled long lines bug.
31189         (texinfmt-version): Update number and date.
31191 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
31193         * international/code-pages.el (windows-1250, windows-125[2-8])
31194         (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
31196 2005-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
31198         * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
31199         bound yet.
31201 2005-03-02  Romain Francoise  <romain@orebokech.com>
31203         * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
31204         buffer after removing limits.
31205         (ibuffer-pop-filter): Ditto.
31206         Update copyright.
31208 2005-03-02  Miles Bader  <miles@gnu.org>
31210         * button.el (make-text-button): If the user doesn't specify a
31211         type, use the default.  Rewrite to use `add-text-properties' and
31212         plist functions.
31214 2005-03-01  Lute Kamstra  <lute@gnu.org>
31216         * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
31217         (debugger-jumping-flag): New var.
31218         (debug-entry-code): Use it.
31219         (debugger-jump): Use debugger-jumping-flag and add
31220         debugger-reenable to post-command-hook.
31221         (debugger-reenable): Use debugger-jumping-flag and remove itself
31222         from post-command-hook.
31223         (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
31224         debugger-reenable.
31226 2005-03-01  Robert J. Chassell  <bob@rattlesnake.com>
31228         * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
31229         inclusion of "itemize\\|", which may be unnecessary, is certainly
31230         inelegant, and stops refilling in itemize lists when formatting
31231         Japanese Texinfo files to Info.
31232         Update copyright to 2005.
31234 2005-03-01  Nick Roberts  <nickrob@snap.net.nz>
31236         * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
31237         of an error if GDB can't find the source file.
31239 2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
31241         * calendar/calendar.el (redraw-calendar): Work from any buffer,
31242         not just the calendar.
31244         * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
31245         first.
31246         (diary-redraw-calendar): New function.
31247         (make-diary-entry): Add diary-redraw-calendar to local
31248         write-contents-functions.  Turn off selective display before
31249         inserting in diary.
31251 2005-03-01  Kim F. Storm  <storm@cua.dk>
31253         * emacs-lisp/copyright.el (copyright-fix-years): New command.
31255 2005-03-01  Lute Kamstra  <lute@gnu.org>
31257         * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
31258         that debug-entry-code can be safely removed from a function while
31259         this code is being evaluated.  Revert the 2005-02-27 change as the
31260         new implementation no longer requires it.  Make sure that a
31261         function body containing just a string is not mistaken for a docstring.
31262         (debug): Skip one more frame in case of debug on entry.
31263         (debugger-setup-buffer): Delete one more frame line in case of
31264         debug on entry.
31265         (debugger-frame-number): Update to use the new text introduced by
31266         the 1999-11-03 change.  Skip one more frame in case of debug on entry.
31268 2005-02-28  Kim F. Storm  <storm@cua.dk>
31270         * double.el (double-translate-key): Call force-window-update after
31271         read-event to avoid crash in redisplay.
31273 2005-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
31275         * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
31276         (debug): Use it.  Move the inhibit-trace earlier.
31277         (debug-entry-code): New const.
31278         (debug-on-entry-1): Use it.
31280 2005-02-28  Chong Yidong  <cyd@stupidchicken.com>
31282         * international/utf-16.el (ccl-encode-mule-utf-16le):
31283         Fix BUFFER_MAGNIFICATION to 2.
31284         (ccl-encode-mule-utf-16be): Likewise.
31286 2005-02-28  Kenichi Handa  <handa@m17n.org>
31288         * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
31289         Fix BUFFER_MAGNIFICATION to 4.
31290         (ccl-encode-mule-utf-16be-with-signature): Likewise.
31292 2005-02-28  Nick Roberts  <nickrob@snap.net.nz>
31294         * speedbar.el (speedbar-update-flag): Doc fix.
31295         (speedbar-show-info-under-mouse): Give set-mouse-position the right
31296         argument.
31298 2005-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
31300         * reveal.el (reveal-post-command): Don't try to reveal overlays which
31301         have a non-nil `invisible' property but are actually visible.
31303         * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
31304         for perldoc sections.
31305         (perl-outline-regexp, perl-outline-level): New var and function.
31306         (perl-mode): Use them.
31308 2005-02-27  Glenn Morris  <gmorris@ast.cam.ac.uk>
31310         * calendar/diary-lib.el (diary-remind): Discard any mark portion
31311         from diary-entry.  Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
31313 2005-02-27  Luc Teirlinck  <teirllm@auburn.edu>
31315         * cus-edit.el: Comment change.
31316         (custom-buffer-create-internal): Slightly reword text at top of
31317         Custom buffers.  Mention there that saving an option edits the
31318         init file.  Add link to Emacs manual node on `custom-file'.
31319         (custom-magic-alist): Rewrite individual State messages to use
31320         capitalized keywords.  Doc fix.
31322 2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>
31324         * calendar/calendar.el (calendar-buffer): Move above
31325         calendar-week-start-day.
31326         (calendar-week-start-day): Doc fix.  Add :set function.
31327         (calendar-minimum-window-height): New variable.
31328         (generate-calendar-window): Only resize window if selected-window
31329         is displaying the calendar buffer.  Use new variable
31330         calendar-minimum-window-height.
31331         (generate-calendar): Reword error message.
31332         (calendar-mode-map): Bind DEL to scroll-other-window-down.
31334 2005-02-27  Andreas Schwab  <schwab@suse.de>
31336         * vc.el (vc-do-command): Don't run command asynchronously when
31337         operating in a remote directory.
31339         * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
31340         change from sync with Tramp 2.0.47.
31342 2005-02-27  Richard M. Stallman  <rms@gnu.org>
31344         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
31346         * textmodes/flyspell.el (flyspell-mode-on):
31347         Call ispell-change-dictionary only if necessary.
31349         * emacs-lisp/re-builder.el (regexp-builder): New function.
31351         * register.el (describe-register-1): Explicitly handle
31352         yank-excluded-properties = t.
31354         * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
31355         (custom-magic-alist): Change the status descriptions again.
31356         (face widget-type): Total rewrite based on `restricted-sexp'
31357         to eliminate the confusing double hiding levels.
31359         * emacs-lisp/debug.el (debug-on-entry-1):
31360         If function body is empty, add nil as body form.
31362 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
31364         * emacs-lisp/trace.el (inhibit-trace): New var.
31365         (trace-make-advice): Use it.
31367         * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
31369 2005-02-26  Kim F. Storm  <storm@cua.dk>
31371         * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
31372         (mouse-on-link-p, mouse-drag-region-1): Use it.
31374 2005-02-25  Lute Kamstra  <lute@gnu.org>
31376         * replace.el (query-replace-read-from): Fix 2005-02-19 change.
31378 2005-02-24  Luc Teirlinck  <teirllm@auburn.edu>
31380         * frame.el (blink-cursor-mode): Add :group keyword.
31382 2005-02-24  Ulf Jasper  <ulf.jasper@web.de>
31384         * calendar/icalendar.el (icalendar--decode-isodatetime):
31385         New optional argument DAY-SHIFT.
31386         (icalendar-export-region): Fix coding-system-for-write.
31387         (icalendar--convert-ical-to-diary): Shift end-day of all-day
31388         events by one.
31390 2005-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
31392         * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
31394 2005-02-24  Kim F. Storm  <storm@cua.dk>
31396         * international/iso-acc.el (iso-accents-compose): Fix crash
31397         during redisplay.  Call force-window-update after read-event
31398         and delete-region to signal that window is not accurate.
31400 2005-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
31402         * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
31403         Remove unused and inexistent var `inhibit-trace'.
31404         (debugger-mode): Use run-mode-hooks.
31405         (debugger-list-functions): Add buttons; setup xref stack.
31407 2005-02-23  Richard M. Stallman  <rms@gnu.org>
31409         * calendar/appt.el (appt-time-msg-list): 3rd elt of each
31410         appointment says it was explicitly made.
31411         (appt-add): Set the 3rd element.
31412         (appt-make-list): Preserve explicit appointments.
31414         * subr.el (find-tag-default): Catch errors in forward-sexp.
31416 2005-02-23  Juri Linkov  <juri@jurta.org>
31418         * info.el (Info-isearch-search): New defcustom.
31419         (Info-isearch-search): Call the default isearch function
31420         when Info-isearch-search is nil.
31421         (Info-isearch-wrap): Use variable Info-isearch-search.
31423 2005-02-22  Luc Teirlinck  <teirllm@auburn.edu>
31425         * cus-edit.el: Comment change.
31427 2005-02-22  Kim F. Storm  <storm@cua.dk>
31429         * progmodes/hideif.el (hide-ifdef-use-define-alist):
31430         Use completing-read.  Suggested by Juan-Leon Lahoz Garcia.
31432 2005-02-22  Simon Josefsson  <jas@extundo.com>
31434         * net/browse-url.el (browse-url-netscape-new-window-is-tab):
31435         New variable.
31436         (browse-url-netscape): Use it.  Suggested by "Johann 'Myrkraverk'
31437         Oskarsson" <myrkraverk@users.sourceforget.net>.
31439 2005-02-22  Kim F. Storm  <storm@cua.dk>
31441         * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
31442         check that window of that event is the selected window.
31443         (mouse-drag-region-1): Compare mouse event window to selected
31444         window before setting point.
31446         * tooltip.el (tooltip-show-help-function): Pass event to
31447         mouse-on-link-p so it can check selected window.
31449 2005-02-22  Kenichi Handa  <handa@m17n.org>
31451         * ps-mule.el (ps-mule-header-string-charsets): Delete it.
31452         (ps-mule-show-warning): New function.
31453         (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
31454         characters are found.
31456         * ps-print.el (ps-header-footer-string): Return a list of header
31457         and footer strings.
31459 2005-02-21  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
31461         * pcvs.el (cvs-retrieve-revision): Fix thinko.
31463 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
31465         * frame.el (blink-cursor-mode): Use define-minor-mode.
31467         * term/mac-win.el (function-key-map): Use char-names more consistently.
31468         (file-name-coding-system): Only set it for MacOS-9.  The other case is
31469         already handled in mule-cmds.el (where it also works when mac-win.el
31470         is not used).
31472 2005-02-21  Kenichi Handa  <handa@m17n.org>
31474         * international/mule.el (ctext-pre-write-conversion): Always use
31475         " *code-converting-work*" buffer for work.
31477         * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
31479 2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
31481         * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
31483 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
31485         * ses.el (undo-more): Restore defadvice, but only the part that
31486         allows changes outside the restricted area of the buffer.
31488 2005-02-20  Kim F. Storm  <storm@cua.dk>
31490         * simple.el (line-move): Add fourth optional arg try-vscroll which
31491         must be set to perform auto-window-vscroll.
31492         When moving backwards and doing auto-window-vscroll, automatically
31493         vscroll to the last part of lines which are taller than the window.
31494         (next-line, previous-line): Set try-vscroll arg on line-move.
31496 2005-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
31498         * replace.el (query-replace, query-replace-regexp)
31499         (replace-string, replace-regexp): When operating on region, make
31500         the minibuffer prompt say so.
31502         * isearch.el (isearch-forward): Document isearch-query-replace and
31503         isearch-query-replace-regexp keybindings.
31505 2005-02-19  Jay Belanger  <belanger@truman.edu>
31507         * calc/calc-aent.el (math-read-token): Add local variable.
31509         * calc/calc-prog.el (calc-user-define-edit): Add local variable.
31510         (calc-edit-top): Move declaration to earlier in file.
31511         (calc-edit-macro-repeats): Add local variables.
31513         * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
31514         Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
31515         calcFunc-tanh.
31516         Adjust integration rule for calcFunc-tan.
31518 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
31520         * viper-cmd.el (viper-prefix-commands): Make into a defconst.
31521         (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
31522         (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
31523         (viper-skip-separators): Bug fix.
31524         (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
31525         particular major mode.
31526         (viper-del-backward-char-in-replace): Don't put deleted char on the
31527         kill ring.
31529         * viper-ex.el (viper-color-display-p): New function.
31530         (viper-has-face-support-p): Use viper-color-display-p.
31532         * viper-keym.el (viper-gnus-modifier-map): New keymap.
31534         * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
31536         * viper-util.el (viper-glob-unix-files): Fix shell status check.
31537         (viper-file-remote-p): Make equivalent to file-remote-p.
31539         * viper.el (viper-major-mode-modifier-list):
31540         Use viper-gnus-modifier-map.
31542 2005-02-19  David Kastrup  <dak@gnu.org>
31544         * subr.el (subregexp-context-p): Fix garbled doc string by adding
31545         quoting.
31547 2005-02-19  Jay Belanger  <belanger@truman.edu>
31549         * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
31550         Remove extra definitions.
31551         (calc-coth): New function.
31552         (calcFunc-cot): Fix `let'.
31554 2005-02-19  Eli Zaretskii  <eliz@gnu.org>
31556         * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
31557         the reasons we use "type pc" in these faces.
31559         * button.el (button): Ditto.
31561 2005-02-19  Michael Mauger  <mmaug@yahoo.com>
31563         * replace.el (query-replace-read-from): Set the value of
31564         query-replace-from-history-variable to handle the case of an empty
31565         string entered to accept the suggested default.
31567         * net/tramp.el (tramp-file-name-for-operation):
31568         Use dired-call-process instead of dired-call-process-command.
31570 2005-02-19  Jay Belanger  <belanger@truman.edu>
31572         * calc/calc-arith.el (math-trig-inverses, math-div-trig)
31573         (math-div-non-trig): New variables.
31574         (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
31575         (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
31576         (math-combine-prod, math-div-symb-fancy): Add simplifications for
31577         trig expressions.
31579 2005-02-19  Nick Roberts  <nickrob@snap.net.nz>
31581         * progmodes/gdb-ui.el (gdb-var-update-handler)
31582         (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
31583         for watch expressions,
31584         (gdb-var-create-handler): Don't set speedbar-update-flag.
31585         (gdb-post-prompt): Simplify test for speedbar.
31587 2005-02-19  Michael Kifer  <kifer@cs.stonybrook.edu>
31589         * ediff.el (ediff-set-diff-overlays-in-one-buffer)
31590         (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
31591         we use the syntax table of the correct buffer.
31592         (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
31593         Felix Gatzemeier.
31595         * ediff-init.el (ediff-hide-face): Check for definedness of functions.
31596         (ediff-file-remote-p): Make synonymous with file-remote-p.
31597         In all deffaces ediff-*-face-*, use min-colors.
31599         * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
31600         ediff-recurse-to-subdirectories.
31601         (ediff-mark-if-equal): Check that the arguments are strings, use
31602         ediff-same-contents (after to Felix Gatzemeier).
31604         * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
31605         nil.
31607 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
31609         * log-view.el (log-view-message-re): Fix up Subversion regexp.
31611 2005-02-18  David Kastrup  <dak@gnu.org>
31613         * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
31614         use `mark-active' when defined.
31616 2005-02-18  Kenichi Handa  <handa@m17n.org>
31618         * ps-print.el (ps-font-info-database): New entry
31619         ZapfChancery-MediumItalic with correct font name.  Fix font name
31620         of the entry Zapf-Chancery-MediumItalic.
31622 2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>
31624         * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
31626 2005-02-16  Kim F. Storm  <storm@cua.dk>
31628         * ido.el (ido-fallback-command): Pass user input to fallback command.
31630 2005-02-16  Nick Roberts  <nickrob@snap.net.nz>
31632         * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
31633         (gdb-find-file-hook): Add server prefix.
31635 2005-02-16  Richard M. Stallman  <rms@gnu.org>
31637         * replace.el (perform-replace): Pass new args to replace-highlight.
31638         (replace-highlight): Take region args,
31639         and pass them to isearch-lazy-highlight-new-loop.
31641         * novice.el (disabled-command-hook): Autoload the defalias
31642         and the make-obsolete-variable call.
31644         * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
31646         * isearch.el (isearch-lazy-highlight-start-limit)
31647         (isearch-lazy-highlight-end-limit): New variables limit
31648         the region for highlighting.
31649         (isearch-lazy-highlight-new-loop): New args BEG and END.
31650         (isearch-lazy-highlight-search): Use the new vars.
31651         (isearch-lazy-highlight-update): Likewise.
31653         * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
31655         * cus-start.el (all): Use default-boundp.
31657 2005-02-15  David Casperson  <casper@unbc.ca>  (tiny change)
31659         * menu-bar.el (menu-bar-select-frame): Handle current frame.
31661 2005-02-15  Luc Teirlinck  <teirllm@auburn.edu>
31663         * autorevert.el (auto-revert-stop-on-user-input)
31664         (auto-revert-verbose): Doc fixes.
31666 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
31668         * international/mule-cmds.el (set-locale-environment): Remove call
31669         to set-selection-coding-system on Windows.
31671 2005-02-15  Jay Belanger  <belanger@truman.edu>
31673         * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
31674         calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
31675         calcFunc-coth.
31676         (math-simplify-sqrt): Add simplifications.
31678         * calc/calc-arith.el (math-real-if-arg-functions): Add functions
31679         to list.
31681         * calc/calc-ext.el: Add functions to autoloads.
31683         * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
31684         (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
31685         (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
31686         (math-csc-raw, math-cot-raw): New functions.
31688         * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
31690         * calc/calc-undo.el (calc-handle-undo): Remove prefix from
31691         the variable name in a message.
31693         * calc/calc-units.el: Add simplification rules for calcFunc-sec,
31694         calcFunc-csc, calcFunc-cot.
31696         * calc/calcalg2.el: Add derivative and integration rules for
31697         calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
31698         calcFunc-csch, calcFunc-coth.
31699         (math-do-integral-methods): Add to checks for when to use
31700         substitutions.
31702         * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
31704 2005-02-15  Lute Kamstra  <lute@gnu.org>
31706         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
31707         Add ;;;###autoload to `outline-regexp'.  Suggested by Stefan Monnier
31708         <monnier@iro.umontreal.ca>.
31709         (lisp-outline-level): Improve efficiency.  Suggested by David
31710         Kastrup <dak@gnu.org>.
31712 2005-02-15  Nick Roberts  <nickrob@snap.net.nz>
31714         * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
31715         (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
31716         (gdb-set-gud-minor-mode-existing-buffers): New functions.
31717         (gdb-find-file-hook): New hook.  Add it to find-file-hook.
31718         (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
31720 2005-02-14  Luc Teirlinck  <teirllm@auburn.edu>
31722         * cus-start.el (all): Comment change.
31724 2005-02-14  Lute Kamstra  <lute@gnu.org>
31726         * cus-start.el (all): Check if symbol is void.
31728 2005-02-14  Carsten Dominik  <dominik@science.uva.nl>
31730         * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
31731         optional argument to \cite.
31733 2005-02-14  Richard M. Stallman  <rms@gnu.org>
31735         * cus-edit.el (custom-buffer-create-internal): Update help message.
31736         (custom-magic-alist): Update help messages.
31738         * cus-start.el (all): Allow a var to specify a standard value.
31740 2005-02-12  Luc Teirlinck  <teirllm@auburn.edu>
31742         * custom.el (custom-theme-set-variables): Handle variable aliases.
31744         * frame.el (blink-cursor-timer): Doc fix.
31745         (blink-cursor): Make it an alias for `blink-cursor-mode' and
31746         declare obsolete.
31747         (blink-cursor-mode): Define with defcustom and use correct
31748         standard expression in that defcustom.
31749         * startup.el (command-line): Adapt to above changes in frame.el.
31751 2005-02-11  Lute Kamstra  <lute@gnu.org>
31753         * apropos.el (apropos-score-doc): Prevent division by zero.
31755 2005-02-11  Ulf Jasper  <ulf.jasper@web.de>
31757         * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
31758         (icalendar--get-event-property-attributes)
31759         (icalendar--get-event-properties)
31760         (icalendar--datetime-to-diary-date): New functions.
31761         (icalendar--split-value): Doc fix.
31762         (icalendar--datetime-to-noneuropean-date)
31763         (icalendar--datetime-to-european-date): New optional argument
31764         SEPARATOR.  Return result as a string instead of a list.
31765         (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
31766         (icalendar--convert-string-for-export): Rename arg S to STRING.
31767         (icalendar-export-region): Doc fix.  Change name of error buffer.
31768         Save output buffer.
31769         (icalendar-import-file): Add blank at end of prompt.
31770         (icalendar-import-buffer): Doc fix.  Do not switch to error
31771         buffer.  Indicate status in return value.
31772         (icalendar--convert-ical-to-diary): Doc fix.  Change name of error
31773         buffer.  Save output buffer.  Handle exception from recurrence
31774         rules (EXDATE, EXRULE).  Handle start- and end-date of recurring
31775         events.  Fix problems with weekly all-day events.
31777 2005-02-10  Richard M. Stallman  <rms@gnu.org>
31779         * simple.el (eval-expression-print-format):
31780         Avoid warning about edebug-active.
31782         * help.el (help-for-help-internal): Rename from help-for-help.
31783         (help-for-help): Define with defalias.
31785         * font-core.el (font-lock-default-function): Use with-no-warnings.
31787         * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
31789         * custom.el (defface): Doc fix.
31791 2005-02-10  Nick Roberts  <nickrob@snap.net.nz>
31793         * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
31794         width 0" to prevent word wrapping problems.
31796 2005-02-09  Kim F. Storm  <storm@cua.dk>
31798         * ido.el (ido-file-extensions-order): New defcustom.
31799         (ido-file-extension-lessp, ido-file-extension-aux)
31800         (ido-file-extension-order): New advanced file ordering.
31801         (ido-file-lessp): New simple file ordering.
31802         (ido-sort-list): Remove.
31803         (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
31804         (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
31806 2005-02-08  Dan Nicolaescu  <dann@ics.uci.edu>
31808         * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
31809         that some versions of grep produce.
31810         (grep-mode-font-lock-keywords): Likewise.
31812 2005-02-09  Nick Roberts  <nickrob@snap.net.nz>
31814         * progmodes/gdb-ui.el (gdb-location-list): New variable.
31815         (gdb-cdir): Delete.
31816         (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
31817         (gdb-source-info): Treat case when source file is in another
31818         directory properly.
31819         (gdb-get-location): New function.
31821 2005-02-07  Jay Belanger  <belanger@truman.edu>
31823         * calc/calc-prog.el (calc-write-parse-table-part)
31824         (calc-fix-token-name): Fix a check for language type.
31826         * calc/calccomp.el (math-compose-expr): Fix a check for language type.
31828 2005-02-07  Andre Spiegel  <spiegel@gnu.org>
31830         * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
31831         as directory not writable.
31833 2005-02-07  Kim F. Storm  <storm@cua.dk>
31835         * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
31836         (cua--standard-movement-commands): Remove list.
31837         Instead, set CUA property value to move for movement commands.
31838         (cua-movement-commands): Remove.  Users must set CUA prop instead.
31839         (cua--pre-command-handler): Check CUA property.
31840         (cua--init-keymaps): Don't remap undo commands.
31841         (cua-mode): Don't call cua--rectangle-on-off.
31843         * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
31844         (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
31845         (cua--rect-undo-set-point): New var.
31846         (cua--rectangle-undo-boundary): Setup undo apply entry.
31847         (cua--rect-undo-handler): New function for rectangle undo.
31848         (cua--rect-start-position, cua--rect-end-position): Add.
31849         (cua--rectangle-post-command): Call cua--rectangle-set-corners
31850         for restored rectangle.  Set point if cua--rect-undo-set-point.
31852 2005-02-06  Jay Belanger  <belanger@truman.edu>
31854         * calc/calc-lang.el (calc-tex-language): Display more information
31855         in messages.
31857         * calc/calccomp.el (math-compose-expr): Allow multiline matrices
31858         in TeX mode.
31860 2005-02-06  Richard M. Stallman  <rms@gnu.org>
31862         * emacs-lisp/lisp.el (buffer-end): Doc fix.
31864 2005-02-05  Arne J\e,Ax\e(Brgensen  <arne@arnested.dk>  (tiny change)
31866         * net/ldap.el (ldap-search-internal): Support attributes with
31867         optional descriptions separated by a semi-colon, as in
31868         "userCertificate;binary".
31870 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
31872         * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
31873         isn't a cons (i.e. the version is 0).
31875 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
31877         * help.el (help-for-help): Doc fix.
31879 2005-02-05  Nick Roberts  <nickrob@snap.net.nz>
31881         * progmodes/gdb-ui.el: Update copyright.  Put GDB-Frames before
31882         GDB-Windows on the menu-bar as this works better.
31884 2005-02-04  Jay Belanger  <belanger@truman.edu>
31886         * calc/calc-embed.el (calc-embedded-update): Don't put in
31887         unnecessary newlines.  Adjust the end of formula marker.
31889         * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
31890         (math-latex-parse-two-args): New function.
31892 2005-02-03  Lute Kamstra  <lute@gnu.org>
31894         * help-fns.el (help-with-tutorial): Make sure that users cannot
31895         remove the entire text of the tutorial by means of `undo'.
31897 2005-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
31899         * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
31900         in recent changes, where the ispell process was repeatedly
31901         killed & restarted.
31903         * international/mule-cmds.el (set-locale-environment): Set file-name
31904         coding system to utf-8 on Darwin systems.
31905         (set-default-coding-systems): Don't set default-file-name-coding-system
31906         on Darwin systems.
31908 2005-02-03  Richard M. Stallman  <rms@gnu.org>
31910         * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
31912 2005-02-03  Matt Hodges  <MPHodges@member.fsf.org>
31914         * faces.el (list-faces-display): Add optional argument.
31916 2005-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
31918         * font-core.el (font-lock-default-function): Handle the rare case where
31919         only font-lock-keywords is set.
31921 2005-02-02  Kenichi Handa  <handa@m17n.org>
31923         * international/characters.el: Cancel previous change for
31924         I-WITH-DOT-ABOVE and DOTLESS-i.
31926         * international/latin-5.el: Cancel previous change.
31928 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
31930         * progmodes/gud.el: Correction to syntax in gud-menu-map.
31932 2005-02-02  Kenichi Handa  <handa@m17n.org>
31934         * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
31935         DOTLESS-i.
31937         * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
31938         Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
31940         * case-table.el (get-upcase-table): New function.
31941         (copy-case-table): Copy upcaes table too if non-nil.
31942         (set-case-syntax-delims): Maintain upcase table too.
31943         (set-case-syntax-pair): Likewise.
31944         (set-upcase-syntax, set-downcase-syntax): New functions.
31945         (set-case-syntax): Maintain upcase table too.
31947 2005-02-02  Nick Roberts  <nickrob@snap.net.nz>
31949         * progmodes/gdb-ui.el (gdb-goto-info): Delete.
31951         * progmodes/gud.el (gud-goto-info): New function.
31952         (gud-tool-bar-map): Use correct icon.
31954 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
31956         * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
31957         When delegating, order args in the funcall correctly.
31959 2005-02-01  Thien-Thi Nguyen  <ttn@gnu.org>
31961         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
31963 2005-02-01  Carsten Dominik  <dominik@science.uva.nl>
31965         * textmodes/reftex.el (reftex-access-scan-info): Error out in a
31966         buffer not visiting a file.
31968 2005-01-31  Jay Belanger  <belanger@truman.edu>
31970         * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
31971         bound on the line with the formula.
31973 2005-01-31  Kim F. Storm  <storm@cua.dk>
31975         * ses.el (ses-create-cell-variable-range)
31976         (ses-destroy-cell-variable-range, ses-reset-header-string)
31977         (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
31978         (ses-insert-row): Fix format of apply undo entries.
31980 2005-01-31  Jay Belanger  <belanger@truman.edu>
31982         * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
31983         parts.
31985         * calc/calc-embed.el (calc-embedded-open-formula)
31986         (calc-embedded-close-formula): Ignore matrix environments.
31988         * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
31989         TeX mode.
31991         * calc/calc-lang.el (math-function-table, math-oper-table)
31992         (math-variable-table): Adjust the LaTeX portions.
31994         * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
31995         (math-latex-ignore-words): New constant.
31997 2005-01-31  Richard M. Stallman  <rms@gnu.org>
31999         * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
32000         (ispell-local-dictionary): Doc fix.
32001         (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
32002         Don't reinitialize at run time.  Don't defcustom.
32003         All uses changed to append ispell-local-dictionary-alist,
32004         or check it first.
32005         (ispell-current-dictionary): New variable for dictionary in use.
32006         (ispell-dictionary): Now used only for global default.
32007         (ispell-start-process): Set ispell-current-dictionary,
32008         not ispell-dictionary.
32009         (ispell-change-dictionary): Use this only for setting
32010         user preferences.
32011         (ispell-internal-change-dictionary): New function
32012         to change the current dictionary in use.
32013         (ispell-region, ispell-process-line, ispell-buffer-local-dict):
32014         Use ispell-current-dictionary.
32015         Handle ispell-local-dictionary-overridden.
32016         (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
32018 2005-01-31  Jay Belanger  <belanger@truman.edu>
32020         * calc/calc-aent.el (math-read-token): Add support for LaTeX.
32022         * calc/calc-ext.el: Add calc-latex-language to autoloads.
32023         (calc-mode-map): Add calc-latex-language.
32025         * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
32026         (math-latex-print-frac): New functions.
32027         (math-oper-table, math-function-table, math-variable-table)
32028         (math-complex-format, math-input-filter): Add latex properties.
32029         (calc-set-language): Set math-expr-special-function-mapping.
32031         * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
32032         (calc-write-parse-table-part): Add LaTeX support.
32034         * calc/calc.el (calc-language): Adjust docstring.
32035         (calc-set-mode-line): Add LaTeX support.
32036         (math-expr-special-function-mapping): New variable.
32037         (math-tex-ignore-words): Add to list.
32039         * calc/calccomp.el (math-compose-expr, math-compose-rows):
32040         Add LaTeX support.
32041         (math-compose-expr): Add support for special functions.
32043         * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
32045 2005-01-31  Nick Roberts  <nickrob@snap.net.nz>
32047         * progmodes/gdb-ui.el (gdb-memory-address)
32048         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
32049         (gdb-memory-mode-map, gdb-memory-format-keymap)
32050         (gdb-memory-format-menu, gdb-memory-unit-keymap)
32051         (gdb-memory-unit-menu): New variables for a buffer
32052         that lets the user examine program memory.
32053         (gdb-memory-set-address, gdb-memory-set-repeat-count)
32054         (gdb-memory-format-binary, gdb-memory-format-octal)
32055         (gdb-memory-format-unsigned, gdb-memory-format-signed)
32056         (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
32057         (gdb-memory-format-menu-1, gdb-memory-unit-giant)
32058         (gdb-memory-unit-word, gdb-memory-unit-halfword)
32059         (gdb-memory-unit-byte, gdb-memory-unit-menu)
32060         (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
32061         (gdb-memory-mode, gdb-memory-buffer-name)
32062         (gdb-display-memory-buffer, gdb-frame-memory-buffer):
32063         New functions for above buffer.
32065 2005-01-30  Richard M. Stallman  <rms@gnu.org>
32067         * cus-edit.el (custom-bury-buffer): Function deleted.
32068         (custom-buffer-done-function): Option deleted.
32069         (custom-buffer-done-kill): New replacement option.
32070         (Custom-buffer-done): Call quit-window.
32071         (custom-buffer-create-internal): Update for above changes.
32073 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
32075         * simple.el (undo-ask-before-discard): New var.
32076         (undo-outer-limit-truncate): Implement it.
32077         (undo-extra-outer-limit): Doc update.
32079 2005-01-29  Richard M. Stallman  <rms@gnu.org>
32081         * ses.el (undo-more): Delete defadvice.
32082         (ses-begin-change): Doc fix.
32084         * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
32085         instead of rebinding C-x u and C-_.
32087         * files.el (normal-backup-enable-predicate): Return nil for files
32088         in /tmp, regardless of temporary-file-directory.
32090         * man.el (Man-getpage-in-background): Disable undo in Man buffer.
32092         * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
32093         (open-rectangle, delete-whitespace-rectangle-line)
32094         (clear-rectangle-line): If FILL, pass t instead of FILL
32095         for move-to-column's 2nd arg.
32097         * simple.el (undo): Fix the test for continuing a series of undos.
32098         (undo-more): Set pending-undo-list to t when we reach end.
32099         (pending-undo-list): Move up defvar.
32101         * wid-edit.el (widget-button-click):
32102         Shorten the range of the track-mouse binding.
32104         * comint.el (comint-insert-input): Undo previous changes;
32105         use last-input-event in interactive spec.
32107 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
32109         * progmodes/compile.el (compilation-start): Bind buffer-read-only
32110         to nil before invoking call-process.  Reset buffer's modified flag
32111         after fontifying it in the no-async branch.
32113         * wid-edit.el (widget-specify-button): If mouse pointer shape
32114         cannot be changed, use mouse face instead.
32116 2005-01-29  Nick Roberts  <nickrob@snap.net.nz>
32118         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
32119         (gdb-goto-breakpoint): Make breakpoint handling work on template
32120         functions in C++.  Reported by Martin Reed <mjreed@essex.ac.uk>.
32121         (gdb-assembler-custom): Update to recognize breakpoint information
32122         added on 2005-01-19.
32124 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
32126         * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
32127         (dsssl-mode): Use define-derived-mode.
32128         (scheme-mode-initialize): Remove.
32129         (scheme-mode): Use run-mode-hooks.
32131         * cus-edit.el (customize-group-other-window)
32132         (custom-buffer-create-other-window): Don't override special-display-*.
32133         (custom-mode-map): Make it dense.
32135         * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
32136         sets the default value.
32138 2005-01-28  Eli Zaretskii  <eliz@gnu.org>
32140         * descr-text.el: Add more keywords.
32142 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
32144         * speedbar.el: Avoid unnecessary use of locate-library.
32146         * international/mule-cmds.el (standard-display-european-internal):
32147         Don't fiddle with latin-1 non-break space any more since it's now
32148         special cased in the C code.
32149         Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
32151 2005-01-26  Luc Teirlinck  <teirllm@auburn.edu>
32153         * cus-start.el (all): Add `undo-outer-limit'.
32155 2005-01-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
32157         * textmodes/bibtex.el (bibtex-format-entry):
32158         Use `bibtex-empty-field-re' only on the text of fields, not on entire
32159         field lines.
32160         (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
32161         not on part of a buffer.
32163 2005-01-25  Lute Kamstra  <lute@gnu.org>
32165         * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
32166         nonempty field text strings like "{letters\\macro{}more letters}".
32167         Clarify docstring.
32168         (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
32169         (bibtex-entry-offset, bibtex-parse-association)
32170         (bibtex-parse-field-name): Fix typos in docstrings.
32171         (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
32173 2005-01-24  Carsten Dominik  <dominik@science.uva.nl>
32175         * textmodes/reftex-global.el (reftex-isearch-push-state-function)
32176         (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
32177         (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
32178         (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
32180         * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
32181         isearch minor mode.
32183 2005-01-24  Luc Teirlinck  <teirllm@auburn.edu>
32185         * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
32187 2005-01-24  Lute Kamstra  <lute@gnu.org>
32189         * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
32190         CASECHARS and NOT-CASECHARS regular expressions of the
32191         "nederlands" and "nederlands8" dictionaries to prevent a "Range
32192         striding over charsets" error.
32194 2005-01-24  Jay Belanger  <belanger@truman.edu>
32196         * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
32197         display variable name.
32199 2005-01-24  Kenichi Handa  <handa@m17n.org>
32201         * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
32202         Fix setting of the element of encoded-kbd-iso2022-invocations.
32204 2005-01-24  Nick Roberts  <nickrob@snap.net.nz>
32206         * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
32207         (gdb-threads-select): Change to also accept mouse events.
32208         (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
32209         (gdb-threads-mouse-select): Delete.
32211 2005-01-23  Luc Teirlinck  <teirllm@auburn.edu>
32213         * files.el (insert-directory): Take care of empty directory,
32214         listed without -a switch.
32216 2005-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
32218         * textmodes/refill.el (refill-post-command-function):
32219         Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
32220         to the list of functions that we should be careful not to undo.
32221         (refill-late-fill-paragraph-function): Remove.
32222         (refill-saved-state): New var.
32223         (refill-mode): Use it to save fill-paragraph-function.
32224         Save also the value of auto-fill-function.
32226         * term/w32-win.el: Simplify code.
32228 2005-01-23  Kim F. Storm  <storm@cua.dk>
32230         * simple.el (line-move): Adapt to new return value from
32231         pos-visible-in-window-p.
32233         * simple.el (line-move): Fix last change.  Check partial
32234         visibility at point rather than at window-start.
32236 2005-01-22  Jason Rumney  <jasonr@gnu.org>
32238         * term/w32-win.el (xw-defined-colors): Remove debug-message.
32240 2005-01-22  David Kastrup  <dak@gnu.org>
32242         * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
32244 2005-01-22  Eli Zaretskii  <eliz@gnu.org>
32246         * type-break.el (type-break-mode): Add a test for
32247         type-break-file-name being non-nil.
32249 2005-01-22  Toby Allsopp  <Toby.Allsopp@navman.com>  (tiny change)
32251         * net/eudc.el (top level): Call (message "") via progn, so that
32252         eudc-options-file is loaded.
32254 2005-01-22  Kim F. Storm  <storm@cua.dk>
32256         * simple.el (line-move-1): Rename from line-move.
32257         (line-move): New function that adjusts vscroll for partially
32258         visible rows, and calls line-move-1 otherwise.
32260 2005-01-21  Ren\e,Ai\e(B Kyllingstad  <listmailxemacs@kyllingstad.com>
32262         * pcomplete.el: Define pcomplete-read-event instead of read-event,
32263         since it's not a complete read-event implementation
32265 2005-01-20  Jay Belanger  <belanger@truman.edu>
32267         * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
32268         for called function.
32270 2005-01-20  Steven Tamm  <steventamm@mac.com>
32272         * term/mac-win.el (process-connection-type): Remove.
32273         Controlled now by s/darwin.h:PTY_ITERATION.
32275 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
32277         * window.el (handle-select-window): Don't switch window when we're
32278         in the minibuffer.
32280 2005-01-10  Paul Pogonyshev  <pogonyshev@gmx.net>
32282         * subr.el (dotimes-with-progress-reporter): New macro.
32284         * ses.el (ses-dotimes-msg): Remove macro.
32285         Use `dotimes-with-progress-reporter' instead.
32287 2005-01-19  Steven Tamm  <steventamm@mac.com>
32289         * term/mac-win.el (process-connection-type): Use new
32290         operating-system-release variable to use ptys on Darwin 7 (OS X
32291         10.3) when using carbon build.
32293 2005-01-19  Jay Belanger  <belanger@truman.edu>
32295         * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
32296         flags if the last command was a tab or M-tab.
32298         * calc/calc-prog.el (calc-user-define-edit): Put original formula
32299         in formula editing buffer.
32301 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
32303         * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
32304         breakpoint image symbol in margin.
32306 2005-01-19  Jay Belanger  <belanger@truman.edu>
32308         * calc/calc-prog.el (calc-execute-kbd-macro):
32309         Ignore calc-keep-arg-flag.
32311 2005-01-19  Kenichi Handa  <handa@m17n.org>
32313         * textmodes/ispell.el (ispell-looking-at): New function.
32314         (ispell-process-line): Use ispell-looking-at to compare the ispell
32315         output and the buffer contents.
32317 2005-01-18  Jay Belanger  <belanger@truman.edu>
32319         * calc/calc.el (calc-display-raw): Fix docstring.
32321 2005-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
32323         * simple.el (blink-matching-open): Strip extra info from syntax.
32325         * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
32326         funny chars in the end-of-here-doc marker.
32328 2005-01-19  Nick Roberts  <nickrob@snap.net.nz>
32330         * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
32331         that enable/disabled state of breakpoints is shown correctly in
32332         fringe and on ttys.
32333         (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
32334         Add breakpoint information as text properties.
32335         (gdb-mouse-toggle-breakpoint):
32336         Rename to gdb-mouse-set-clear-breakpoint.
32337         (gdb-mouse-toggle-breakpoint): New function.  Enable/disable
32338         breakpoints in the margin.
32339         (gdb-remove-strings): Simplify.
32341 2005-01-17  Jay Belanger  <belanger@truman.edu>
32343         * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
32344         erasing buffer.
32346 2005-01-17  Richard M. Stallman  <rms@gnu.org>
32348         * progmodes/grep.el (grep-find): Copy from `grep' the condition
32349         for calling grep-compute-defaults.
32351         * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
32352         if buffer is empty.
32354         * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
32356 2005-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
32358         * hilit-chg.el (highlight-changes-mode): Don't autoload.
32360         * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
32361         non-preloaded variables.
32363 2005-01-17  Steven Tamm  <steventamm@mac.com>
32365         * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
32366         tex-shell cause to force interactivity when using pipes.
32368 2005-01-17  Kim F. Storm  <storm@cua.dk>
32370         * simple.el (just-one-space): Make arg optional.
32372 2005-01-17  Nick Roberts  <nickrob@snap.net.nz>
32374         * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
32375         posn-at-x-y to t to access left-margin.
32377 2005-01-16  Michael Albinus  <michael.albinus@gmx.de>
32379         Sync with Tramp 2.0.47.
32381         * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
32382         catching keep-date problems in cp/scp operations.
32383         (tramp-handle-copy-file): Don't call `set-file-modes'
32384         unconditionally.  Specialized functions should know better what is
32385         necessary.  This improves performance a little bit, and the
32386         functions could catch errors with `cp -p' and `scp -p'.
32387         (tramp-do-copy-or-rename-file-via-buffer)
32388         (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
32389         when appropriate.
32390         (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
32391         Call `set-file-modes' when appropriate.
32392         (tramp-action-out-of-band): Mask `scp -p' error.  Reported by Isak
32393         Johnsson <isak@hypergene.com>.
32394         (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
32395         of both Tramp buffer and debug buffer.  Reported by Joakim Verona
32396         <joakim@verona.se>.
32397         (tramp-file-name-for-operation): Mark `shell-command' as magic for
32398         Emacs only.
32400         * net/tramp-util.el (tramp-minor-mode): New minor mode.  Add it to
32401         `find-file-hooks' and `dired-mode-hook'.
32402         (tramp-minor-mode-map): Respective map.  Add remapping for
32403         `compile' and `recompile'.
32404         (tramp-remap-command, tramp-recompile): New defuns.
32405         (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
32406         in buffer "*Compilation*".  Call the commands asynchronously.
32408         * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
32409         (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
32410         `shell-command', because it isn't magic in XEmacs.  Reported by
32411         Adrian Aichner <adrian@xemacs.org>.
32413         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
32414         `substitute-in-file-name.
32415         (tramp-smb-handle-substitute-in-file-name): New defun.
32416         (tramp-smb-advice-PC-do-completion): Delete advice.
32418 2005-01-16  Kai Grossjohann  <kgrossjo@eu.uu.net>
32420         * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
32421         Fix error in deleting region.
32423 2005-01-15  Richard M. Stallman  <rms@gnu.org>
32425         * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
32426         In non-temp buffer, switch syntax table temporarily.
32428         * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
32430         * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
32432         * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
32434         * imenu.el (imenu--split-menu): Copy menulist before sorting.
32435         (imenu--generic-function): Use START, not BEG, as pos of definition.
32437         * simple.el (just-one-space): Argument specifies number of spaces.
32439         * simple.el (eval-expression-print-format): Avoid warning
32440         about edebug-active.
32442 2005-01-15  James R. Van Zandt  <jrvz@comcast.net>  (tiny change)
32444         * progmodes/sh-script.el: Code copied from make-mode.el
32445         with small changes,
32446         (sh-mode-map): Bind C-c C-\.
32447         (sh-backslash-column, sh-backslash-align): New variables.
32448         (sh-backslash-region, sh-append-backslash): New functions.
32450 2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
32452         * mail/rmail.el: Updated to work with movemail from GNU Mailutils
32453         (rmail-pop-password, rmail-pop-password-required): Move to
32454         rmail-obsolete group.
32455         (rmail-set-pop-password): Rename to rmail-set-remote-password.
32456         All callers updated.
32457         (rmail-get-pop-password): Rename to rmail-get-remote-password.
32458         Take an argument specifying whether it is POP or IMAP mailbox we
32459         are using.  All callers updated.
32460         (rmail-pop-password-error): Rename to
32461         rmail-remote-password-error.  Added mailutils-specific error message.
32462         (rmail-movemail-search-path)
32463         (rmail-movemail-variant-in-use): New variables.
32464         (rmail-remote-password, rmail-remote-password-required):
32465         New customization variables.
32466         (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
32467         (rmail-parse-url): New function.
32468         (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
32469         with GNU mailutils movemail.
32471 2005-01-15  Kevin Ryde  <user42@zip.com.au>
32473         * info-look.el (c-mode/symbol): Add ^` to prefix, and change
32474         suffix to space, $ or '$, to correctly position point when going
32475         to @table style constants like DBL_MAX.
32477 2005-01-15  Jorgen Schaefer  <forcer@forcix.cx>  (tiny change)
32479         * type-break.el (type-break-mode, type-break-file-time)
32480         (type-break-file-keystroke-count, type-break-choose-file):
32481         Don't store data in or load data from the file if type-break-file-name
32482         is nil.
32483         (type-break-file-name): Doc update as per the above.
32485 2005-01-15  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>  (tiny change)
32487         * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
32488         lookup-key might return nil; handle that.
32490 2005-01-15  Alan Mackenzie  <acm@muc.de>
32492         * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
32493         rather than the element found, thus enabling the tree to be setcar'd.
32495 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
32497         * textmodes/org.el (org-show-following-heading): New option.
32498         (org-show-hierarchy-above): Use `org-show-following-heading'.
32499         (org-cycle): Documentation fix.
32501         * textmodes/org.el (orgtbl-optimized): New option
32502         (orgtbl-mode): New command, a minor mode.
32503         (orgtbl-mode-map): New variable.
32504         (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
32505         (orgtbl-error, orgtbl-self-insert-command)
32506         (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
32508         * textmodes/org.el (org-mode): `org-table-may-need-update' is now
32509         a local variable in each org-mode buffer.
32511         * textmodes/org.el (org-set-regexps-and-options): Rename from
32512         `org-set-regexps'.  Added checking for STARTUP keyword.
32513         (org-get-current-options): Add STARTUP options.
32514         (org-table-insert-row): Make mode intelligent about when
32515         realignment is needed.
32516         (org-self-insert-command, org-delete-backward-char, org-delete-char):
32517         New commands.
32518         (org-enable-table-editor): New default value `optimized'.
32519         (org-table-blank-field): Support blanking regions if active.
32521 2005-01-14  Carsten Dominik  <dominik@science.uva.nl>
32523         * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
32524         if the year is not given.
32526         * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
32527         Add new escapes %m and %M, fixed bug with %F by adding
32528         save-match-data.
32529         (reftex-reference): Remove ?. from list of spaces.
32530         (reftex-label-info): Add automatic label prefix recognition.
32532         * textmodes/reftex-index.el (reftex-index-next-phrase):
32533         Add slave parameter to call of `reftex-index-this-phrase'.
32534         (reftex-index-this-phrase): New optional argument.
32535         (reftex-index-region-phrases): Add slave parameter to call of
32536         `reftex-index-this-phrase'.
32537         (reftex-display-index): New argument redo.
32538         (reftex-index-rescan): Add `redo' to arguments of
32539         `reftex-display-index'.
32540         (reftex-index-Rescan, reftex-index-revert)
32541         (reftex-index-switch-index-tag): Add `redo' to arguments of
32542         `reftex-display-index'.
32543         (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
32544         indexing.  Fix bug with matching is there is a quote before or
32545         after the word.
32547         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
32548         Fix bug when collecting citation keys in lines with comments.
32549         (reftex-citation): Prefix argument no longer rescans the document,
32550         but forces prompting for optional arguments of cite macros.
32551         (reftex-do-citation): Prompting for optional arguments implemented.
32553         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
32554         Add optional arguments to most cite commands.
32555         (reftex-cite-cleanup-optional-args): New option
32556         (reftex-cite-prompt-optional-args): New option.
32557         (reftex-trust-label-prefix): New option.
32559         * textmodes/reftex-toc.el (reftex-toc-find-section):
32560         Add push-mark before changing the position in the buffer.
32562         * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
32563         (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
32565 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
32567         * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
32568         more carefully.
32570 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
32572         * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
32573         (sgml-mode): Use it.
32574         (sgml-get-context): Better keep track of implicitly closed tags.
32576 2005-01-13  Kenichi Handa  <handa@m17n.org>
32578         * textmodes/ispell.el: These changes are to fix misalignment error
32579         caused by equivalent characters of different Emacs charsets.
32580         (ispell-unified-chars-table): New variable.
32581         (ispell-get-decoded-string): New function.
32582         (ispell-get-casechars, ispell-get-not-casechars)
32583         (ispell-get-otherchars): Call ispell-get-decoded-string.
32585 2005-01-12  Johan Bockg\e,Ae\e(Brd  <bojohan@users.sourceforge.net>
32587         * custom.el (custom-declare-variable): Just put symbol instead
32588         of (defvar . symbol) in `current-load-list'.
32590 2005-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
32592         * emacs-lisp/elint.el: Fixed typo in Commentary section.
32594 2005-01-12  Jay Belanger  <belanger@truman.edu>
32596         * calc/calc-help.el (calc-describe-key): Use temporary info buffer
32597         to create a Calc summary.
32599 2005-01-12  Kim F. Storm  <storm@cua.dk>
32601         * mouse.el (mouse-on-link-p): Change functionality and doc
32602         string to comply with latest description in lisp ref.
32604 2005-01-12  Nick Roberts  <nickrob@snap.net.nz>
32606         * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
32607         Enable mouse clicks on mode-line, header-line and margin.
32608         (event-type): Give mouse event symbols an `event-kind' property
32609         with value `mouse-click'.
32611 2005-01-12  Juri Linkov  <juri@jurta.org>
32613         * facemenu.el (list-colors-display): Add new arg buffer-name.
32614         Use it.  Fix docstring.  Replace code for identifying duplicate
32615         colors by the name with call to `list-colors-duplicates' which
32616         identifies duplicate colors by the value unless the color
32617         is one of special Windows colors.  Set truncate-lines to t.
32618         Print sorted duplicate color names on each line.  Indent to 22
32619         \(the longest color name in rgb.txt) instead of 20.  Optimize.
32620         (list-colors-duplicates): New function.
32621         (facemenu-color-name-equal): Delete function.
32623         * facemenu.el (list-colors-print): New function created from code
32624         in list-colors-display.  Print #RRGGBB at the window right edge.
32625         (list-colors-display): When temp-buffer-show-function is not
32626         defined, call list-colors-print from temp-buffer-show-hook
32627         to get the right value of window-width in list-colors-print
32628         after the buffer is displayed.
32630         * simple.el (pop-mark): Move deactivate-mark out of conditional
32631         part to deactivate the active mark regardless of the state of the
32632         mark ring.
32634         * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
32635         variables line in desktop files.
32637 2005-01-12  Juri Linkov  <juri@jurta.org>
32639         * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
32640         Bring together isearch highlight related options.
32641         (lazy-highlight): Replace group `replace' by `matching'.
32642         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
32643         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
32644         (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
32645         and declare them obsolete.
32646         (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
32647         (isearch-faces): Remove defgroup.
32648         (isearch-overlay, isearch-highlight, isearch-dehighlight):
32649         Move isearch highlighting code closer to lazy highlighting code.
32651         * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
32652         (query-replace-highlight, query-replace-lazy-highlight)
32653         (query-replace): Move definitions to the beginning of the file.
32655 2005-01-11  Juri Linkov  <juri@jurta.org>
32657         * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
32658         * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
32659         * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
32661         * info.el (Info-history-forward): New variable.
32662         (Info-select-node): Reset Info-history-forward to nil.
32663         (Info-last): Turn into defalias.
32664         (Info-history-back): Rename from Info-last.
32665         Add current node to Info-history-forward.
32666         (Info-history-forward): New fun.
32667         (Info-mode-map): Replace Info-last by Info-history-back.
32668         Bind Info-history-forward to "r".
32669         (Info-mode-menu): Replace Info-last by Info-history-back.
32670         Fix menu item text.  Add menu item for Info-history-forward.
32671         (info-tool-bar-map): Replace Info-last by Info-history-back.
32672         Replace its icon "undo" by "back_arrow".  Add icon "fwd_arrow"
32673         for Info-history-forward.
32674         (Info-mode): Replace Info-last by Info-history-back in docstring.
32675         Add local variable Info-history-forward.
32676         (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
32678 2005-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
32680         * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
32681         (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
32682         Ignore select-window events rather than fiddle with
32683         mouse-autoselect-window.
32685 2005-01-11  Matthew Mundell  <matt@mundell.ukfsn.org>
32687         * type-break.el (type-break-mode): Fix previous change.
32689 2005-01-10  Jay Belanger  <belanger@truman.edu>
32691         * calc/calc-ext.el (calc-reset): Reset when inside embedded
32692         calculator; only reset when point is inside a calculator.
32693         Don't adjust the window height if the window takes up the whole height
32694         of the frame.
32696 2005-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
32698         * ebuff-menu.el (Electric-buffer-menu-mode):
32699         Preserve value of buffer-local var header-line-format.
32701 2005-01-09  Jay Belanger  <belanger@truman.edu>
32703         * calc/calc.el (calc-mode-var-list-restore-saved-values):
32704         Make sure settings file exists before accessing it.
32706         * calc/calc-embed.el (calc-embedded-subst):
32707         Replace math-multi-subst-rec, which is only supposed to be called
32708         by math-multi-subst, by math-multi-subst.
32710 2005-01-09  Andre Spiegel  <spiegel@gnu.org>
32712         * vc.el (vc-allow-async-revert): New user option.
32713         (vc-disable-async-diff): New internal variable.
32714         (vc-revert-buffer): Use them to disable asynchronous diff.
32716         * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
32717         (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
32718         asynchronously if vc-disable-async-diff is t.
32720 2005-01-09  Jay Belanger  <belanger@truman.edu>
32722         * calc/calc.el (defcalcmodevar): New macro.
32723         (calc-mode-var-list-restore-default-values)
32724         (calc-mode-var-list-restore-saved-values): New functions.
32725         (calc-mode-var-list): Use defcalcmodevar to define it.
32726         (calc-always-load-extensions, calc-line-numbering)
32727         (calc-line-breaking, calc-display-just, calc-display-origin)
32728         (calc-number-radix, calc-leading-zeros, calc-group-digits)
32729         (calc-group-char, calc-point-char, calc-frac-format)
32730         (calc-prefer-frac, calc-hms-format, calc-date-format)
32731         (calc-float-format, calc-full-float-format, calc-complex-format)
32732         (calc-complex-mode, calc-infinite-mode, calc-display-strings)
32733         (calc-matrix-just, calc-break-vectors, calc-full-vectors)
32734         (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
32735         (calc-matrix-brackets, calc-language, calc-language-option)
32736         (calc-left-label, calc-right-label, calc-word-size)
32737         (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
32738         (calc-display-raw, calc-internal-prec, calc-angle-mode)
32739         (calc-algebraic-mode, calc-incomplete-algebraic-mode)
32740         (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
32741         (calc-window-height, calc-display-trail, calc-show-selections)
32742         (calc-use-selections, calc-assoc-selections)
32743         (calc-display-working-message, calc-auto-why, calc-timing)
32744         (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
32745         (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
32746         (calc-gnuplot-default-device, calc-gnuplot-default-output)
32747         (calc-gnuplot-print-device, calc-gnuplot-print-output)
32748         (calc-gnuplot-geometry, calc-graph-default-resolution)
32749         (calc-graph-default-resolution-3d, calc-invocation-macro)
32750         (calc-show-banner): Use defcalcmodevar to declare them and set
32751         their default values.
32753         * calc/calc-ext.el (calc-reset): Restore saved values of variables
32754         instead of default values (but restore default values if there is
32755         an argument of 0).
32757 2005-01-09  David Kastrup  <dak@gnu.org>
32759         * desktop.el (desktop-restore-eager): Fix typo in type.
32761 2005-01-08  Richard M. Stallman  <rms@gnu.org>
32763         * cus-edit.el (customize): Delete :link.
32765 2005-01-08  Jay Belanger  <belanger@truman.edu>
32767         * calc/calc.el (calc-mode): Remove the extension from the
32768         `calc-settings-file' file name when loading it.
32770 2005-01-08  Kim F. Storm  <storm@cua.dk>
32772         * info.el (Info-mode-map, Info-next-link-keymap)
32773         (Info-prev-link-keymap, Info-up-link-keymap):
32774         Map follow-link to mouse-face.
32775         (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
32777 2005-01-08  Jay Belanger  <belanger@truman.edu>
32779         * calc/calc.el (calc-settings-file): Change default value.
32780         Suggested by cgw in a comment in calc-mode.el.
32782         * calc/calc-mode.el (calc-settings-file-name):
32783         Compare calc-settings-file to user-init-file instead of ~/.emacs.
32784         Replace ~/.emacs in a prompt by calc-settings-file.
32786 2005-01-07  Lars Hansen  <larsh@math.ku.dk>
32788         * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
32789         (desktop-lazy-idle-delay): New customizable variables.
32790         (desktop-buffer-args-list): New variable.
32791         (desktop-append-buffer-args): New function.
32792         (desktop-save): Call desktop-append-buffer-args for some buffers.
32793         (desktop-lazy-create-buffer): New function.
32794         (desktop-idle-create-buffers): New function.
32795         (desktop-read): Add message about buffers to restore lazily.
32796         (desktop-lazy-abort): New command.
32797         (desktop-clear): Call desktop-lazy-abort.
32798         (desktop-lazy-complete): New command.
32800 2005-01-06  Richard M. Stallman  <rms@gnu.org>
32802         * emacs-lisp/find-func.el (find-face-definition):
32803         Rename from find-face.
32805 2005-01-06  Kim F. Storm  <storm@cua.dk>
32807         * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
32809         * man.el (Man-xref-man-page, Man-xref-header-file)
32810         (Man-xref-normal-file): Add follow-link property.
32812 2005-01-06  Jay Belanger  <belanger@truman.edu>
32814         * calc/calc-units.el: Make sure the proper macro definitions are
32815         available when compiling.
32817 2005-01-06  Juri Linkov  <juri@jurta.org>
32819         * isearch.el (isearch-lazy-highlight-update):
32820         Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
32822 2005-01-06  Miles Bader  <miles@gnu.org>
32824         * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
32825         (isearch-lazy-highlight-face): Use new name.
32827 2005-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
32829         * uniquify.el (uniquify-rationalize-file-buffer-names):
32830         Re-add an interactive spec.
32831         (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
32832         to the same name.
32834         * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
32835         (isearch-update, isearch-done): Adjust calls accordingly.
32837 2005-01-05  Richard M. Stallman  <rms@gnu.org>
32839         * custom.el (custom-set-variables, custom-theme-set-variables):
32840         Clarify documentation.
32842         * emacs-lisp/find-func.el (find-variable)
32843         (find-variable-other-window, find-variable-other-frame):
32844         Fix the TYPE args to find-function-read and find-function-do-it.
32845         (find-function): Doc fix.
32846         (find-function-at-point): Replace function-at-point alias.
32848 2005-01-04  Richard M. Stallman  <rms@gnu.org>
32850         * cus-face.el (custom-declare-face):
32851         Record defface in current-load-list.
32853         * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
32855         * emacs-lisp/find-func.el: Doc fixes.
32856         (find-face-regexp): New variable.
32857         (find-function-regexp-alist): New variable.
32858         (find-function-C-source): Third arg is now TYPE.
32859         (find-function-search-for-symbol): Handle general TYPE.
32860         (find-function-read, find-function-do-it): Handle general TYPE.
32861         (find-definition-noselect, find-face): New functions.
32862         (function-at-point): Alias deleted.
32864 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
32866         * battery.el (display-battery-mode): Rename from display-battery.
32867         Handle the case where it gets turned off.
32869 2005-01-04  Richard M. Stallman  <rms@gnu.org>
32871         * cus-edit.el (customize): Make :link point to user doc.
32873         * man.el (Man-fontify-manpage): Turn off undo generation.
32875         * add-log.el (change-log-font-lock-keywords): Don't match just "From".
32877 2005-01-04  Andreas Schwab  <schwab@suse.de>
32879         * files.el (insert-directory): Only look for error lines in
32880         inserted text.  Don't move too far after processing --dired markers.
32882 2005-01-04  Richard M. Stallman  <rms@gnu.org>
32884         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
32885         Don't expand if the character is @, period, dash, etc.
32886         (define-mail-abbrev): Quote names that contain problem characters.
32888 2005-01-04  Thien-Thi Nguyen  <ttn@gnu.org>
32890         * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
32892 2005-01-03  Richard M. Stallman  <rms@gnu.org>
32894         * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
32895         (query-replace-highlight, query-replace-lazy-highlight)
32896         (query-replace): Definitions moved up.  Doc fix.
32898 2005-01-03  Richard M. Stallman  <rms@gnu.org>
32900         * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
32901         (lazy-highlight-cleanup, lazy-highlight-initial-delay)
32902         (lazy-highlight-interval, lazy-highlight-max-at-a-time)
32903         (lazy-highlight-face): Rename from isearch-lazy-...
32904         Change all references to them.
32906 2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>
32908         * cus-edit.el (custom-file): Doc fix for defcustom.
32909         (custom-file): The function no longer sets the variable
32910         `custom-file' to its return value.
32912         * startup.el (command-line): No longer load `custom-file'.
32914 2005-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
32916         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
32918         * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
32919         Don't confuse module-prefixed identifiers for labels.
32920         Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
32922 2005-01-02  Richard M. Stallman  <rms@gnu.org>
32924         * files.el (basic-save-buffer-1): Fix previous change.
32926         * loadhist.el (file-loadhist-lookup): New function.
32927         (file-provides, file-requires): Use it.
32929         * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
32930         instead of calculating the right size.
32932 2005-01-02  Karl Chen  <quarl@cs.berkeley.edu>
32934         * vc-svn.el (vc-svn-diff): Stay local if possible.
32936 2005-01-02  Stefan Monnier  <monnier@iro.umontreal.ca>
32938         * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
32940         * files.el (hack-local-variables): Fix last change.
32942 2005-01-02  Jay Belanger  <belanger@truman.edu>
32944         * calc/calc-yank.el (calc-edit-top): New variable.
32945         (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
32946         object.  Change header properties.
32947         (calc-edit-finish, calc-edit-finish-stack-object)
32948         (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
32949         edited object.
32950         * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
32951         for the beginning of the edited object.
32952         * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
32953         for the beginning of the edited object.
32954         * calc/calc-prog.el (calc-edit-macro-finish-edit)
32955         (calc-finish-formula-edit, calc-macro-repeats)
32956         (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
32957         (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
32958         beginning of the edited object.
32959         (calc-user-define-edit): Change the header for editing macros.
32960         Remove unnecessary variable.
32962 2005-01-01  Jay Belanger  <belanger@truman.edu>
32964         * calc/calc-yank.el (calc-edit-mode): Change default header.
32965         (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
32966         * calc/calc-store.el (calc-edit-variable): Change title to match new
32967         header.
32968         * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
32969         mode to match new header.
32970         (calc-user-define-edit): Change titles to include names of commands.
32971         (calc-finish-formula-edit): Adjust to handle new header.
32972         (calc-finish-macro-edit): Remove.
32973         (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
32974         (calc-edit-macro-command, calc-edit-macro-command-type)
32975         (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
32976         (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
32977         (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
32978         (calc-edit-macro-finish-edit): New functions.
32979         (calc-user-define-edit): Use new functions to edit named calc macros.
32981 2005-01-01  Stefan Monnier  <monnier@iro.umontreal.ca>
32983         * files.el (hack-local-variables): Cleanup prefix/suffix matching.
32985         * ses.el (copy-region-as-kill): Deactivate mark.
32987 2005-01-01  Richard M. Stallman  <rms@gnu.org>
32989         * replace.el (occur-1): If the output buffer is also an input,
32990         don't kill it, rename it.
32992         * faces.el (set-face-background, set-face-foreground): Doc fix.
32994         * cus-face.el (custom-face-attributes): Fix :help-echo strings
32995         for :foreground and :background.
32997         * dired.el (dired-view-command-alist): Variable deleted.
32998         (dired-view-file, dired-mouse-find-file-other-window):
32999         Delete the code to use it.
33001 2005-01-01  Kim F. Storm  <storm@cua.dk>
33003         * image.el (insert-sliced-image): Use t for line-height property.
33005 See ChangeLog.11 for earlier changes.
33007 ;; Local Variables:
33008 ;; coding: iso-2022-7bit
33009 ;; add-log-time-zone-rule: t
33010 ;; End:
33012     Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
33014   This file is part of GNU Emacs.
33016   GNU Emacs is free software; you can redistribute it and/or modify
33017   it under the terms of the GNU General Public License as published by
33018   the Free Software Foundation; either version 2, or (at your option)
33019   any later version.
33021   GNU Emacs is distributed in the hope that it will be useful,
33022   but WITHOUT ANY WARRANTY; without even the implied warranty of
33023   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33024   GNU General Public License for more details.
33026   You should have received a copy of the GNU General Public License
33027   along with GNU Emacs; see the file COPYING.  If not, write to the
33028   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
33029   Boston, MA 02110-1301, USA.
33031 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1