(dired-read-dir-and-switches): Fix up last change.
[emacs.git] / lisp / ChangeLog
blob8b3d4af9215a24c2547ea84307f830403a74ce4d
1 2008-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * dired.el (dired-read-dir-and-switches): Fix up last change.
5 2008-05-05  Eric S. Raymond  <esr@snark.thyrsus.com>
7         * vc.el (vc-deduce-fileset): Lift all the policy and UI
8         stuff out of this function, move it to vc-dispatcher-selection-set.
10 2008-05-05  Sam Steingold  <sds@gnu.org>
12         * window.el (delete-other-windows-vertically): New function.
14 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16         * dired.el (dired-read-dir-and-switches):
17         Obey read-file-name-completion-ignore-case.
19 2008-05-05  Nick Roberts  <nickrob@snap.net.nz>
21         * progmodes/compile.el (compilation-error-regexp-alist-alist):
22         Add regexp for Open Watcom compiler output.
24 2008-05-05  Phil Sung  <psung@mit.edu>  (tiny change)
26         * progmodes/python.el (python-block-pairs): Align finally with except.
28 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
30         * vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop.
32 2008-05-05  Tom Tromey  <tromey@redhat.com>
34         * smerge-mode.el (smerge-start-session): Don't call smerge-next if
35         looking at conflict marker.
37 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
39         * vc-dispatcher.el (vc-dir-mark-buffer-changed): Fix typo
40         client-mode -> vc-client-object, and guess `funcall' was meant.
41         (vc-dir-mode): Rename client-mode -> vc-client.mode.
43 2008-05-05  Dan Nicolaescu  <dann@ics.uci.edu>
45         * net/zeroconf.el (dbus-call-method, dbus-register-signal)
46         (dbus-debug): Move declarations outside eval-when-compile.
48 2008-05-04  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
50         * proced.el (proced-command-alist): Fix system-type values.
51         Fix defcustom.
52         (proced-sorting-schemes-alist, proced-sorting-scheme): New variables.
53         (proced-sort-pcpu, proced-sort-pmem, proced-sort-pid)
54         (proced-sort-start, proced-sort, proced-sort-time): New commands.
55         (proced-update): Use proced-sorting-scheme.  Update modeline.
56         (proced-send-signal): Use nreverse.
57         (proced-sorting-scheme-p): New function.
59 2008-05-04  Andreas Schwab  <schwab@suse.de>
61         * vc.el: Require dired when compiling.
63         * minibuffer.el (completion--insert-strings): Don't delete past bol.
65 2008-05-03  Glenn Morris  <rgm@gnu.org>
67         * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el:
68         * ediff-ptch.el, ediff-util.el, ediff-wind.el, ediff.el:
69         Simplify compilation requirements.
70         * ediff-init.el, ediff-vers.el: Remove unnecessary variable
71         declarations.
73 2008-05-03  Dave Love  <fx@gnu.org>
75         * progmodes/python.el (python-beginning-of-statement):
76         Loop at least once (fixes 2008-02-21 change).
78 2008-05-03  Eli Zaretskii  <eliz@gnu.org>
80         * ls-lisp.el (ls-lisp-insert-directory): Use `string-width'
81         instead of `length' for comparing length of user and group names.
83 2008-05-03  Eric S. Raymond  <esr@snark.thyrsus.com>
85         * vc-dispatcher.el: New file, separates out the UI and command
86         execution machinery from VCS-specific logic left in vc.el.
87         The separation is not yet completely clean, but it's a good start.
88         * vc.el: This file is about 1700 lines shorter now.
89         Remove obsolete logentry-check from the backend API.
90         * vc-sccs.el (vc-sccs-logentry-check): Remove .  This was
91         was the only implementation of the logentry-check method, and
92         it guarded against a log length limit that has probably been
93         obsolete for 15 years (!).
95 2008-05-02  Sam Steingold  <sds@gnu.org>
97         * progmodes/compile.el (compilation-start): Move setting of
98         compilation-directory after (funcall mode) as that resets local
99         variables, this fixes recompile in grep buffers.
100         * grep.el (grep-mode-map): Bind "g" to recompile (like in dired &c).
102 2008-05-02  Eric S. Raymond  <esr@snark.thyrsus.com>
104         * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
105         vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
106         vc-svn.el, vc.el: (vc-*-checkout-model): Make sure every backend
107         has one of these and that all are called in compatible ways.
108         * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el,
109         vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el,
110         vc-svn.el, vc.el: (vc-*-revision-granularity): Make sure every
111         backend has one of these.
113 2008-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
115         * progmodes/octave-mod.el (octave-abbrev-table): Move defvar and
116         initialization into define-abbrev-table.  Use :regexp.
117         (octave-mode-syntax-table): Don't set word syntax for `.
119         * files.el (minibuffer-with-setup-hook): Allow `fun' expressions rather
120         than only value.
122         * dired.el (dired-read-dir-and-switches):
123         Set minibuffer-completing-file-name and call substitute-in-file-name.
124         (dired-format-columns-of-files): Use completion--insert-strings.
126         * minibuffer.el (completion-hilit-commonality): Revert last change:
127         the leftover code was actually useful.
128         (completion--insert-strings): Use string-width rather than length.
130 2008-05-02  Sam Steingold  <sds@gnu.org>
132         * vc.el (vc-dir-mode-map): Enable mouse bindings.
133         (vc-at-event): New macro: run the body at the even location.
134         (vc-dir-menu, vc-dir-toggle-mark): Use it.
135         (vc-dir-mark-file, vc-dir-unmark-file): Move only on non-mouse events.
136         * subr.el (mouse-event-p): Check if the even is mouse-related.
138 2008-05-02  Nick Roberts  <nickrob@snap.net.nz>
140         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
141         Don't throw error if no file is found.
143 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
145         * vc-hooks.el (vc-call, vc-state): Fix typos in docstrings.
146         (vc-default-state-heuristic): Doc fix.
148 2008-05-02  Richard Sharman  <rsharman@pobox.com>
150         * hilit-chg.el (highlight-changes-mode): Remove references to
151         hooks that no longer exist.  Because define-minor-mode is used the
152         hook highlight-changes-mode-hook exists and can do what both the
153         old hooks used to do.  The documentation at the top of the file
154         was updated to demonstrate this.
155         (highlight-changes-mode): Remove commented out call to a hook
156         function that is no longer there.
157         (hilit-chg-set): Remove running of highlight-changes-enable-hook.
159 2008-05-02  Eric S. Raymond  <esr@snark.thyrsus.com>
161         * vc.el (vc-default-dired-state-info): Change name of primitive
162         to prettify-state-info, in preparation for ripping out dired mode.
163         * vc-bzr.el (vc-bzr-dired-state-info): Change name of primitive
164         to prettify-state-info, in preparation for ripping out dired mode.
165         * vc-hooks.el (vc-toggle-read-only): Throw an error when a user
166         tries this on a version-controlled buffer.  It will do useless or
167         actively bad things on any version control system newer than RCS.
168         * vc-hooks.el (vc-dired-resynch-file):
169         * vc.el (vc-dired-resynch-file): Change name of primitive to
170         vc-directory-resynch-file, preparing to remove dired.
172 2008-05-02  Dan Nicolaescu  <dann@ics.uci.edu>
174         * vc-rcs.el (vc-rcs-state): Fix typos.
176         * vc.el (vc-register): Change argument order so that the prefix
177         argument is assigned correctly.
178         (vc-next-action, vc-dir-register): Update for the above change.
180 2008-05-01  Juri Linkov  <juri@jurta.org>
182         * replace.el (occur-read-primary-args): Set default to the car of
183         regexp-history and display it in the prompt, but don't add to the
184         list of minibuffer defaults.  Bind history-add-new-input to nil to
185         not add automatically `default'.  For empty input return `default'.
186         Otherwise, add `input' to regexp-history and return it.
187         (occur-1): Signal an error for the empty regexp.
189         * progmodes/compile.el (compilation-auto-jump):
190         Set window point to `pos' explicitly.
192 2008-05-01  Eric S. Raymond  <esr@snark.thyrsus.com>
194         * vc-bzr.el (vc-bzr-state): Allow this to return 'ignored
195         when appropriate.
196         * vc-sccs.el (vc-sccs-state): Call vc-sccs-unregistered so
197         we report the 'unregistered state reliably.
198         * vc-rcs.el (vc-rcs-state): Call vc-rcs-unregistered so
199         we report the 'unregistered state reliably.
200         * vc-git.el (vc-git-state): Call vc-git-unregistered so
201         we report the 'unregistered state reliably.
202         * vc-hooks (vc-state): Document that vc-unregistered is
203         now expected to be returned reliably.
204         * vc.el (vc-default-dired-state): Change needs-patch state to
205         needs-update, since the name now shows up in dir-status listings
206         and was somewhat misleading.
207         * vc-cvs.el (vc-cvs-delete-file): Don't do a "cvs commit"
208         immediately after removing the file.
209         * vc.el (vc-next-action): More informative messages when a fileset
210         is in a mixed state or files are missing.
212 2008-05-01  Sam Steingold  <sds@gnu.org>
214         * vc.el (vc-delete-file): Check if the file has uncommitted changes.
216 2008-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
218         * Makefile.in: Revert incorrect fix for claimed bootstrap breakage.
220 2008-05-01  Daiki Ueno  <ueno@unixuser.org>
222         * epa-file-hook.el: New file split from epa-file.el.
223         * epa-file.el: Require 'epa-file-hook.
224         (epa-file-handler): Add autoload cookie.
225         * loadup.el: Load epa-file-hook.
226         * startup.el (command-line): Eval the body of auto-encryption-mode.
228 2008-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
230         * vc.el (vc-dir-mode-map): Don't bind "r".
232         * vc-hg.el (vc-hg-extra-fileinfo): New defstruct.
233         (vc-hg-status-printer): New function.
234         (vc-hg-after-dir-status): Deal with copied and renamed files.
235         (vc-hg-dir-status): Add flag to show copied files.
237 2008-05-01  John Paul Wallington  <jpw@pobox.com>
239         * ibuffer.el (ibuffer-last-sorting-mode): New variable.
240         (ibuffer-do-sort-by-recency): Reverse sorting order if last
241         sorting mode was recency.
243         * ibuf-macs.el (define-ibuffer-sorter): Define the sorter to
244         reverse sorting order if last sorting mode was the sorter's.
246 2008-05-01  Jason Rumney  <jasonr@gnu.org>
248         * w32-fns.el (w32-charset-info-alist): Map vietnamese to windows-1258.
250 2008-04-30  John Paul Wallington  <jpw@pobox.com>
252         * ibuffer.el (define-ibuffer-column filename): When the major mode
253         is `vc-dir-mode' show the buffer's default directory.
255         * ibuf-ext.el (define-ibuffer-filter filename): Likewise when the
256         major mode is `vc-dir-mode' use the buffer's default directory.
258 2008-04-30  Sam Steingold  <sds@gnu.org>
260         * vc.el (vc-dir-delete-file): Add.
261         (vc-dir-mode-map): Bind "r" to vc-dir-delete-file, like in PCL-CVS.
262         (vc-delete-file): Do not barf when the file has been already deleted.
264 2008-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
266         * emacs-lisp/lisp-mode.el (lisp-mode-map): Add menu.
268 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
270         * progmodes/octave-mod.el (octave-help): New function.
271         * progmodes/octave-hlp.el: Delete.
272         * info-look.el (octave-mode): Add operator index.
274         * vc.el (vc-checkout): Typo.
276 2008-04-30  Dan Nicolaescu  <dann@ics.uci.edu>
278         * menu-bar.el (menu-bar-tools-menu): Reorder, place Games last.
279         Add "..." in the appropriate places.
281         * epa.el (epa-key-list-mode-map): Add more menu entries.
282         Add "..." in the appropriate places.
284         * dired.el (dired-mode-map): Add :help.
286         * vc.el (vc-deduce-fileset): Add new parameter.
287         (vc-dir-marked-only-files): New function.
288         (vc-next-action): Don't ignore directories, look at the files
289         inside them.
290         (vc-dir-mode): Document how the mark/unmark commands work.
292 2008-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
294         * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
295         Rule out trailing spaces in file and directory names as well.
297         * minibuffer.el (completion--do-completion): Move point even if the
298         completion makes no change.
299         (completion-pcm-try-completion): Fix computation of new point.
301 2008-04-30  David Hansen  <david.hansen@gmx.net>
303         * dired.el: Require 'cl.
305 2008-04-30  Nick Roberts  <nickrob@snap.net.nz>
307         * progmodes/gdb-ui.el (gdb-frame-handler-1): Make overlay arrow
308         hollow if not in innermost frame.
310 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
312         Make `checkout-model' apply to filesets.
313         * vc-hooks.el (vc-checkout-model): Rewrite.
314         (vc-before-save, vc-after-save): Adjust callers accordingly.
315         * vc.el (vc-editable-p, vc-next-action, vc-checkout, vc-update)
316         (vc-transfer-file): Adjust callers accordingly.
317         * vc-rcs.el (vc-rcs-checkout-model): Adjust arg.
318         (vc-rcs-state, vc-rcs-state-heuristic, vc-rcs-receive-file)
319         (vc-rcs-checkout, vc-rcs-fetch-master-state): Use vc-rcs-checkout-model
320         instead of vc-checkout-model.
321         * vc-mcvs.el (vc-mcvs-revert):
322         Use vc-mcvs-checkout-model i.s.o vc-checkout-model.
323         * vc-cvs.el (vc-cvs-checkout-model): Adjust arg.
324         (vc-cvs-revert): Use vc-cvs-checkout-model i.s.o vc-checkout-model.
325         * vc-svn.el (vc-svn-checkout-model):
326         * vc-hg.el (vc-hg-checkout-model):
327         * vc-git.el (vc-git-checkout-model):
328         * vc-bzr.el (vc-bzr-checkout-model): Adjust arg.
330         * dired.el (dired-read-dir-and-switches): Replace last change with
331         a new approach that mixes read-file-name and read-directory-name.
333         * files.el (read-buffer-to-switch):
334         Avoid making assumptions about `other-buffer'.
336 2008-04-29  Sam Steingold  <sds@gnu.org>
338         * vc.el (vc-dir-mode-hook): Add normal hook.
339         (vc-dir-mode): Run it.
341 2008-04-29  Nick Roberts  <nickrob@snap.net.nz>
343         * progmodes/gdb-ui.el (gdb-display-buffer): Don't pop up GUD buffer.
344         Always split windows.
345         (gdb-speedbar-timer-fn): Only raise frame after user input.
346         (gdb-same-frame): Reverse initial value.
347         (gdb-display-gdb-buffer): Check for GUD buffer in other frames.
349         * progmodes/gud.el (gud-speedbar-buttons): Raise frame in
350         gdb-speedbar-timer-fn.
352 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
354         * uniquify.el (uniquify-rationalize-a-list): Beware of side-effects.
356 2008-04-29  Daiki Ueno  <ueno@unixuser.org>
358         * epa.el (epa-key-list-mode-map): Add menu.
359         (epa-delete-keys, epa-import-keys): Fix typo.
361 2008-04-29  Glenn Morris  <rgm@gnu.org>
363         * find-cmd.el (top-level): Does not need cl when compiling.
365 2008-04-29  Phil Jackson  <phil@shellarchive.co.uk>
367         * find-cmd.el: New file.
369 2008-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
371         * minibuffer.el (completion-hilit-commonality): Remove leftover code.
372         (completion-pcm--pattern->regex): Let `group' be a list of symbols.
373         (completion-pcm--hilit-commonality): New function.
374         (completion-pcm-all-completions): Use it.
376         * minibuffer.el (completion-common-substring): Mark obsolete.
377         (completions-first-difference, completions-common-part):
378         Move from simple.el.
379         (completion-hilit-commonality): New fun.
380         (display-completion-list, completion-emacs21-all-completions)
381         (completion-emacs22-all-completions): Use it.
382         * simple.el (completions-first-difference, completions-common-part):
383         Move to minibuffer.el.
384         (choose-completion-string): Use field functions and minibufferp.
385         (completion-setup-function): Don't set completions faces.
387 2008-04-29  Glenn Morris  <rgm@gnu.org>
389         * calendar/calendar.el (calendar-nth-named-absday)
390         (calendar-nth-named-day):
391         * calendar/diary-lib.el (diary-list-sexp-entries, diary-float):
392         * calendar/holidays.el (holiday-float): Doc fixes.
394         * emacs-lisp/check-declare.el (check-declare-errmsg): Fix counting in
395         the `full' case.
397         * org/org-agenda.el (calendar-iso-from-absolute):
398         * org/org.el (calendar-absolute-from-iso, calendar-iso-from-absolute):
399         Fix declarations.
401 2008-04-28  Nick Roberts  <nickrob@snap.net.nz>
403         * progmodes/gdb-ui.el (gdb-info-breakpoints-custom): Make breakpoint
404         icons work for assembler, i.e. FILE.s, FILE.S (not disassembly).
405         (gdb-goto-breakpoint): Likewise for visiting breakpoints.
406         (gdb-assembler-custom): Be careful not to match other addresses.
408 2008-04-29  Jason Rumney  <jasonr@gnu.org>
410         * battery.el (battery-status-function): Use w32-battery-status
411         on Windows.
412         (battery-echo-area-format): Make apm format the general case.
413         (battery-mode-line-format): Merge apm and pmset formats as the
414         general case.
416 2008-04-29  Nick Roberts  <nickrob@snap.net.nz>
418         * progmodes/gdb-ui.el (gdb-info-stack-custom):
419         Use gud-tool-bar-item-visible-no-fringe.
420         (gdb-display-buffer): Don't pop new buffer if gud-comint-buffer
421         is already visible in frame.  Remove optional size parameter
422         and add optional frame parameter.
424         * progmodes/gud.el (gud-display-line): Only consider visible
425         frames when looking for source buffer.
427 2008-04-28  Chong Yidong  <cyd@stupidchicken.com>
429         * doc-view.el (doc-view-new-window-function): Avoid using WINDOW
430         argument to get-char-property, in case the current buffer hasn't
431         been assigned to that window yet.
432         (doc-view-display): Default to selected window if the current
433         buffer hasn't been assigned to a window yet.
435 2008-04-28  Vinicius Jose Latorre  <bzg@altern.org>
437         * whitespace.el (whitespace-trailing-regexp): Fix docstring.
439 2008-04-28  Michael Albinus  <michael.albinus@gmx.de>
441         * net/tramp.el (tramp-mode): New defcustom.
442         (tramp-file-name-handler, tramp-completion-file-name-handler):
443         Use it.
444         (tramp-replace-environment-variables): Handle "$$".
446 2008-04-28  Sam Steingold  <sds@gnu.org>
448         * vc-hg.el (vc-hg-rename-file): Fix argument order.
450 2008-04-28  Bastien Guerry  <bzg@altern.org>
452         * whitespace.el (whitespace-trailing): Fix typo.
454 2008-04-28  Sam Steingold  <sds@gnu.org>
456         * textmodes/remember.el (diary-make-entry): Update the autoload.
458 2008-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
460         * minibuffer.el (completion-pcm--all-completions): Don't pass nil to
461         all-completions.
463 2008-04-28  Juanma Barranquero  <lekktu@gmail.com>
465         * desktop.el (desktop-minor-mode-table): Add `savehist-mode'.
467 2008-04-27  Dan Nicolaescu  <dann@ics.uci.edu>
469         * vc.el (vc-dir-mode-map): Change bindings for unmark all and revert.
470         (vc-dir-parent-marked-p, vc-dir-children-marked-p): Implement.
471         (vc-dir-mark-file): Add an optional argument.
472         (vc-dir-mark-all-files, vc-dir-unmark-all-files): Deal with directories.
474 2008-04-27  Daiki Ueno  <ueno@unixuser.org>
476         * epa-file.el (epa-file-enable, epa-file-disable): Use find-file-hook
477         rather than obsolete alias find-file-hooks.
478         (auto-encryption-mode): Rename from epa-file-mode.  Default to on.
479         Use find-file-hook rather than obsolete alias find-file-hooks.
480         Add to find-file-not-found-functions.
481         (epa-file-handler): Put 'safe-magic and 'operations properties.
483         * epa.el (epa-global-minor-modes, epa-mode, epa-menu)
484         (epa-menu-items): Remove.
486         * epa-dired.el (epa-dired-do-decrypt, epa-dired-do-verify)
487         (epa-dired-do-sign, epa-dired-do-encrypt): Add autoload cookie.
488         (epa-dired-mode, epa-global-dired-mode): Remove.
490         * dired.el (dired-mode-map): Bind encryption/decryption commands.
492         * menu-bar.el (menu-bar-encryption-decryption-menu): New menu item.
494         * files.el (insert-file-contents-literally): Inhibit epa-file-handler.
496 2008-04-27  Glenn Morris  <rgm@gnu.org>
498         * textmodes/reftex-global.el (reftex-isearch-switch-to-next-file):
499         Remove un-needed local `orig-list'.  Replace cl `copy-list'.
501 2008-04-27  Carsten Dominik  <dominik@science.uva.nl>
503         * org/org.el (org-html-level-start): Always have id's in HTML.
504         (org-export-as-html): Use `org-link-protocols' to
505         retrieve the export form of the link.
506         (org-add-link-type): Final parameter renamed from PUBLISH.
507         Better documentation of how it is to be used.  Avoid double entries for
508         the same link type.
509         (org-add-link-props): New function.
510         (org-modules-loaded): New variable.
511         (org-load-modules-maybe, org-set-modules): New function.
512         (org-modules): New option.
513         (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
514         (orgtbl-mode, org-store-link, org-insert-link-global)
515         (org-open-at-point): Call `org-load-modules-maybe'.
516         (org-search-view): Add more text properties.
517         (org-agenda-schedule, org-agenda-deadline): Allow also in
518         search-type agendas.
519         (org-search-view): Order of arguments has been changed.
520         Interpret prefix-arg as TODO-ONLY.
521         (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
522         Take new argument order of `org-search-view' into account.
523         (org-todo-only): New variable.
524         (org-search-syntax-table): New variable and function.
525         (org-search-view): Do the search with the special syntax table.
526         (define-obsolete-function-alias): Make work with XEmacs.
527         (org-add-planning-info): Use old date as default when modifying an
528         existing deadline or scheduled item.
529         (org-agenda-compute-time-span): Make argument N optional.
530         (org-agenda-format-date-aligned): Require `cal-iso'.
531         (org-agenda-list): Include week into into agenda heading, don't
532         list it at each date (only on Mondays).
533         (org-read-date-analyze): Define local variable `iso-date'.
534         (org-agenda-format-date-aligned): Remove dependency on
535         `calendar-time-from-absolute'.
536         (org-remember-apply-template, org-go-to-remember-target):
537         Interpret filenames relative to `org-directory'.
538         (org-complete): Silently fail when trying to complete
539         keywords that don't have a default value.
540         (org-get-current-options): Add a #+DATE: option.
541         (org-additional-option-like-keywords): Remove "DATE:" from the
542         list of additional keywords.
543         (org-export-as-html): Remove (current-time) as unnecessary second
544         argument of `format-time-string'.
545         (org-clock-find-position): Handle special case at end of buffer.
546         (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
547         `org-agenda-change-time-span'.
548         (org-agenda-week-view): New argument ISO-WEEK, pass it on to
549         `org-agenda-change-time-span'.
550         (org-agenda-month-view): New argument MONTH, pass it on to
551         `org-agenda-change-time-span'.
552         (org-agenda-year-view): New argument YEAR, pass it on to
553         `org-agenda-change-time-span'.
554         (org-agenda-change-time-span): New optional argument N, pass it on
555         to `org-agenda-compute-time-span'.
556         (org-agenda-compute-time-span): New argument N, interpret it by
557         changing the starting day.
558         (org-small-year-to-year): New function.
559         (org-scheduled-past-days): Respect `org-scheduled-past-days'.
560         (org-auto-repeat-maybe): Make sure that repeating dates are pushed
561         into the future, and that the shift is at least one interval, never 0.
562         (org-update-checkbox-count): Fix bug with checkbox counting.
563         (org-add-note): New command.
564         (org-add-log-setup): Rename from `org-add-log-maybe'.
565         (org-log-note-headings): New entry for plain notes (i.e. notes not
566         related to state changes or clocking).
567         (org-get-org-file): Check for availability of `remember-data-file'.
568         (org-cached-entry-get): Allow a regexp value for
569         `org-use-property-inheritance'.
570         (org-use-property-inheritance): Allow regexp value.  Fix bug in
571         customization type.
572         (org-use-tag-inheritance): Allow a list and a regexp value for
573         this variable.
574         (org-scan-tags, org-get-tags-at): Implement selective tag inheritance.
575         (org-entry-get): Respect value `selective' for the INHERIT argument.
576         (org-tag-inherit-p, org-property-inherit-p): New functions.
577         (org-agenda-format-date-aligned): Allow 10 characters for
578         weekday, to acomodate German locale.
579         (org-add-archive-files): New function.
580         (org-agenda-files): New argument `ext', to get archive files as well.
581         (org-tbl-menu): Protect the use of variables that
582         are only available when org-table.el gets loaded.
583         (org-read-agenda-file-list): Error if `org-agenda-files' is a
584         single directory.
585         (org-open-file): Allow a batch process to trigger
586         waiting after executing a system command.
587         (org-store-link): Link to headline when there is not
588         target and no region in an org-mode buffer when creating a link.
589         (org-link-types-re): New variable.
590         (org-make-link-regexps): Compute `org-link-types-re'.
591         (org-make-link-description-function): New option.
592         (org-agenda-date, org-agenda-date-weekend): New faces.
593         (org-archive-sibling-heading): New option.
594         (org-archive-to-archive-sibling): New function.
595         (org-iswitchb): New command.
596         (org-buffer-list): New function.
597         (org-agenda-columns): Also try the #+COLUMNS line in
598         the buffer associated with the entry at point (or with the first
599         entry in the agenda view).
600         (org-modules): Add entry for org-bibtex.el.
601         (org-completion-fallback-command): Move into `org-completion' group.
602         (org-clock-heading-function): Move to `org-progress' group.
603         (org-auto-repeat-maybe): Make sure that a note can
604         be enforces if `org-log-repeat' is `note'.
605         (org-modules): Allow additional symbols for external packages.
606         (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be undefined.
607         (org-clock-goto): Hide drawers after showing an
608         entry with `org-clock-goto.'
609         (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft):
610         Try also a clocktable block shift.
611         (org-clocktable-try-shift): New function.
612         (org-columns-hscoll-title): New function.
613         (org-columns-previous-hscroll): New variable.
614         (org-columns-full-header-line-format): New variable.
615         (org-columns-display-here-title, org-columns-remove-overlays):
616         Install `org-columns-hscoll-title' in post-command-hook.
618         * org/org.el: Split into many small files.
620         * org/org-agenda.el: New file, split off from org.el.
622         * org/org-archive.el: New file, split off from org.el.
624         * org/org-bbdb.el: New file.
626         * org/org-bibtex.el: New file, split off from org.el.
628         * org/org-clock.el: New file, split off from org.el.
630         * org/org-colview.el: New file, split off from org.el.
632         * org/org-compat.el: New file, split off from org.el.
634         * org/org-exp.el: New file, split off from org.el.
636         * org/org-faces.el: New file, split off from org.el.
638         * org/org-gnus.el: New file, split off from org.el.
640         * org/org-info.el: New file, split off from org.el.
642         * org/org-infojs.el: New file.
644         * org/org-irc.el: New file.
646         * org/org-macs.el: New file, split off from org.el.
648         * org/org-mew.el: New file.
650         * org/org-mhe.el: New file, split off from org.el.
652         * org/org-publish.el: New file, split off from org.el.
654         * org/org-remember.el: New file, split off from org.el.
656         * org/org-rmail.el: New file, split off from org.el.
658         * org/org-table.el: New file, split off from org.el.
660         * org/org-vm.el: New file, split off from org.el.
662         * org/org-wl.el: New file, split off from org.el.
664 2008-04-27  Jason Riedy  <jason@acm.org>
666         * lisp/org-table.el (orgtbl-to-generic): Add a :remove-nil-lines
667         parameter that supresses lines that evaluate to NIL.
668         (orgtbl-get-fmt): New inline function for
669         picking apart formats that may be lists.
670         (orgtbl-apply-fmt): New inline function for applying formats that
671         may be functions.
672         (orgtbl-eval-str): New inline function for strings that may be
673         functions.
674         (orgtbl-format-line, orgtbl-to-generic): Use and document.
675         (orgtbl-to-latex, orgtbl-to-texinfo): Document.
676         (*orgtbl-llfmt*, *orgtbl-llstart*)
677         (*orgtbl-llend*): Dynamic variables for last-line formatting.
678         (orgtbl-format-section): Shift formatting to support detecting the
679         last line and formatting it specially.
680         (orgtbl-to-generic): Document :ll* formats.  Set to the non-ll
681         formats unless overridden.
682         (orgtbl-to-latex): Suggest using :llend to suppress the final \\.
683         (*orgtbl-table*, *orgtbl-rtn*): Dynamically
684         bound variables to hold the input collection of lines and output
685         formatted text.
686         (*orgtbl-hline*, *orgtbl-sep*, *orgtbl-fmt*, *orgtbl-efmt*)
687         (*orgtbl-lfmt*, *orgtbl-lstart*, *orgtbl-lend*): Dynamically bound
688         format parameters.
689         (orgtbl-format-line): New function encapsulating formatting for a
690         single line.
691         (orgtbl-format-section): Similar for each section.  Rebinding the
692         dynamic vars customizes the formatting for each section.
693         (orgtbl-to-generic): Use orgtbl-format-line and
694         orgtbl-format-section.
695         (org-get-param): Now unused, so delete.
696         (orgtbl-gather-send-defs): New function to
697         gather all the SEND definitions before a table.
698         (orgtbl-send-replace-tbl): New function to find the RECEIVE
699         corresponding to the current name.
700         (orgtbl-send-table): Use the previous two functions and implement
701         multiple destinations for each table.
703         * doc/org.texi (A LaTeX example): Note that fmt may be a
704         one-argument function, and efmt may be a two-argument function.
705         (Radio tables): Document multiple destinations.
707 2008-04-27  Carsten Dominik  <dominik@science.uva.nl>
709         * org/org-agenda.el (org-add-to-diary-list): New function.
710         (org-prefix-has-effort): New variable.
711         (org-sort-agenda-noeffort-is-high): New option.
712         (org-agenda-columns-show-summaries)
713         (org-agenda-columns-compute-summary-properties): New options.
714         (org-format-agenda-item): Compute the duration of the item.
715         (org-agenda-weekend-days): New variable.
716         (org-agenda-list, org-timeline): Use the proper faces for dates in
717         the agenda and timeline buffers.
718         (org-agenda-archive-to-archive-sibling): New command.
719         (org-agenda-start-with-clockreport-mode): New option.
720         (org-agenda-clockreport-parameter-plist): New option.
721         (org-agenda-clocktable-mode): New variable.
722         (org-agenda-deadline-leaders): Allow a function value for the
723         deadline leader.
724         (org-agenda-get-deadlines): Deal with new function value.
726         * lisp/org-clock.el (org-clock): New customization group.
727         (org-clock-into-drawer, org-clock-out-when-done)
728         (org-clock-in-switch-to-state, org-clock-heading-function):
729         Move into the new group.
730         (org-clock-out-remove-zero-time-clocks): New option.
731         (org-clock-out): Use `org-clock-out-remove-zero-time-clocks'.
732         (org-dblock-write:clocktable): Allow a Lisp form for the scope
733         parameter.
734         (org-dblock-write:clocktable): Fix bug with total time calculation.
735         (org-dblock-write:clocktable): Request the unrestricted list of files.
736         (org-get-clocktable): New function.
737         (org-dblock-write:clocktable): Make sure :tstart and :tend can not only
738         be strings but also integers (an absolute day number) and lists (m d y).
740         * org/org-colview.el (org-columns-next-allowed-value)
741         (org-columns-edit-value): Limit the effort for updating in the
742         agenda to recomputing a single file.
743         (org-columns-compute): Only write property value if it has changed.
744         This avoids raising the buffer-change-flag unnecessarily.
745         (org-agenda-colview-summarize)
746         (org-agenda-colview-compute): New functions.
747         (org-agenda-columns): Call `org-agenda-colview-summarize'.
749         * org/org-exp.el (org-export-run-in-background): New option.
750         (org-export-icalendar): Allow a batch process to trigger waiting
751         after executing a system command.
752         (org-export-preprocess-string): Rename from
753         `org-cleaned-string-for-export'.
754         (org-export-html-style): Made target class look like normal text.
755         (org-export-as-html): Make use of the better proprocessing in
756         `org-cleaned-string-for-export'.
757         (org-cleaned-string-for-export): Better treatment of heuristic
758         targets, many more internal links will now work in HTML export.
759         (org-get-current-options): Incorporate LINK_UP, LINK_HOME, and INFOJS.
760         (org-export-inbuffer-options-extra): New variable.
761         (org-export-options-filters): New hook.
762         (org-infile-export-plist): Find also the settings keywords in
763         `org-export-inbuffer-options-extra'.
764         (org-infile-export-plist): Allow multiple #+OPTIONS lines and
765         multiple #+INFOJS_OPT lines.
766         (org-export-html-handle-js-options): New function.
767         (org-export-html-infojs-setup): New option.
768         (org-export-as-html): Call `org-export-html-handle-js-options'.
769         Add autoload to all entry points.
770         (org-skip-comments): Function removed.
772         * org/org-table.el (org-table-make-reference): Extra parenthesis
773         around single fields, to make sure that algebraic formulas get
774         correctly interpreted by calc.
775         (org-table-current-column): No longer interactive.
777         * org/org-export-latex.el (org-export-latex-preprocess):
778         Rename from `org-export-latex-cleaned-string'.
780 2008-04-27  Bastien Guerry  <bzg@altern.org>
782         * org/org-publish.el (org-publish-get-base-files-1): New function.
783         (org-publish-get-base-files): Use it.
784         (org-publish-temp-files): New variable.
785         Don't require 'dired-aux anymore.
786         (org-publish-initial-buffer): New variable.
787         (org-publish-org-to, org-publish): Use it.
788         (org-publish-get-base-files-1): Bug fix: get
789         the proper list of files when recursing thru a directory.
790         (org-publish-get-base-files): Use the :exclude property to skip
791         both files and directories.
793 2008-04-27  Michael Albinus  <michael.albinus@gmx.de>
795         * net/tramp.el (tramp-handle-make-symbolic-link)
796         (tramp-handle-file-name-directory)
797         (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
798         (tramp-do-copy-or-rename-file-directly)
799         (tramp-handle-insert-directory, tramp-handle-expand-file-name)
800         (tramp-handle-substitute-in-file-name)
801         (tramp-handle-insert-file-contents, tramp-handle-write-region)
802         * net/tramp-cache.el (tramp-get-file-property)
803         (tramp-set-file-property, tramp-flush-file-property)
804         (tramp-flush-directory-property)
805         * net/tramp-compat.el (tramp-compat-make-temp-file)
806         * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
807         Disable `file-name-handler-alist' when handling localname.
808         It could have a remote file syntax, like a VMS file name.
810 2008-04-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
812         * whitespace.el: New version 11.1.
813         (whitespace-trailing-regexp): Option fix, now trailing regexp must be
814         enclosed by \\( and \\)$.  Docstring fix.
815         (whitespace-trailing-regexp): Fun removed.
816         (whitespace-report-list): Const initialization fix.
817         (whitespace-color-on): Code fix.
819 2008-04-27  Andreas Schwab  <schwab@suse.de>
821         * Makefile.el: Unbreak bootstrap.
823 2008-04-27  Michael Albinus  <michael.albinus@gmx.de>
825         * net/tramp.el (tramp-replace-environment-variables): New defun.
826         (tramp-handle-substitute-in-file-name, tramp-file-name-handler):
827         Use it.
829 2008-04-27  Glenn Morris  <rgm@gnu.org>
831         * emacs-lisp/bytecomp.el (byte-compile-file): Doc fix.
833         * calculator.el (calculator-expt): Replace cl function `oddp'.
835 2008-04-27  Johan Bockgård  <bojohan@gnu.org>
837         * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
838         Simplify.  Collect `defun' and `autoload' entries.
839         Avoid modifying load-history.
841 2008-04-26  Glenn Morris  <rgm@gnu.org>
843         * textmodes/ispell.el (ispell-insert-word): Revert previous change.
845         * simple.el (quoted-insert, zap-to-char): Revert previous change.
847 2008-04-26  John Paul Wallington  <jpw@pobox.com>
849         * hexl.el (hexl-mode): Stash `eldoc-documentation-function' in
850         `hexl-mode-old-eldoc-documentation-function'.
851         (hexl-mode-exit): Restore it.
852         (hexl-mode-old-eldoc-documentation-function): Declare for compiler.
854         * w32-fns.el (top-level): Don't set `completion-ignore-case' to t.
856 2008-04-26  Juanma Barranquero  <lekktu@gmail.com>
858         * minibuffer.el (completion-pcm-word-delimiters): Add :group.
859         (completion-pcm--all-completions): Doc fix.
860         (completion-styles-alist, completion-all-completions):
861         Fix typos in docstrings.
863 2008-04-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
865         * whitespace.el: There is now only one variable (whitespace-style) to
866         specify which kind of blank is visualized.  Doc and docstring fix.
867         New version 11.0.
868         (whitespace-style): New option, replace whitespace-style-mark and
869         whitespace-style-color.
870         (whitespace-style-mark, whitespace-style-color): Options removed.
871         (whitespace-hspace, whitespace-tab, whitespace-newline)
872         (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
873         (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
874         (whitespace-hspace-regexp, whitespace-space-regexp)
875         (whitespace-tab-regexp, whitespace-trailing-regexp)
876         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
877         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
878         (whitespace-space-after-tab-regexp, whitespace-line-column)
879         (whitespace-display-mappings, whitespace-report): Docstring fix.
880         (whitespace-color-value-list, whitespace-mark-value-list)
881         (whitespace-active-color, whitespace-active-mark)
882         (whitespace-toggle-color, whitespace-toggle-mark): Vars removed.
883         (whitespace-style-value-list, whitespace-active-style)
884         (whitespace-toggle-style): New vars.
885         (whitespace-toggle-option-alist, whitespace-help-text):
886         Var initialization and docstring fix.
887         (whitespace-toggle-options, global-whitespace-toggle-options)
888         (whitespace-cleanup, whitespace-cleanup-region)
889         (whitespace-report-region, whitespace-interactive-char)
890         (whitespace-toggle-list): Docstring and code fix.
891         (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
892         (whitespace-turn-off, whitespace-color-on, whitespace-color-off)
893         (whitespace-display-char-on, whitespace-display-char-off): Code fix.
894         (whitespace-style-face-p, whitespace-style-mark-p): New fun.
896 2008-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
898         * diff-mode.el (diff-hunk-header-re-unified): Allow elided line counts.
899         (diff-end-of-hunk, diff-unified->context, diff-fixup-modifs)
900         (diff-sanity-check-hunk): Adjust code accordingly.
902 2008-04-26  Glenn Morris  <rgm@gnu.org>
904         * abbrev.el (define-abbrev): Don't use `iff' in doc-strings.
906         * forms-d2.dat: Move to ../etc.
907         * forms-d2.el (forms-file): Adapt for above change.
909         * simple.el (quoted-insert, zap-to-char): Remove uses of obsolete
910         `translation-table-for-input'.
912         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): New function.
913         (byte-compile-obsolete, byte-compile-variable-ref): Use it.
915         * progmodes/fortran.el (fortran-mode-syntax-table): Change `;'
916         to punctuation now it's not needed for abbrevs.
917         (fortran-mode-abbrev-table): Remove defvar, make use of new
918         define-abbrev-table :regexp feature.
920         * textmodes/ispell.el (ispell-insert-word): Remove, and replace with
921         insert, now that translation-table-for-input is not needed.
923 2008-04-26  Johannes Weiner  <hannes@saeurebad.de>
925         * emacs-lisp/pp.el (pp-display-expression): New function,
926         extracted from pp-eval-expression.
927         (pp-eval-expression): Use pp-display-expression.
928         (pp-macroexpand-expression, pp-macroexpand-last-sexp): New functions.
929         (pp-last-sexp): New function, extracted from pp-eval-last-sexp.
930         (pp-eval-last-sexp): Use pp-last-sexp.
932 2008-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
934         * abbrev.el (define-abbrev-table): Apply props even if the table
935         exists already.
937         * minibuffer.el (completion-table-with-context): Fix `pred' for the
938         various kinds of completion tables.
939         (completion-emacs22-try-completion): Place cursor after the /, as was
940         done in Emacs-22's minibuffer-complete-word.
941         Fix bug reported by David Hansen <david.hansen@gmx.net>.
942         (completion-emacs22-try-completion): Merge all mergable text rather
943         than just /.
944         (completion-pcm--delim-wild-regex): New var.
945         (completion-pcm-word-delimiters): New custom.
946         (completion-pcm--prepare-delim-re, completion-pcm--pattern-trivial-p)
947         (completion-pcm--string->pattern, completion-pcm--pattern->regex)
948         (completion-pcm--all-completions, completion-pcm-all-completions)
949         (completion-pcm--merge-completions, completion-pcm--pattern->string)
950         (completion-pcm-try-completion): New functions.
951         (completion-styles-alist): Add them.
952         (completion-styles): Add it to the default.
954 2008-04-25  Nick Roberts  <nickrob@snap.net.nz>
956         * progmodes/gdb-ui.el (gud-watch): Don't create speedbar...
957         (gdb-var-create-handler): ...until here when there are values.
958         (gdb-post-prompt): Don't do -var-update with no watch expressions.
959         (gdb-info-locals-handler): Don't match "struct {...}" as an array.
961 2008-04-25  Eli Zaretskii  <eliz@gnu.org>
963         * ls-lisp.el (ls-lisp-format): Fix last change.
964         (ls-lisp-uid-d-fmt, ls-lisp-uid-s-fmt, ls-lisp-gid-d-fmt)
965         (ls-lisp-gid-s-fmt, ls-lisp-filesize-d-fmt)
966         (ls-lisp-filesize-f-fmt): New defvars.
967         (ls-lisp-insert-directory): Dynamically compute format specifiers
968         for displaying UID, GID, and file size, and store them in the
969         above variables.
970         (ls-lisp-format): Use ls-lisp-filesize-f-fmt, ls-lisp-uid-s-fmt,
971         ls-lisp-uid-d-fmt, ls-lisp-gid-s-fmt, and ls-lisp-gid-d-fmt
972         instead of constant format strings.
973         (ls-lisp-format-file-size): Use ls-lisp-filesize-f-fmt and
974         ls-lisp-filesize-d-fmt instead of constant format strings.
976 2008-04-24  Nick Roberts  <nickrob@snap.net.nz>
978         * progmodes/gdb-ui.el (gdb-invalidate-assembler): Compare numeric
979         value of addresses rather than (partial) string value.
980         (gdb-frame-handler): Change regexp according to above change.
981         (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
982         (gdb-registers-mode, gdb-memory-mode, gdb-locals-mode)
983         (gdb-assembler-mode): Disable undo in these buffers.
985 2008-04-24  Michael Albinus  <michael.albinus@gmx.de>
987         * net/tramp.el (tramp-get-remote-stat): Test whether stat supports %s.
988         Reported by Loris Bennett <loris.bennett@fu-berlin.de>.
990 2008-04-24  Sam Steingold  <sds@gnu.org>
992         * textmodes/remember.el (remember-diary-extract-entries): Use
993         diary-make-entry instead of the obsolete make-diary-entry.
995 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
997         * subr.el (translation-table-for-input): Mark as obsolete.
999         * isearch.el (isearch-search-string): Avoid string-bytes and aset.
1001         * international/quail.el (quail-build-decode-map): Avoid string-bytes.
1003         * textmodes/ispell.el (ispell-dictionary-alist-1)
1004         (ispell-dictionary-alist-2, ispell-dictionary-alist-3):
1005         (ispell-dictionary-alist-4, ispell-dictionary-alist-5):
1006         (ispell-dictionary-alist-6): Remove.
1007         (ispell-dictionary-base-alist): New var, merges the above.
1008         (ispell-find-aspell-dictionaries, ispell-set-spellchecker-params):
1009         Use it.
1010         (ispell-dictionary-alist): Default to nil.  Remove autoload.
1011         (ispell-local-dictionary-alist): Remove autoload.
1013         * progmodes/f90.el (f90-mode-syntax-table): Don't set ` as word syntax.
1014         (f90-mode-abbrev-table): Use the new :regexp feature.
1015         Merge defvar and mapc into define-abbrev-table.
1016         (f90-imenu-type-matcher): Remove unused `l'.
1017         (f90-imenu-generic-expression): Remove unused `not-ib'.
1018         (f90-prepare-abbrev-list-buffer): Use with-current-buffer.
1019         (f90-change-keywords): Use restore-buffer-modified-p.
1021 2008-04-24  Glenn Morris  <rgm@gnu.org>
1023         * net/goto-addr.el (goto-address-prog-mode):
1024         * progmodes/bug-reference.el (bug-reference-prog-mode):
1025         Define for compiler.
1027         * minibuffer.el (x-file-dialog): Declare as function.
1029         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file): Use
1030         dframe-update-speed rather than obsolete alias speedbar-update-speed.
1032         * calendar/cal-menu.el (cal-menu-diary-menu): Fix typo.
1033         (cal-menu-scroll-menu): Use commands rather than key macros, which don't
1034         work with easymenu.  Add :keys where needed.
1036         * calendar/cal-move.el (calendar-scroll-left): Handle case when
1037         event-start is nil.
1039         * calendar/calendar.el (calendar-mode-map): Fix typo.
1041 2008-04-24  Tom Tromey  <tromey@redhat.com>
1043         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
1044         Document keywords.  Add :suppress.
1045         * pcvs-defs.el (cvs-mode-map): Use :suppress.
1047         * net/goto-addr.el (goto-address-unfontify): New function.
1048         (goto-address-fontify): Use it.  Respect goto-address-prog-mode.
1049         (goto-address-fontify-region, goto-address-mode)
1050         (goto-address-prog-mode): New functions.
1052         * progmodes/bug-reference.el: New file.
1054 2008-04-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1056         * term/mac-win.el (mac-ts-active-input-buf): Move defvar to macterm.c.
1058 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1060         * emacs-lisp/easymenu.el (easy-menu-make-symbol): Don't wrap keyboard
1061         macros within lambdas.
1063 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1065         * minibuffer.el (completion-try-completion): Add `point' argument.
1066         Change return value.
1067         (completion-all-completions): Add `point' argument.
1068         (minibuffer-completion-help): Pass the new `point' argument.
1069         (completion--do-completion): Pass the whole field to try-completion.
1070         (completion--try-word-completion): Rewrite, making fewer assumptions.
1071         (completion-emacs21-try-completion, completion-emacs21-all-completions)
1072         (completion-emacs22-try-completion, completion-emacs22-all-completions)
1073         (completion-basic-try-completion, completion-basic-all-completions):
1074         New functions.
1075         (completion-styles-alist): Use them.
1077 2008-04-23  Agustin Martin  <agustin.martin@hispalinux.es>
1079         * ispell.el (ispell-set-spellchecker-params): New function to make sure
1080         right params and dictionary alists are used after spellchecker changes.
1081         (ispell-aspell-dictionary-alist, ispell-last-program-name)
1082         (ispell-initialize-spellchecker-hook): New variables and hook.
1083         (ispell-find-aspell-dictionaries): Use ispell-aspell-dictionary-alist.
1084         (ispell-maybe-find-aspell-dictionaries): Remove.
1085         Calls replaced by (ispell-set-spellchecker-params) calls.
1086         (ispell-have-aspell-dictionaries): Remove.
1087         * flyspell.el: Replace ispell-maybe-find-aspell-dictionaries by
1088         ispell-set-spellchecker-params.
1090 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1092         * complete.el (PC-do-completion): Be more robust in the presence of
1093         unexpected values in minibuffer-completion-predicate.
1095         * minibuffer.el (read-file-name): Don't let-bind default-directory.
1096         Only abbreviate default-filename if it's a file.
1098         * minibuffer.el (read-file-name-function, read-file-name-predicate)
1099         (read-file-name-completion-ignore-case, insert-default-directory):
1100         New vars, moved from fileio.c.
1101         (read-file-name): New fun, moved from fileio.c.
1102         * cus-start.el: Remove insert-default-directory and
1103         read-file-name-completion-ignore-case.
1105 2008-04-23  Magnus Henoch  <mange@freemail.hu>
1107         * tar-mode.el (tar-untar-buffer): If the entry has directory
1108         link type, extract it as a directory even if its file name doesn't
1109         end with a slash.  Fixes extraction of NetBSD tar archives.
1111 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1113         * server.el (server-start): Also don't get confused by CRs since we
1114         don't quote them.
1116 2008-04-23  Nick Roberts  <nickrob@snap.net.nz>
1118         * progmodes/gdb-ui.el (gdb-init-buffer): New function.
1119         (gdb-set-gud-minor-mode-existing-buffers)
1120         (gdb-info-breakpoints-custom, gdb-get-location)
1121         (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
1122         Previously gdb-create-define-alist wasn't always run and added to
1123         after-save-hook.
1125         * progmodes/gud.el (gud-tooltip-tips): Use tooltip-event-buffer
1127 2008-04-23  Kevin Ryde  <user42@zip.com.au>
1129         * progmodes/make-mode.el (makefile-fill-paragraph): Treat indented
1130         comments like unindented ones.
1132 2008-04-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1134         * term/mac-win.el (mac-ae-open-documents): Adjust selection range
1135         parameter origins.
1137 2008-04-23  Kevin Ryde  <user42@zip.com.au>
1139         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1140         Bind print-level to ensure output forms aren't truncated if
1141         print-level is set to eval-expression-print-level when going via
1142         eval-defun and friends, or has been otherwise fiddled with.
1144 2008-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1146         * progmodes/cc-mode.el (c-basic-common-init): Don't set
1147         font-lock-extend-after-change-region-function globally.
1149 2008-04-23  Juanma Barranquero  <lekktu@gmail.com>
1151         * speedbar.el (speedbar-use-tool-tips-flag)
1152         (speedbar-ignored-directory-regexp, speedbar-file-unshown-regexp)
1153         (speedbar-file-regexp, speedbar-message, speedbar-item-info)
1154         (speedbar-files-item-info, speedbar-maybe-add-localized-support)
1155         (speedbar-insert-files-at-point, speedbar-dynamic-tags-function-list)
1156         (speedbar-generic-list-positioned-group-p, speedbar-insert-generic-list)
1157         (speedbar-fetch-replacement-function, speedbar-extract-one-symbol)
1158         (speedbar-separator-face): Fix typos in docstrings.
1159         (speedbar-stealthy-function-list, speedbar-verbosity-level)
1160         (speedbar-supported-extension-expressions, speedbar-update-current-file)
1161         (speedbar-add-indicator, speedbar-tag-expand): Reflow docstring.
1162         (speedbar-use-imenu-flag, speedbar-ignored-directory-expressions)
1163         (speedbar-directory-unshown-regexp, speedbar-handle-delete-frame)
1164         (speedbar-show-info-under-mouse, speedbar-directory-buttons)
1165         (speedbar-check-vc-this-line, speedbar-files-line-directory)
1166         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
1167         (speedbar-buffers-line-directory, speedbar-recenter-to-top)
1168         (speedbar-recenter): Doc fixes.
1169         (speedbar-update-speed, speedbar-navigating-speed): Add obsolescence
1170         declaration and remove redundant info in docstring.
1172 2008-04-23  Dan Nicolaescu  <dann@ics.uci.edu>
1174         * vc-git.el (vc-git-status-printer): Deal with directories.
1176         * vc.el (vc-next-action): Look at more than the first file to
1177         determine the state.
1179 2008-04-23  Glenn Morris  <rgm@gnu.org>
1181         * dframe.el (dframe-have-timer-flag): Drop support for Emacs without
1182         timers.  Doc fix.
1183         (dframe-update-speed): Drop support for XEmacs < 20.
1184         (dframe-frame-mode): Drop support for Emacs < 20.
1185         (dframe-set-timer-internal): Drop support for Emacs without timers.
1186         (dframe-popup-kludge): Use mouse-menu-major-mode-map if defined.
1188         * ediff-init.el (ediff-check-version): Drop support for very old Emacs
1189         versions.  Add doc-string.  Mark as obsolete.
1191         * ps-def.el (ps-color-device): Drop support for XEmacs < 19.12.
1193         * speedbar.el (speedbar-use-tool-tips-flag): Check for tooltip-mode,
1194         rather than using an Emacs version test.
1196         * tree-widget.el (tree-widget-image-enable): Use display-images-p
1197         rather than an Emacs version test.
1199         * calendar/cal-china.el (holiday-chinese-qingming)
1200         (holiday-chinese-winter-solstice, holiday-chinese): New functions.
1201         * calendar/calendar.el (calendar-chinese-all-holidays-flag): New.
1202         * calendar/holidays.el (holiday-oriental-holidays): Add more holidays.
1204         * calendar/cal-islam.el (holiday-islamic): Doc fix.
1206         * calendar/diary-lib.el (diary-list-sexp-entries): Doc fix.
1207         (diary-remind): Allow negative DAYS to represent a range 1:DAYS.
1208         Suggested by Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
1210 2008-04-23  Nick Roberts  <nickrob@snap.net.nz>
1212         * progmodes/gdb-ui.el (gdb-previous-frame-address): Rename...
1213         (gdb-previous-frame-pc-address): ...to this.
1214         (gdb-get-selected-frame): Use MI command -stack-info-frame instead
1215         of "info frame" with Gdb 6.4+.
1216         (gdb-stack-list-frames-regexp): New regexp.
1217         (gdb-frame-handler-1): Parse output of -stack-info-frame
1219 2008-04-22  David Glasser  <glasser@davidglasser.net>  (tiny change)
1221         * tar-mode.el (tar-prefix-offset): New constant.
1222         (tar-header-block-tokenize): Support paths with long names
1223         which use the "ustar" standard.
1225 2008-04-22  Mathias Dahl  <mathias.dahl@gmail.com>
1227         * image-dired.el (image-dired-track-original-file)
1228         (image-dired-modify-mark-on-thumb-original-file):
1229         Use `dired-goto-file' instead of `search-forward'.  This solves
1230         a bug with finding files where the file name is a subset of other
1231         file names.  Doc fix.
1233 2008-04-22  Juri Linkov  <juri@jurta.org>
1235         * menu-bar.el (buffers-menu-max-size): Move its definition down to
1236         the "Buffers Menu" section.  Change group name `mouse' to `menu'.
1237         (yank-menu-length): Change group name `mouse' to `menu'.
1238         (buffers-menu-buffer-name-length): New user option.
1239         (menu-bar-update-buffers): Use buffers-menu-buffer-name-length
1240         instead of the hard-coded number 27.
1242 2008-04-22  Juri Linkov  <juri@jurta.org>
1244         * isearch.el (eval-when-compile): Require `help-macro'.
1245         (isearch-help-for-help-internal): Isearch specific Help screen
1246         created by `make-help-screen'.
1247         (isearch-help-map): New variable that binds "b", "k", "m" to
1248         isearch-specific commands, and binds other keys to
1249         isearch-other-control-char, thus allowing other Help keys to
1250         exit isearch mode and execute their global definitions.
1251         (isearch-help-for-help, isearch-describe-bindings)
1252         (isearch-describe-key, isearch-describe-mode): New commands.
1253         (isearch-mode-help): Define alias to isearch-describe-mode
1254         and remove its old function definition.
1255         (isearch-mode-map): Bind "\C-h" to isearch-help-map.
1256         Remove old comments because this issue is settled now.
1257         (isearch-forward): Describe three new Help commands in the docstring.
1258         (isearch-mode): Remove \\{isearch-mode-map} from the docstring,
1259         leave the single sentence at the first line of the docstring,
1260         and prepend the word "function" before `isearch-forward'
1261         to make the Help link to the function instead of variable.
1263 2008-04-22  Juri Linkov  <juri@jurta.org>
1265         * isearch.el (isearch-success-function): New variable with default
1266         to `isearch-success-function-default'.
1267         (isearch-search): Call a function from `isearch-success-function'
1268         instead of calling the hard-coded `isearch-range-invisible'.
1269         (isearch-success-function-default): New function that calls
1270         `isearch-range-invisible' and inverts its return value.
1272         * info.el (Info-search): In two similar places that skip
1273         undesired search matches move code to Info-search-success-function,
1274         and call `isearch-success-function' instead.
1275         (Info-search-success-function): New function copied from code
1276         in Info-search.  Replace isearch-range-invisible with
1277         text-property-not-all that checks for 'invisible and 'display
1278         properties to skip partially invisible matches (whose display
1279         properties were set by Info-fontify-node).
1280         (Info-mode): Set buffer-local isearch-success-function
1281         to Info-search-success-function.
1283 2008-04-22  Juri Linkov  <juri@jurta.org>
1285         * minibuffer.el (internal-complete-buffer-except): New function.
1287         * files.el (read-buffer-to-switch): New function.
1288         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
1289         Change interactive spec to call read-buffer-to-switch instead of
1290         using the letter "B".
1292         * simple.el (minibuffer-default-add-shell-commands): New function.
1293         Use declare-function for mailcap-file-default-commands from "mailcap".
1294         (shell-command): Set local minibuffer-default-add-function to
1295         minibuffer-default-add-shell-commands in minibuffer-with-setup-hook
1296         before calling read-shell-command.  Set 4th arg default-value of
1297         read-shell-command to relative buffer-file-name in file buffers.
1299         * dired-aux.el (dired-read-shell-command-default): Move it to
1300         gnus/mailcap.el and change its name to more general name
1301         mailcap-file-default-commands.
1302         (minibuffer-default-add-dired-shell-commands): New function.
1303         Use declare-function for mailcap-file-default-commands from "mailcap".
1304         (dired-read-shell-command): Set local minibuffer-default-add-function
1305         to minibuffer-default-add-dired-shell-commands in minibuffer-with-setup-hook
1306         before calling read-shell-command.  Remove dired-read-shell-command-default
1307         from the default value arg because default values are not set in
1308         minibuffer-default-add-dired-shell-commands.  Doc fix.
1310         * dired-x.el (dired-smart-shell-command): Sync arguments and
1311         interactive spec with changes in `shell-command'.
1312         Use dired-get-filename to get the dired file name at point
1313         as the default value in dired mode.
1315 2008-04-22  Juanma Barranquero  <lekktu@gmail.com>
1317         * info.el (Info-complete-menu-item): Add missing parenthesis.
1319 2008-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1321         * info.el (Info-complete-menu-item): Save point.
1323 2008-04-22  Juanma Barranquero  <lekktu@gmail.com>
1325         * minibuffer.el (minibuffer-complete-and-exit): Fix last change.
1327 2008-04-22  Andreas Schwab  <schwab@suse.de>
1329         * Makefile.in (emacs-deps): Define.
1330         Use it instead of $(lisp)/subdirs.el.
1332 2008-04-22  Dan Nicolaescu  <dann@ics.uci.edu>
1334         * vc.el (vc-next-action): Do not consider directories when
1335         checking for state compatibility.
1336         (vc-transfer-file): Use when not if.
1337         (vc-dir-parent-marked-p, vc-dir-children-marked-p): New functions.
1338         (vc-dir-mark-file): Use them.
1339         (vc-deduce-fileset): Also return the backend.
1340         (vc-diff-internal): Take as argument the value returned by
1341         vc-deduce-fileset instead of just the fileset.
1342         (vc-next-action, vc-finish-logentry, vc-version-diff, vc-diff)
1343         (vc-dir-mark-file, vc-print-log, vc-revert, vc-rollback)
1344         (vc-update): Update the vc-deduce-fileset and vc-diff-internal calls.
1346 2008-04-22  Tassilo Horn  <tassilo@member.fsf.org>
1348         * doc-view.el (doc-view-scroll-up-or-next-page): Don't use
1349         set-window-vscroll but image-scroll-down.  Fixes a bug where a
1350         command following SPC scrolled up again.
1352 2008-04-22  Nick Roberts  <nickrob@snap.net.nz>
1354         * progmodes/gdb-ui.el (gdb-locals-header): New variable.
1355         (gdb-locals-mode, gdb-registers-mode): Use it for header line.
1356         (gud-watch): Add "$" prefix when in registers buffer.
1358 2008-04-22  Glenn Morris  <rgm@gnu.org>
1360         * progmodes/gdb-ui.el (gdbmi-invalidate-frames): Declare as function.
1362         * whitespace.el (whitespace-display-table)
1363         (whitespace-display-table-was-local): Move definitions before use.
1365         * emacs-lisp/copyright.el (copyright-at-end-flag): New option.
1366         (copyright-limit): Respect copyright-at-end-flag.
1367         (copyright-re-search, copyright-start-point)
1368         (copyright-offset-too-large-p): New functions.
1369         (copyright-update-year): Use copyright-re-search.
1370         (copyright-update, copyright-fix-years): Use copyright-start-point,
1371         and copyright-re-search.
1372         (copyright): Use copyright-offset-too-large-p.
1373         * add-log.el (change-log-mode): Set copyright-at-end-flag.
1375         * add-log.el (top-level): Require 'cl when compiling.
1377 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1379         * complete.el (PC-complete-as-file-name, PC-read-file-name-internal):
1380         Treat minibuffer-completion-predicate as a predicate.
1382         * minibuffer.el (completion--file-name-table): Accept both the old
1383         `dir' arg or the new `pred' arg.
1385         * ffap.el (ffap-read-file-or-url): Do not abuse completing-read's
1386         `predicate' argument to pass non-predicate data.
1387         (ffap-read-url-internal, ffap-read-file-or-url-internal):
1388         Use second arg as proper predicate.
1390         * vc-bzr.el (vc-bzr-complete-with-prefix): Remove.
1391         (vc-bzr-revision-completion-table): Use completion-table-with-context
1392         instead.
1394         * simple.el (choose-completion-string): Use minibuffer-completion-table.
1396 2008-04-21  Chong Yidong  <cyd@stupidchicken.com>
1398         * term.el (term-emulate-terminal): Perform redisplay after the
1399         process filter has finished running.
1401 2008-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1403         * vc.el (vc-dir): Use pop-to-buffer, so it can be customized.
1405         * minibuffer.el (completion-try-completion): Change magic symbol
1406         property name.  Rename from minibuffer-try-completion.
1407         (completion-all-completions): Rename from minibuffer-all-completions.
1408         Remove hide-spaces argument.
1409         (completion--do-completion): Rename from minibuffer--do-completion.
1410         (minibuffer-complete-and-exit): Call just try-completion rather than
1411         completion-try-completion to fix up the case.
1412         (completion--try-word-completion): Try to add space or hyphen before
1413         making `string' a prefix of `completion'.
1414         (completion--insert-strings): Rename from minibuffer--insert-strings.
1416 2008-04-22  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
1418         * net/tls.el (tls-program): Add -ign_eof argument to call the
1419         openssl commands.
1420         (tls-checktrust): Ditto.
1422 2008-04-21  Dan Nicolaescu  <dann@ics.uci.edu>
1424         * vc-cvs.el (vc-cvs-status-extra-headers): New function.
1426         * vc-hooks.el (vc-insert-file, vc-state, vc-working-revision)
1427         (vc-check-master-templates, vc-file-not-found-hook)
1428         (vc-kill-buffer-hook):
1429         * vc.el (vc-process-sentinel, vc-exec-after, vc-do-command)
1430         (vc-find-position-by-context, vc-buffer-context)
1431         (vc-restore-buffer-context, vc-responsible-backend)
1432         (vc-expand-dirs, vc-ensure-vc-buffer, vc-buffer-sync)
1433         (vc-next-action, vc-register, vc-register-with, vc-steal-lock)
1434         (vc-finish-logentry, vc-coding-system-for-diff, vc-switches)
1435         (vc-version-diff, vc-diff, vc-insert-headers)
1436         (vc-dired-buffers-for-dir, vc-dired-resynch-file)
1437         (vc-snapshot-precondition, vc-create-snapshot, vc-print-log)
1438         (vc-revert, vc-rollback, vc-version-backup-file)
1439         (vc-rename-master, vc-delete-file, vc-rename-file)
1440         (vc-branch-part, vc-default-retrieve-snapshot)
1441         (vc-annotate-display-autoscale, vc-annotate-display-select)
1442         (vc-annotate, vc-annotate-warp-revision, vc-annotate-difference)
1443         (vc-annotate-lines, vc-file-tree-walk-internal): Use when instead of if.
1444         (vc-dir-update): Handle directories.
1445         (vc-default-status-printer): Simplify.
1447         * progmodes/asm-mode.el (asm-mode-map):
1448         * progmodes/hideif.el (hide-ifdef-mode-menu): Add :help.
1450         * progmodes/m4-mode.el (m4-mode-map): Add menu.
1452 2008-04-21  Kenichi Handa  <handa@m17n.org>
1454         * select.el (xselect-convert-to-string): Send a C_STRING only if
1455         the polymorphic target TEXT is requested.
1457 2008-04-21  Juanma Barranquero  <lekktu@gmail.com>
1459         * minibuffer.el (completion-setup-hook, display-completion-list)
1460         (completion--file-name-table): Fix typos in docstrings.
1461         (completion-table-dynamic): Fix typo, and reflow docstring.
1463 2008-04-20  Andreas Schwab  <schwab@suse.de>
1465         * server.el (server-switch-buffer): Also consider clients in the
1466         selected frame.
1468 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
1470         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
1471         Select window clicked on first.
1472         (gdb): Display thread number in mode-line.
1473         (gdb-make-header-line-mouse-map): Move to avoid byte compiler warnings.
1474         (gdb-breakpoints-header): New variable.
1475         (gdb-breakpoints-mode, gdb-threads-mode): Use it for header line.
1477 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1479         * vc-sccs.el (vc-sccs-do-command): New fun.  Use the "sccs" command.
1480         (vc-sccs-register, vc-sccs-checkin, vc-sccs-find-revision)
1481         (vc-sccs-checkout, vc-sccs-rollback, vc-sccs-revert)
1482         (vc-sccs-steal-lock, vc-sccs-modify-change-comment)
1483         (vc-sccs-print-log): Use it.
1485         * vc-hooks.el (vc-path): Remove SCCS-specific hack.
1487         * emacs-lisp/lisp-mode.el (lisp-mode-auto-fill): Make it an alias.
1488         * progmodes/scheme.el (scheme-mode-variables): Don't use it.
1490         * tooltip.el (tooltip-previous-message): New var.
1491         (tooltip-show-help-non-mode): Rewrite to better follow the behavior of
1492         the C code (avoid overwriting a minibuffer, restore previous echo
1493         message, ...).
1494         (tooltip-delay, tooltip-process-prompt-regexp, tooltip-strip-prompt):
1495         Simplify.
1497 2008-04-19  Nick Roberts  <nickrob@snap.net.nz>
1499         * progmodes/gdb-ui.el (gdb-thread-indicator): New variable.
1500         (gdb-init-1): Initialise it.
1501         (gdb-annotation-rules): New entry for "new-thread".
1502         (gdb-thread-identification): New function to customize
1503         mode-line-buffer-identification.
1504         (gdb-frames-mode, gdb-registers-mode, gdb-locals-mode)
1505         (gdb-assembler-mode): Use it.
1506         (gdb-threads-mode): Force "info threads" onto queue.
1508 2008-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1510         * files.el (locate-file-completion-table): Rename from
1511         locate-file-completion and make it use `pred' in the normal way.
1512         (locate-file-completion): New compatibility wrapper.
1513         (load-library): Use locate-file-completion-table.
1514         * finder.el (finder-commentary):
1515         * subr.el (locate-library):
1516         * emacs-lisp/find-func.el (find-library): Likewise.
1517         * info.el: Use with-current-buffer and inhibit-read-only.
1518         (Info-read-node-name-2): Change to use `predicate' in the normal way.
1519         (Info-read-node-name-1): Adjust uses accordingly.
1521         * minibuffer.el (completion-table-with-context): Add support for `pred'.
1522         (completion-table-with-terminator): Don't use complete-with-action
1523         since we have to distinguish all three cases anyway.
1524         (completion-table-with-predicate): New function.
1525         (dynamic-completion-table): Add obsolete alias.
1527         * emacs-lisp/trace.el (trace-make-advice): Don't change selected-window.
1529 2008-04-18  Sam Steingold  <sds@gnu.org>
1531         * vc.el (vc-dir-menu-map, vc-dir-mode-map, vc-dir-tool-bar-map):
1532         Use quit-window instead of bury-buffer.
1534 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1536         * minibuffer.el (completion-table-with-terminator): Fix last fix.
1538 2008-04-18  Andreas Schwab  <schwab@suse.de>
1540         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
1541         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
1542         Depend on $(lisp)/subdirs.el.
1544 2008-04-18  Juanma Barranquero  <lekktu@gmail.com>
1546         * descr-text.el (describe-char-after):
1547         Use `define-obsolete-function-alias'.
1549         * dired-x.el (dired-omit-files-p): Use `define-obsolete-variable-alias'.
1551         * facemenu.el (facemenu-unlisted-faces): Fix obsolescence description.
1553         * savehist.el (savehist-load): Add WHEN to obsolescence declaration.
1554         Remove redundant obsolescence info in docstring.
1556         * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
1557         (vc-header-alist): Add WHEN to obsolescence declaration.
1558         (vc-state): Fix typo in docstring.
1560         * emacs-lisp/checkdoc.el (checkdoc-minor-keymap):
1561         Use `define-obsolete-variable-alias'.
1563         * emulation/tpu-edt.el (tpu-have-ispell):
1564         * international/codepage.el (codepage-setup):
1565         Fix typo in obsolescence declaration.
1567         * international/mule.el (char-coding-system-table):
1568         Remove redundant obsolescence info in docstring.
1569         (charset-list, generic-char-p, set-char-table-default):
1570         Fix typos in obsolescence decarations.
1572         * international/mule-diag.el (non-iso-charset-alist):
1573         Fix typo in obsolescence declaration.
1574         (decode-codepage-char): Remove redundant obsolescence info in docstring.
1576         * font-core.el (font-lock-defaults-alist):
1577         * font-lock.el (font-lock-reference-face):
1578         * frame.el (screen-height, screen-width, set-screen-width)
1579         (set-screen-height):
1580         * hilit-chg.el (highlight-changes-initial-state):
1581         * isearch.el (isearch-return-char):
1582         * log-edit.el (cvs-commit-buffer-require-final-newline)
1583         (cvs-changelog-full-paragraphs):
1584         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
1585         (mouse-popup-menubar-stuff):
1586         * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
1587         (mouse-wheel-click-button):
1588         * outline.el (outline-visible):
1589         * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name):
1590         * pcvs-info.el (cvs-display-full-path, cvs-fileinfo->full-path):
1591         * emacs-lisp/lisp-mode.el (lisp-comment-indent):
1592         * progmodes/compile.el (compile-internal):
1593         Add WHEN to obsolescence declarations.
1595 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1597         * emacs-lisp/debug.el (debug): Revert to bury-buffer since quit-window
1598         is not better anyway.
1600 2008-04-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1602         * whitespace.el (whitespace-report-region): Handle whitespace-tab-width
1603         properly.
1605 2008-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1607         * progmodes/python.el (python-mode-map): Use abbrev-table-menu.
1608         (python-use-skeletons): Remove, unused.
1609         (python-skeletons): Remove.  Use the abbrev table instead.
1610         (python-mode-abbrev-table): Fix regexp;
1611         add enable-function and case-fixed.
1612         (def-python-skeleton): Simplify.
1613         (python-expand-template): Use the abbrev-table and abbrev-insert.
1614         (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
1615         Remove.
1616         (python-mode): Don't set pre-abbrev-expand-hook.
1618         * skeleton.el: Set coding-tag.
1620         * abbrev.el (abbrev-insert): New function extracted from expand-abbrev.
1621         (expand-abbrev): Use it.
1622         (abbrev-table-menu): New function.
1624         * abbrev.el (define-abbrev-table): Fontify dosctrings as such.
1626         * minibuffer.el (completion-table-with-terminator): Fix paren typo.
1628 2008-04-17  Sam Steingold  <sds@gnu.org>
1630         * pcvs-util.el (cvs-bury-buffer): Use quit-window instead of the
1631         idiosyncratic bury-buffer/delete-window logic.
1633 2008-04-17  Juanma Barranquero  <lekktu@gmail.com>
1635         * emacs-lisp/crm.el (crm-completion-help, crm-complete)
1636         (crm-complete-word, crm-complete-and-exit): Fix typo in previous change.
1638 2008-04-17  Kenichi Handa  <handa@m17n.org>
1640         * international/characters.el: Don't make the width of U+00AD to 0.
1642 2008-04-17  Nick Roberts  <nickrob@snap.net.nz>
1644         * progmodes/gdb-ui.el (gdb-stack-update): New variable.
1645         (gdb, gdb-starting, gdb-frames-mode): Use it.
1646         (gdb-invalidate-frames): Advise to call "info stack" only if
1647         execution has occurred.
1648         (gdb-info-breakpoints-custom): Only update overlay-arrow pointing to
1649         selected frame if no execution has occurred.
1650         (gdb-frames-force-update): New interactive function.
1651         (gdb-frames-mode-map): Bind it to "F".
1653 2008-04-17  Michael Olson  <mwolson@gnu.org>
1655         * textmodes/remember.el (remember-version): Release Remember 2.0.
1657 2008-04-16  Yoni Rabkin  <yoni@rabkins.net>
1659         * textmodes/artist.el:
1660         * progmodes/vhdl-mode.el:
1661         * progmodes/verilog-mode.el:
1662         * progmodes/vera-mode.el:
1663         * progmodes/simula.el:
1664         * progmodes/ps-mode.el:
1665         * progmodes/cmacexp.el:
1666         * obsolete/hilit19.el:
1667         * emulation/viper.el:
1668         * ediff.el: Cleanup the bug-report email addresses and make sure the
1669         maintainer is still willing to handle bug reports.
1671 2008-04-16  Dan Nicolaescu  <dann@ics.uci.edu>
1673         * vc.el (vc-dir-kill-query): Fix thinko.
1675 2008-04-16  Glenn Morris  <rgm@gnu.org>
1677         * calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
1678         by diary-sexp-entry.
1680 2008-04-16  Markus Triska  <markus.triska@gmx.at>
1682         * proced.el (proced-command-alist): Add support for darwin.
1684 2008-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1686         * proced.el (proced-mode): Redefine as just the major-mode.
1687         (proced): Separate it from proced-mode.
1689         * vc.el: Rename vc-status to vc-dir and the vc-status var to vc-ewoc.
1691 2008-04-15  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1693         * whitespace.el: Honor the `indent-tabs-mode' setting from user.
1694         Suggested by Stephen Deasey <sdeasey@gmail.com>.  Honor also the
1695         `tab-width' setting from user.  New version 10.0.  Doc and docstring
1696         fix.
1697         (whitespace-style, whitespace-chars): Remove options.
1698         (whitespace-style-mark): New option, replace whitespace-style deleted
1699         option.  Fix docstring.
1700         (whitespace-style-color): New option, replace whitespace-chars deleted
1701         option.  Fix docstring.
1702         (whitespace-space, whitespace-hspace, whitespace-tab)
1703         (whitespace-newline, whitespace-trailing, whitespace-line)
1704         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
1705         (whitespace-space-after-tab, whitespace-hspace-regexp)
1706         (whitespace-space-regexp, whitespace-tab-regexp)
1707         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
1708         (whitespace-empty-at-eob-regexp, whitespace-line-column)
1709         (whitespace-toggle-option-alist): Fix docstring.
1710         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
1711         (whitespace-space-after-tab-regexp, whitespace-display-mappings): Fix
1712         docstring and initialization.
1713         (global-whitespace-mode): Autoloaded global minor mode.
1714         (whitespace-chars-value-list, whitespace-style-value-list)
1715         (whitespace-active-chars, whitespace-active-style)
1716         (whitespace-toggle-chars, whitespace-toggle-style): Remove vars.
1717         (whitespace-color-value-list): New var, replace
1718         whitespace-chars-value-list removed var.
1719         (whitespace-mark-value-list): New var, replace
1720         whitespace-style-value-list removed var.
1721         (whitespace-active-color): New var, replace whitespace-active-chars
1722         removed var.
1723         (whitespace-active-mark): New var, replace whitespace-active-style
1724         removed var.
1725         (whitespace-toggle-color): New var, replace whitespace-toggle-chars
1726         removed var.
1727         (whitespace-toggle-mark): New var, replace whitespace-toggle-style
1728         removed var.
1729         (whitespace-toggle-option-alist, whitespace-report-list)
1730         (whitespace-report-text, whitespace-help-text): Fix initialization.
1731         (whitespace-indent-tabs-mode, whitespace-tab-width): New vars.
1732         (whitespace-toggle-options, global-whitespace-toggle-options)
1733         (whitespace-cleanup-region, whitespace-report-region)
1734         (whitespace-interactive-char): Fix docstring and code.
1735         (whitespace-cleanup, whitespace-report): Fix docstring.
1736         (whitespace-replace-spaces-by-tabs): Remove fun.
1737         (whitespace-replace-action): New fun, replace
1738         whitespace-replace-spaces-by-tabs removed fun.
1739         (whitespace-regexp, whitespace-indentation-regexp)
1740         (whitespace-space-after-tab-regexp, whitespace-insert-value)
1741         (whitespace-kill-buffer): New funs.
1742         (whitespace-insert-option-mark, whitespace-help-on)
1743         (whitespace-help-off, whitespace-turn-on, whitespace-turn-off)
1744         (whitespace-color-on, whitespace-color-off)
1745         (whitespace-display-char-on): Fix code.
1747 2008-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1749         * mouse-drag.el (mouse-throw-magnifier-with-scroll-bar)
1750         (mouse-throw-magnifier-with-mouse-movement): Remove.
1751         (mouse-throw-magnifier-base): New const.
1752         (mouse-drag-scroll-delta): New fun.
1753         (mouse-drag-throw): Use it.
1755 2008-04-15  Juanma Barranquero  <lekktu@gmail.com>
1757         * international/uni-bidi.el, international/uni-category.el:
1758         * international/uni-combining.el, international/uni-comment.el:
1759         * international/uni-decimal.el, international/uni-decomposition.el:
1760         * international/uni-digit.el, international/uni-lowercase.el:
1761         * international/uni-mirrored.el, international/uni-name.el:
1762         * international/uni-numeric.el, international/uni-old-name.el:
1763         * international/uni-titlecase.el, international/uni-uppercase.el:
1764         * international/charprop.el: Regenerate.
1766 2008-04-15  Dan Nicolaescu  <dann@ics.uci.edu>
1768         * vc.el (vc-status-fileinfo): Add new member directoryp.
1769         (vc-default-status-printer): Print directories.
1770         (vc-status-update): Sort files before subdirectories.
1772         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
1773         Add alternative implementation based on "cvs update".
1775 2008-04-15  Tassilo Horn  <tassilo@member.fsf.org>
1777         * doc-view.el: Changed requirements section to tell that only one
1778         of dvipdf or dvipdfm is needed.
1779         (doc-view-already-converted-p): Fix bug that forced reconversion
1780         if doc was already converted.
1782 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1784         * minibuffer.el (minibuffer-message):
1785         Make sure we can put-text-property.
1787         * emacs-lisp/crm.el: Complete rewrite.
1789         * tmm.el (tmm-completion-delete-prompt): Don't hardcode point-min==1.
1790         (tmm-add-prompt): Make sure completion-setup-hook is preserved even in
1791         case of an error in display-completion-list.
1793         * filecache.el (file-cache-completions-keymap): Move init from
1794         file-cache-completion-setup-function into declaration.
1795         (file-cache-minibuffer-complete): Simplify.
1796         (file-cache-completion-setup-function): Use standard-output,
1797         preserve current-buffer.
1799         * vc.el (vc-status-update): Fix typo.
1800         (vc-status-update): Set needs-update.
1801         (vc-status-refresh): η-reduce.
1803 2008-04-14  Tassilo Horn  <tassilo@member.fsf.org>
1805         * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e
1806         to image-eol.
1808 2008-04-14  Alexandre Julliard  <julliard@winehq.org>
1810         * vc.el (vc-status-update): Undo the previous revert.
1812 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1814         * minibuffer.el (completion-table-with-terminator): Those completions
1815         are never valid w.r.t test-completion.
1816         (completion--file-name-table):
1817         Check completion-all-completions-with-base-size.
1819 2008-04-14  Tassilo Horn  <tassilo@member.fsf.org>
1821         * doc-view.el (doc-view-dvipdf-program): New variable.
1822         (doc-view-dvipdfm-program): Mention doc-view-dvipdf-program.
1823         (doc-view-mode-p): Check for doc-view-dvipdf-program as
1824         alternative for doc-view-dvipdfm-program.
1825         (doc-view-dvi->pdf): Prefer dvipdf over dvipdfm.
1827         * doc-view.el (doc-view-start-process): Don't set
1828         default-directory to "~/" if the current value is valid.
1829         This broke PS files that run other files in the same directory.
1831 2008-04-14  Dan Nicolaescu  <dann@ics.uci.edu>
1833         * vc.el (vc-status-kill-query): New function.
1834         (vc-status-mode): Add it to kill-buffer-query-functions.
1835         (vc-status-show-fileentry): New function.
1836         (vc-status-menu-map): Bind it.  Bind vc-next-action.
1838 2008-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1840         * minibuffer.el (minibuffer-message): Put cursor at the right place.
1842 2008-04-13  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1844         * proced.el (proced-send-signal): Fix error recognition.
1846 2008-04-13  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1848         * proced.el (proced-command-alist): Remove sort column.
1849         (proced-command, proced-procname-column):
1850         Use make-variable-buffer-local.
1851         (proced-signal-function): Rename from proced-kill-program.
1852         Allow for elisp symbols and string values representing system calls.
1853         (proced-marker-regexp, proced-success-message): New functions.
1854         (proced): Use defalias.  Add autoload cookie.
1855         (proced-unmark-backward, proced-toggle-marks)
1856         (proced-hide-processes): New commands.
1857         (proced-do-mark): Simplify code.
1858         (proced-insert-mark): Use optional arg BACKWARD instead of line number.
1859         (proced-update): Remove sorting.
1860         (proced-send-signal): Display number of processes to operate on.
1861         Allow for system calls or elisp functions to send signals.
1862         Check if signal was sent successfully.
1864 2008-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1866         * minibuffer.el (completion-all-completion-with-base-size): New var.
1867         (completion--some): New function.
1868         (completion-table-with-context, completion--file-name-table):
1869         Return the base-size if requested.
1870         (completion-table-in-turn): Generalize to multiple arguments.
1871         (complete-in-turn): Compatibility alias.
1872         (completion-styles-alist): New var.
1873         (completion-styles): New customization.
1874         (minibuffer-try-completion, minibuffer-all-completions):
1875         New functions.
1876         (minibuffer--do-completion, minibuffer-complete-and-exit)
1877         (minibuffer-try-word-completion): Use them.
1878         (display-completion-list, minibuffer-completion-help): Use them.
1879         Handle all-completions's new base-size info to set completion-base-size.
1880         * info.el (Info-read-node-name-1): Use completion-table-with-context,
1881         completion-table-with-terminator and complete-with-action.
1882         Remove the now obsolete completion-base-size-function property.
1883         * simple.el (completion-list-mode-map): Move init into declaration.
1884         (completion-list-mode): Use define-derived-mode.
1885         (completion-setup-function): Use any completion-base-size that may
1886         have been set before.  Remove handling of completion-base-size-function.
1887         * loadup.el: Move abbrev.el up earlier.
1889 2008-04-13  Alexandre Julliard  <julliard@winehq.org>
1891         * vc-git.el (vc-git-after-dir-status-stage)
1892         (vc-git-dir-status-goto-stage): New functions.
1893         (vc-git-after-dir-status-stage1)
1894         (vc-git-after-dir-status-stage1-empty-db)
1895         (vc-git-after-dir-status-stage2): Remove, functionality moved
1896         into the new generic stage functions.
1897         (vc-git-dir-status-files): New function.
1899         * vc.el (vc-status-update): Revert an incorrect rewrite.
1900         Add some comments.
1901         (vc-status-refresh-files): New function.
1902         (vc-status-refresh): Use `vc-status-refresh-files' to refresh the
1903         state of up-to-date files.
1904         (vc-default-dir-status-files): New function.
1906 2008-04-13  Juanma Barranquero  <lekktu@gmail.com>
1908         * minibuffer.el (completion--embedded-envvar-table)
1909         (read-file-name-internal): Fix typos in 2008-04-11 change.
1911         * faces.el (read-face-name): Use `completion-table-in-turn',
1912         not `complete-in-turn'.
1914 2008-04-13  Andreas Schwab  <schwab@suse.de>
1916         * progmodes/etags.el: Require 'cl when compiling.
1918 2008-04-12  Nick Roberts  <nickrob@snap.net.nz>
1920         * progmodes/gud.el (gud-menu-map): Expand tooltip.
1922         * progmodes/gdb-ui.el (gdb-find-source-frame): Improve doc string.
1923         (menu): Add/expand menu tooltips.
1925 2008-04-12  Dan Nicolaescu  <dann@ics.uci.edu>
1927         * progmodes/sh-script.el (sh-show-indent): Fix typo.
1928         (sh-mode-map): Add a toggle for inserting braces and quotes in pairs.
1930         * vc-cvs.el (vc-cvs-registered): Allow removed files to be
1931         considered registered.
1933 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
1935         * emacs-lisp/copyright.el (copyright-update-directory): New command.
1937         * ediff-wind.el (ediff-split-window-function)
1938         (ediff-merge-split-window-function): Improve custom type.
1940 2008-04-12  Eli Zaretskii  <eliz@gnu.org>
1942         * loadup.el ("minibuffer"): Move after "faces".
1944 2008-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1946         * progmodes/hideif.el (hif-factor): Handle unary minus.
1948 2008-04-12  Glenn Morris  <rgm@gnu.org>
1950         * calendar/cal-china.el (chinese-calendar-time-zone):
1951         Mark obsolete name as risky too.
1953         * calendar/calendar.el (calendar-faces): New custom group.
1954         (calendar-today, diary, holiday): Doc fix.
1955         Move to calendar-faces group.
1956         * calendar/diary-lib.el (diary-face, diary-anniversary, diary-time)
1957         (diary-button): Doc fix.  Move to calendar-faces group.
1959         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
1960         * desktop.el, files.el, hilit-chg.el, ibuffer.el, iswitchb.el:
1961         * pcvs-info.el, recentf.el, speedbar.el, calendar/cal-china.el:
1962         * calendar/cal-hebrew.el, calendar/cal-x.el, calendar/calendar.el
1963         * calendar/diary-lib.el, net/net-utils.el, progmodes/gud.el:
1964         Move non-autoloaded define-obsolete-variable-alias calls for defcustoms
1965         not in dumped files before the associated defcustom.
1967 2008-04-11  Johan Bockgård  <bojohan@gnu.org>
1969         * minibuffer.el (lazy-completion-table): Fix debug spec.
1971 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1973         * minibuffer.el (complete-with-action, lazy-completion-table):
1974         Move from subr.el.
1975         (apply-partially, completion-table-dynamic)
1976         (completion-table-with-context, completion-table-with-terminator)
1977         (completion-table-in-turn): New funs.
1978         (completion--make-envvar-table, completion--embedded-envvar-table):
1979         New funs.
1980         (read-file-name-internal): Use them.
1981         (completion-setup-hook): Move from simple.el.
1982         * subr.el (complete-with-action, lazy-completion-table):
1983         * simple.el (completion-setup-hook): Move to minibuffer.el.
1985 2008-04-11  Glenn Morris  <rgm@gnu.org>
1987         * Makefile.in (AUTOGENEL): Add calc/calc-loaddefs.el.
1989 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1991         * progmodes/python.el (python-mode): Don't mess with hippie-expand.
1993         * Makefile.in (bootstrap-prepare): Make tpu-edt.el writable as well.
1995         * textmodes/fill.el (fill-forward-paragraph-function): New var.
1996         (fill-forward-paragraph): New fun.
1997         (fill-paragraph, fill-region): Use it.
1999         * vc.el: Change `dir-status' to not take (and pass) status-buffer.
2000         (vc-status-create-fileinfo): Make `extra' optional.
2001         (vc-status-busy): New fun.
2002         (vc-status-menu-map): Use it.
2003         (vc-status-crt-marked): Remove.
2004         (vc-status-update): Rename from vc-status-add-entries.
2005         Add argument so as to prevent addition of entries.  Rewrite.
2006         (vc-update-vc-status-buffer): Remove.
2007         (vc-status-refresh): Don't remove old entries, set them to
2008         up-to-date instead.  Also do it after the update is complete.
2009         (vc-status-marked-files): η-reduce.
2011         * dired.el (dired-read-dir-and-switches): Use read-directory-name even
2012         for non-dialogs.
2014         * Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
2016         * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
2018 2008-04-11  Jan Djärv  <jan.h.d@swipnet.se>
2020         * tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines
2021         to t and don't truncate msg.
2023 2008-04-11  Glenn Morris  <rgm@gnu.org>
2025         * calendar/calendar.el (diary, holidays):
2026         Move custom groups to other files.
2027         (holiday-general-holidays, holiday-oriental-holidays)
2028         (holiday-local-holidays, holiday-other-holidays, hebrew-holidays-1)
2029         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
2030         (holiday-hebrew-holidays, holiday-christian-holidays)
2031         (holiday-islamic-holidays, holiday-bahai-holidays)
2032         (holiday-solar-holidays, calendar-holidays): Move to holidays.el.
2033         * calendar/diary-lib.el: Move custom group here from calendar.el.
2034         * calendar/holidays-lib.el: Move custom group and variables here
2035         from calendar.el.
2037         * calendar/cal-china.el (calendar-chinese-time-zone): Mark as risky.
2039         * calendar/cal-dst.el (calendar-dst-check-each-year-flag):
2040         Fix custom group.
2041         (calendar-current-time-zone-cache): Autoload riskiness.
2043         * calendar/cal-tex.el (cal-tex-preamble-extra): Fix custom type.
2045 2008-04-11  Chong Yidong  <cyd@stupidchicken.com>
2047         * woman.el (woman2-TH): Use string-equal instead of string-match.
2049 2008-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2051         * smerge-mode.el (smerge-apply-resolution-patch): Fix typo.
2052         (smerge-resolve): Merge the "2-way refinement" case with one half of
2053         the "mere whitespace" resolution.
2055 2008-04-10  Dan Nicolaescu  <dann@ics.uci.edu>
2057         * vc-bzr.el (vc-bzr-after-dir-status): Detect the conflict state.
2059 2008-04-10  Juanma Barranquero  <lekktu@gmail.com>
2061         * subr.el (assoc-ignore-case, assoc-ignore-representation):
2062         Add WHEN to obsolescence declaration.
2064         * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el.
2066 2008-04-10  Dan Nicolaescu  <dann@ics.uci.edu>
2068         * vc-hooks.el (vc-state): Add new state `conflict'.
2069         (vc-after-save): Use when not if.
2070         (vc-default-mode-line-string): Deal with the conflict state.
2071         (vc-prefix-map):
2072         (vc-menu-map): Bind vc-status instead of vc-directory.
2074         * vc.el (vc-editable-p):
2075         (vc-default-status-printer):
2076         (vc-next-action): Deal with the conflict state.
2077         (vc-mark-resolved): New function.
2078         (vc-status-mode): Fix mode name.
2079         (vc-default-comment-history): Use when not if.
2080         (Todo): Add new entries, remove old ones.
2082         * vc-cvs.el (vc-cvs-merge, vc-cvs-merge-news): Set conflict state.
2083         (vc-cvs-parse-status):
2084         (vc-cvs-after-dir-status):
2085         * vc-svn.el (vc-svn-after-dir-status, vc-svn-parse-status):
2086         Detect the conflict state.
2088         * vc-hg.el (vc-hg-dir-status): Remove unneeded call.
2090 2008-04-10  Glenn Morris  <rgm@gnu.org>
2092         * menu-bar.el (menu-bar-options-menu) <truncate-lines>:
2093         Respect truncate-partial-width-windows in non-full windows,
2094         with regards to :toggle and :enable state.
2096         * simple.el (toggle-truncate-lines): Doc fix.
2098         * Makefile.in (MH_E_DIR): New variable.
2099         (MH_E_SRC): Restore variable removed 2008-03-13.
2100         (mh-loaddefs.el): Depend on $MH_E_SRC.
2101         (CAL_DIR, CAL_SRC): New variables.
2102         (cal-loaddefs.el, diary-loaddefs.el, hol-loaddefs.el):
2103         Depend on CAL_SRC.
2105         * calendar/calendar.el (calendar, diary): Add :prefix.
2106         (holidays): Change :prefix.
2107         (calendar-today, holiday, calendar-holiday-marker)
2108         (european-calendar-style): Change custom groups.
2110         * calendar/calendar.el (diary-hook, diary-display-hook):
2111         Move to diary-lib.el.
2112         * calendar/diary-lib.el (diary-hook, diary-display-hook):
2113         Move here from calendar.el.
2114         * calendar/appt.el: Require diary-lib rather than calendar.
2115         * calendar/cal-x.el (diary-display-hook): Declare for compiler.
2117         * calendar/appt.el (appt): Add :prefix.
2119         * calendar/diary-lib.el (diary-hook): Doc fix.
2120         (diary-mark-sexp-entries): Fix replacement of calendar-for-loop.
2122 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2124         * minibuffer.el (minibuffer--double-dollars, read-file-name-internal):
2125         New functions.
2127         * minibuffer.el (minibuffer--do-completion): Don't forget to propagate
2128         the arg to recursive calls.
2130 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
2132         * minibuffer.el (completion-auto-help): Fix typo.
2134 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2136         * vc-cvs.el (vc-cvs-diff-tree): Remove unused function.
2138 2008-04-09  Michael Albinus  <michael.albinus@gmx.de>
2140         * net/tramp.el (tramp-find-file-name-coding-system-alist): New defun.
2141         (tramp-handle-insert-file-contents, tramp-handle-write-region): Use it.
2143 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2145         * vc-hooks.el (vc-default-mode-line-string): Use ? for missing.
2147         * minibuffer.el (minibuffer): Move group from cus-edit.el.
2148         (completion-auto-help): Move from C code.
2149         (minibuffer--maybe-completion-help): Remove.
2150         (minibuffer--bitset): New function.
2151         (minibuffer--do-completion): Rename from minibuffer-do-completion.
2152         Renumber a bit.  Really complete on string *before* point.
2153         Add argument used for word-completion.
2154         Join trailing / in completion with following text, as done in
2155         minibuffer-complete-word.
2156         Handle new value `lazy' for completion-auto-help.
2157         (minibuffer-try-word-completion): New function extracted from
2158         minibuffer-complete-word.
2159         (minibuffer-complete-word): Use minibuffer--do-completion.
2160         (minibuffer--insert-strings): Rename from
2161         minibuffer-complete-insert-strings.
2162         (exit-minibuffer): Fix typo.
2163         * cus-edit.el (minibuffer): Move group to minibuffer.el.
2164         * cus-start.el: Remove completion-auto-help.
2166 2008-04-09  Alexandre Julliard  <julliard@winehq.org>
2168         * vc.el (vc-status-add-entries): New function.
2169         (vc-status-add-entry): Remove.
2170         (vc-update-vc-status-buffer, vc-status-mark-buffer-changed):
2171         Use vc-status-add-entries.
2173         * emacs-lisp/ewoc.el (ewoc-collect): Return results in the correct
2174         order.
2176 2008-04-09  Jason Rumney  <jasonr@gnu.org>
2178         * makefile.w32-in (LOADDEFS): Add mh-loaddefs.el.
2179         ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule.
2180         (pre-mh-loaddefs.el-CMD, pre-mh-loaddefs.el-SH): Remove.
2181         (AUTOGENEL): New variable.
2182         (distclean, maintainer-clean): New targets.
2184 2008-04-09  Chong Yidong  <cyd@stupidchicken.com>
2186         * emacs-lisp/regexp-opt.el (regexp-opt):
2187         Reduce max-lisp-eval-depth and max-specpdl-size to 10000.
2189 2008-04-09  Lennart Borgman  <lennart.borgman@gmail.com>
2191         * nxml/nxml-mode.el (nxml-cleanup): New function.
2192         (nxml-mode): Add it to change-major-mode-hook.
2194 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
2196         * term/x-win.el (x-gtk-stock-map): Map info to gtk-info.
2198 2008-04-09  Juanma Barranquero  <lekktu@gmail.com>
2200         * calc/.cvsignore: New file.
2202 2008-04-09  Jan Djärv  <jan.h.d@swipnet.se>
2204         * vc.el (vc-status-tool-bar-map): Add vc-print-log to tool bar.
2206         * tooltip.el (tooltip-mode): Set tooltip-show-help-non-mode as
2207         show-help-function when turning tooltip off.
2208         (tooltip-show): Call tooltip-show-help-non-mode if use-echo-area.
2209         (tooltip-trunc-str, tooltip-show-help-non-mode): New.
2211 2008-04-09  Alan Mackenzie  <acm@muc.de>
2213         * font-lock.el (font-lock-extend-after-change-region-function):
2214         Make it buffer local.
2216 2008-04-09  Glenn Morris  <rgm@gnu.org>
2218         * calendar/calendar.el (diary-file, european-calendar-style):
2219         Remove autoload cookies.
2221 2008-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
2223         * outline.el (outline-mode-menu-bar-map):
2224         * log-view.el (log-view-mode-menu):
2225         * log-edit.el (log-edit-menu): Add :help.
2227 2008-04-09  Chong Yidong  <cyd@stupidchicken.com>
2229         * emacs-lisp/regexp-opt.el (regexp-opt-group):
2230         Use substring-no-properties for correct handling of unibyte strings.
2232 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2234         * add-log.el (change-log-next-buffer): Handle the case where version<
2235         signals an error.
2237         * mouse.el (mouse-menu-major-mode-map): New fun extracted from
2238         mouse-major-mode-menu.
2239         (mouse-menu-bar-map): New fun extracted from mouse-popup-menubar.
2240         (mouse-major-mode-menu, mouse-popup-menubar)
2241         (mouse-popup-menubar-stuff): Use them.
2242         (C-down-mouse-3): Bind to a dynamic map rather than to
2243         mouse-popup-menubar-stuff.
2245         * bindings.el (mode-line-major-mode-keymap): Bind down-mouse-1
2246         to mouse-menu-major-mode-map rather than to mouse-major-mode-menu.
2248 2008-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
2250         * vc-svn.el (vc-svn-modify-change-comment): Add support for the
2251         file:// access method.
2253 2008-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2255         * minibuffer.el: New file.
2256         * loadup.el: Load it.
2258 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2260         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
2261         rather than subdirs.el.  It introduces an ugly circular dependency, tho.
2263         * calc/calc.el: Load "calc-loaddefs" rather than set up manual autoloads.
2264         (calc-mode-map, calc-digit-map, calc-dispatch-map):
2265         Move initialization into declaration.
2266         * calc/calc-yank.el:
2267         * calc/calc-misc.el:
2268         * calc/calc-embed.el:
2269         * calc/calc-aent.el: Add autoload cookies.  Set generated-autoload-file.
2271 2008-04-08  Michael Albinus  <michael.albinus@gmx.de>
2273         * ps-samp.el (ps-add-printer, ps-remove-printer)
2274         (ps-make-dynamic-printer-menu): New functions.
2276         * net/zeroconf.el: New file.
2278 2008-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2280         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): Typo.
2282 2008-04-08  Dan Nicolaescu  <dann@ics.uci.edu>
2284         * vc-rcs.el (vc-rcs-modify-change-comment):
2285         * vc-cvs.el (vc-cvs-modify-change-comment): Fix argument order.
2287         * log-view.el (log-view-mode-menu): Bind log-view-modify-change-comment.
2289 2008-04-08  Juanma Barranquero  <lekktu@gmail.com>
2291         * international/mule-cmds.el (set-locale-environment): Don't warn if
2292         coding system doesn't agree with system locale (this reverts changes
2293         by Dave Love, dated 2002-10-27 and 2002-10-09).
2295         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2296         * emacs-lisp/cl-macs.el (get-setf-method): Use `string-match-p'.
2298         * emacs-lisp/copyright.el (copyright-update-year): Use `looking-at-p'.
2300 2008-04-08  Glenn Morris  <rgm@gnu.org>
2302         * calendar/calendar.el (calendar-date-style): Remove autoload cookie.
2303         * textmodes/remember.el (remember-diary-convert-entry):
2304         Require calendar.
2306         * textmodes/remember.el (remember-diary-extract-entries): Don't pass
2307         diary-file, since it is the default for make-diary-entry anyway.
2309         * calendar/cal-menu.el (cal-menu-event-to-date):
2310         Rename calendar-event-to-date.  Update callers.
2311         (calendar-mouse-tex-day): Rename cal-tex-mouse-day.
2312         (calendar-mouse-tex-week): Rename cal-tex-mouse-week.
2313         (calendar-mouse-tex-week2): Rename cal-tex-mouse-week2.
2314         (calendar-mouse-tex-week-iso): Rename cal-tex-mouse-week-iso.
2315         (calendar-mouse-tex-week-monday): Rename cal-tex-mouse-week-monday.
2316         (calendar-mouse-tex-filofax-daily): Rename cal-tex-mouse-filofax-daily.
2317         (calendar-mouse-tex-filofax-2week): Rename cal-tex-mouse-filofax-2week.
2318         (calendar-mouse-tex-filofax-week): Rename cal-tex-mouse-filofax-week.
2319         (calendar-mouse-tex-month): Rename cal-tex-mouse-month.
2320         (calendar-mouse-tex-month-landscape):
2321         Rename cal-tex-mouse-month-landscape.
2322         (calendar-mouse-tex-year): Rename cal-tex-mouse-year.
2323         (calendar-mouse-tex-filofax-year): Rename cal-tex-mouse-filofax-year.
2324         (calendar-mouse-tex-year-landscape):
2325         Rename cal-tex-mouse-year-landscape.
2326         (cal-menu-context-mouse-menu): Update for above name changes.
2328         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
2329         * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2330         * calendar/cal-iso.el, calendar/cal-julian.el, calendar/cal-move.el:
2331         * calendar/cal-persia.el, calendar/cal-tex.el, calendar/calendar.el:
2332         * calendar/holidays.el: Replace int-to-string with number-to-string.
2334 2008-04-08  Chong Yidong  <cyd@stupidchicken.com>
2336         * mwheel.el (mwheel-scroll): Deactivate any temporarily active
2337         region if point moves.
2339 2008-04-08  Kenichi Handa  <handa@m17n.org>
2341         * faces.el (font-slant-table): Change numeric values for `r',
2342         `roman', and `normal'.
2344 2008-04-07  Vincent Belaïche  <vincent.b.1@hotmail.fr>
2346         * calc/calc-vec.el (calcFunc-kron, calc-kron): New functions.
2348 2008-04-07  Jay Belanger  <jay.p.belanger@gmail.com>
2350         * calc/calc-ext.el (calc-init-extensions): Add `calc-kron' and
2351         `calcFunc-kron' to autoloads.  Add keybinding for `calc-kron'.
2353 2008-04-07  Michael Albinus  <michael.albinus@gmx.de>
2355         * net/tramp.el (tramp-methods): Fix again tramp-copy-args of
2356         "pscp" and "psftp".  Reported by Gilles Pion <gpion@lfdj.com>.
2358 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2360         * dired-aux.el (dired-read-shell-command): Use read-shell-command.
2362 2008-04-07  Sam Steingold  <sds@gnu.org>
2364         * progmodes/inf-lisp.el (lisp-compile-string, lisp-eval-string):
2365         Add helper functions.
2366         (lisp-do-defun): Extract the common part of lisp-eval-defun and
2367         lisp-compile-defun; DEFVAR forms reset the variables to the init
2368         values, just like in emacs-lisp mode eval-defun.
2369         (lisp-eval-defun, lisp-compile-defun): Use lisp-do-defun.
2370         (lisp-compile-region): Use lisp-compile-string.
2372 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2374         * subr.el (combine-and-quote-strings): Also quote strings that contain
2375         the separator.
2377         * pcvs-util.el (cvs-map): Avoid recursion :-(
2379 2008-04-07  Glenn Morris  <rgm@gnu.org>
2381         * calendar/calendar.el (calendar-mode-map): Replace use of kbd.
2383         * calendar.el (diary-view-entries-initially-flag): Rename
2384         view-diary-entries-initially.  Keep old name as alias, update users.
2385         (calendar-mark-diary-entries-flag): Rename
2386         mark-diary-entries-in-calendar.  Keep old name as alias, update users.
2387         (calendar-view-holidays-initially-flag): Rename
2388         view-calendar-holidays-initially.  Keep old name as alias, update users.
2389         (calendar-mark-holidays-flag): Rename mark-holidays-in-calendar.
2390         Keep old name as alias, update users.
2391         (calendar-initial-window-hook): Rename initial-calendar-window-hook.
2392         Keep old name as alias, update users.
2393         (calendar-today-visible-hook): Rename today-visible-calendar-hook.
2394         Keep old name as alias, update users.
2395         (calendar-today-invisible-hook): Rename today-invisible-calendar-hook.
2396         Keep old name as alias, update users.
2397         (diary-iso-date-forms): Rename iso-date-diary-pattern.  Update users.
2398         (diary-american-date-forms): Rename american-date-diary-pattern.
2399         Keep old name as alias, update users.
2400         (diary-european-date-forms): Rename european-date-diary-pattern.
2401         Keep old name as alias, update users.
2402         (calendar-iso-date-display-form): Rename iso-calendar-display-form.
2403         Keep old name as alias, update users.
2404         (calendar-european-date-display-form): Rename
2405         european-calendar-display-form.  Keep old name as alias, update users.
2406         (calendar-american-date-display-form): Rename
2407         european-calendar-display-form.  Keep old name as alias, update users.
2408         (diary-show-holidays-flag): Rename holidays-in-diary-buffer.
2409         Keep old name as alias, update users.
2410         (holiday-general-holidays): Rename general-holidays.
2411         Keep old name as alias, update users.
2412         (holiday-oriental-holidays): Rename oriental-holidays.
2413         Keep old name as alias, update users.
2414         (holiday-local-holidays): Rename local-holidays.
2415         Keep old name as alias, update users.
2416         (holiday-other-holidays): Rename other-holidays.
2417         Keep old name as alias, update users.
2418         (holiday-hebrew-holidays): Rename hebrew-holidays.
2419         Keep old name as alias, update users.
2420         (holiday-christian-holidays): Rename christian-holidays.
2421         Keep old name as alias, update users.
2422         (holiday-islamic-holidays): Rename islamic-holidays.
2423         Keep old name as alias, update users.
2424         (holiday-bahai-holidays): Rename bahai-holidays.
2425         Keep old name as alias, update users.
2426         (holiday-solar-holidays): Rename solar-holidays.
2427         Keep old name as alias, update users.
2428         (diary-fancy-buffer): Rename fancy-diary-buffer.
2429         Keep old name as alias, update users.
2430         (calendar-other-calendars-buffer): Rename other-calendars-buffer.
2431         Update users.
2432         (calendar-hebrew-yahrzeit-buffer): Rename cal-hebrew-yahrzeit-buffer.
2433         Update users.
2434         (calendar-increment-month): Rename increment-calendar-month.
2435         Keep old name as alias, update callers.
2436         (calendar-increment-month-cons): Rename old calendar-increment-month.
2437         Update callers.
2438         (calendar-extract-month): Rename extract-calendar-month.
2439         Keep old name as alias, update callers
2440         (calendar-extract-day): Rename extract-calendar-day.
2441         Keep old name as alias, update callers.
2442         (calendar-extract-year): Rename extract-calendar-year.
2443         Keep old name as alias, update callers.
2444         (calendar-generate-window): Rename generate-calendar-window.
2445         Update callers.
2446         (calendar-generate): Rename generate-calendar.  Update callers.
2447         (calendar-generate-month): Rename generate-calendar-month.
2448         Update callers.
2449         (calendar-redraw): Rename redraw-calendar.  Update callers.
2450         (calendar-describe-mode): Rename describe-calendar-mode.  Update uses.
2451         (calendar-mouse-other-month): Rename mouse-calendar-other-month.
2452         Update callers.
2453         (calendar-update-mode-line): Rename update-calendar-mode-line.
2454         Update callers.
2455         (calendar-exit): Rename exit-calendar.  Keep old name as alias,
2456         update callers.
2457         (calendar-mark-visible-date): Rename mark-visible-calendar-date.
2458         Keep old name as alias, update callers.
2459         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
2460         * calendar/cal-dst.el, calendar/cal-french.el, calendar/cal-hebrew.el:
2461         * calendar/cal-html.el, calendar/cal-islam.el, calendar/cal-iso.el:
2462         * calendar/cal-julian.el, calendar/cal-menu.el, calendar/cal-move.el:
2463         * calendar/cal-persia.el, calendar/cal-tex.el, calendar/cal-x.el:
2464         * calendar/diary-lib.el, calendar/holidays.el, calendar/lunar.el:
2465         * calendar/solar.el: Update for calendar.el name changes.
2466         * org/org.el (org-agenda-format-date-aligned)
2467         (org-agenda-execute-calendar-command): Access date elements directly
2468         rather than using calendar functions.
2469         (org-read-date, org-goto-calendar, org-agenda-goto-calendar):
2470         Also set calendar-view-diary-initially-flag,
2471         calendar-view-holidays-initially-flag
2472         (org-get-entries-from-diary): Also set diary-fancy-buffer.
2473         (org-agenda-execute-calendar-command): No need to set displayed-day.
2475 2008-04-06  Alan Mackenzie  <acm@muc.de>
2477         * progmodes/cc-langs.el (c-before-font-lock-function): Correct a
2478         typo in the doc string.
2480         * progmodes/cc-mode.el (c-basic-common-init):
2481         Set font-lock-extend-after-change-region-function.
2482         (c-extend-after-change-region): New function, used in
2483         font-lock-extend-after-change-region-function, thus superseding
2484         advice on the Font Lock after change functions.
2485         (c-advise-fl-for-region): Remove this macro.
2487 2008-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
2489         * textmodes/flyspell.el (flyspell-duplicate-distance):
2490         Improve custom type.
2492 2008-04-06  Glenn Morris  <rgm@gnu.org>
2494         * calendar/diary-lib.el (diary-sexp-entry-symbol):
2495         Rename sexp-diary-entry-symbol.  Keep old name as alias, update users.
2496         (diary-list-entries-hook): Rename list-diary-entries-hook.
2497         Keep old name as alias, update users.
2498         (diary-mark-entries-hook): Rename mark-diary-entries-hook.
2499         Keep old name as alias, update users.
2500         (diary-nongregorian-listing-hook): Rename
2501         nongregorian-diary-listing-hook.  Keep old name as alias, update users.
2502         (diary-nongregorian-marking-hook): Rename
2503         nongregorian-diary-marking-hook.  Keep old name as alias, update users.
2504         (diary-print-entries-hook): Rename print-diary-entries-hook.
2505         Keep old name as alias, update users.
2506         (diary-abbreviated-year-flag): Rename abbreviated-calendar-year.
2507         Keep old name as alias, update users.
2508         (diary-number-of-entries): Rename number-of-diary-entries.
2509         Keep old name as alias, update users.
2510         (view-diary-entries, list-diary-entries, show-all-diary-entries):
2511         Give version of obsolescence.
2512         (diary-view-other-diary-entries): Rename view-other-diary-entries.
2513         Keep old name as alias, update callers.
2514         (diary-add-to-list): Rename add-to-diary-list.  Keep old name as alias,
2515         update callers.
2516         (diary-include-other-diary-files): Rename include-other-diary-files.
2517         Keep old name as alias, update callers.
2518         (diary-simple-display): Rename simple-diary-display.
2519         Keep old name as alias, update callers.
2520         (diary-fancy-display): Rename fancy-diary-display.
2521         Keep old name as alias, update callers.
2522         (diary-print-entries): Rename print-diary-entries.
2523         Keep old name as alias, update callers.
2524         (diary-marking-entries-flag): Rename marking-diary-entries.
2525         Update users.
2526         (diary-marking-entry-flag): Rename marking-diary-entry.  Update users.
2527         (diary-mark-entries): Rename mark-diary-entries.
2528         Keep old name as alias, update callers.
2529         (diary-mark-sexp-entries): Rename mark-sexp-diary-entries.
2530         Keep old name as alias, update callers.
2531         (diary-mark-included-diary-files): Rename mark-included-diary-files.
2532         Keep old name as alias, update callers.
2533         (calendar-mark-days-named): Rename mark-calendar-days-named.
2534         Keep old name as alias, update callers.
2535         (calendar-mark-month): Rename mark-calendar-month.
2536         Keep old name as alias, update callers.
2537         (calendar-mark-date-pattern): Rename mark-calendar-date-pattern.
2538         Keep old name as alias, update callers.
2539         (diary-sort-entries): Rename sort-diary-entries.
2540         Keep old name as alias, update callers.
2541         (diary-list-sexp-entries): Rename list-sexp-diary-entries.
2542         Keep old name as alias, update callers.
2543         (diary-make-entry): Rename make-diary-entry.  Keep old name as alias,
2544         update callers.
2545         (diary-insert-entry): Rename insert-diary-entry.
2546         Keep old name as alias.
2547         (diary-insert-weekly-entry): Rename insert-weekly-diary-entry.
2548         Keep old name as alias.
2549         (diary-insert-monthly-entry): Rename insert-monthly-diary-entry.
2550         Keep old name as alias.
2551         (diary-insert-yearly-entry): Rename insert-yearly-diary-entry.
2552         Keep old name as alias.
2553         (diary-insert-anniversary-entry): Rename insert-anniversary-diary-entry.
2554         Keep old name as alias.
2555         (diary-insert-block-entry): Rename insert-block-diary-entry.
2556         Keep old name as alias.
2557         (diary-insert-cyclic-entry): Rename insert-cyclic-diary-entry.
2558         Keep old name as alias.
2559         (diary-fancy-font-lock-keywords): Rename fancy-diary-font-lock-keywords.
2560         Keep old name as alias, update users.
2561         (diary-fancy-display-mode): Rename fancy-diary-display-mode.
2562         Keep old name as alias, update callers.
2563         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
2564         * calendar/cal-menu.el, calendar/cal-x.el, calendar/calendar.el:
2565         * calendar/icalendar.el: Update for diary-lib name changes.
2567 2008-04-06  Chong Yidong  <cyd@stupidchicken.com>
2569         * dired-aux.el (dired-overwrite-confirmed): Revert last change.
2571         * dired.el (dired-dnd-handle-local-file): Obey dired-backup-overwrite
2572         for copy, move, and link operations.
2574 2008-04-06  Michael Kifer  <kifer@cs.stonybrook.edu>
2576         * emulation/viper-init.el, emulation/viper-ex.el, emulation/viper-cmd.el
2577         (viper-search-wrap-around-t): Replace with viper-search-wrap-around.
2579         * ediff-util.el, ediff-vers.el, ediff-wind.el: Replace 3-argument
2580         'require' statements with 1-argument ones (wrapped in if's).
2581         For compatibility with the current stable version of XEmacs.
2583 2008-04-06  Dan Nicolaescu  <dann@ics.uci.edu>
2585         * vc.el (vc-status-prepare-status-buffer): Reset vc-parent-buffer-name.
2587 2008-04-06  Jason Rumney  <jasonr@gnu.org>
2589         * language/burmese.el ("Burmese"): Make sample text consistent with
2590         language name.
2592 2008-04-06  Nick Roberts  <nickrob@snap.net.nz>
2594         * progmodes/gdb-ui.el (gdb): New group.
2595         (gdb-debug-log-max, gdb-enable-debug)
2596         (gdb-cpp-define-alist-program, gdb-cpp-define-alist-flags)
2597         (gdb-show-main, gdb-many-windows, gdb-use-separate-io-buffer)
2598         (gdb-speedbar-auto-raise, gdb-use-colon-colon-notation)
2599         (gdb-show-changed-values, gdb-max-children)
2600         (gdb-delete-out-of-scope, gdb-same-frame, gdb-find-source-frame)
2601         (breakpoint-enabled, breakpoint-disabled, gdb-max-frames)
2602         (gdb-all-registers, gdb-memory-repeat-count, gdb-memory-format)
2603         (gdb-memory-unit): Move to new group from GUD group.
2604         (menu): Allow customization from GDB-UI menu-item.
2606 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
2608         * dired-aux.el (dired-overwrite-confirmed): Supply initial value.
2610 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2612         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-annotate-command)
2613         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
2614         Revision numbers can include ".".
2616         * diff-mode.el (diff-end-of-hunk): Be careful not to overlook trailing
2617         "+" lines not accounted for by counting "-" and context lines.
2619 2008-04-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2621         * term/mac-win.el (mac-service-open-file): Use file URL instead of
2622         file name string.
2624 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2626         * vc-bzr.el (vc-bzr-annotate-command): Preserve line alignment.
2627         (vc-bzr-annotate-time): Accept space used to preserve alignment.
2629 2008-04-05  Richard Stallman  <rms@gnu.org>
2631         * emacs-lisp/advice.el (defadvice): Add usage pattern.
2633 2008-04-05  Nick Roberts  <nickrob@snap.net.nz>
2635         * progmodes/gdb-ui.el: Add advice about using Cygwin GDB (from a
2636         thread in [h-e-w]).
2638 2008-04-05  Juanma Barranquero  <lekktu@gmail.com>
2640         * files.el (abort-if-file-too-large): Fix typo in docstring.
2642 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2644         * subr.el (functionp): Return nil for special forms.
2646 2008-04-05  Glenn Morris  <rgm@gnu.org>
2648         * emacs-lisp/autoload.el (autoload-ensure-default-file):
2649         Provide a feature.
2650         * calendar/calendar.el, calendar/diary-lib.el, calendar/holidays.el:
2651         Require loaddef file rather than loading it.
2652         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Simplify rule now that
2653         autoload-ensure-default-file provides a feature.
2655         * Makefile.in (LOADDEFS): Add mh-loaddefs.el.
2656         (AUTOGENEL): mh-loaddefs is in $LOADDEFS now.
2657         (compile, compile-always, recompile): Use $LOADDEFS.
2658         (cal-autoloads): Remove.
2660         * calendar/cal-x.el (calendar-dedicate-diary): Use get-buffer rather
2661         than buffer-live-p.  Reported by David Koppelman <koppel@ece.lsu.edu>.
2663         * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
2664         (hebrew-holidays-3, hebrew-holidays-4): Don't autoload obsolescence.
2666         * calendar/calendar.el (diary-hebrew-entry-symbol):
2667         Rename hebrew-diary-entry-symbol.  Keep old name as alias.
2668         (diary-islamic-entry-symbol): Rename islamic-diary-entry-symbol.
2669         Keep old name as alias.
2670         (diary-bahai-entry-symbol): Rename bahai-diary-entry-symbol.
2671         Keep old name as alias.
2672         * calendar/cal-bahai.el: Update for rename bahai-diary-entry-symbol
2673         to diary-bahai-entry-symbol.
2674         * calendar/cal-hebrew.el: Update for rename hebrew-diary-entry-symbol
2675         to diary-hebrew-entry-symbol.
2676         * calendar/cal-islam.el: Update for rename islamic-diary-entry-symbol
2677         to diary-islamic-entry-symbol.
2678         * calendar/diary-lib.el: Update for diary-entry-symbol renames.
2680         * calendar/solar.el (diary-sabbath-candles-minutes)
2681         (diary-sabbath-candles): Move to cal-hebrew.
2682         * calendar/cal-hebrew.el (diary-hebrew-sabbath-candles-minutes)
2683         (diary-hebrew-sabbath-candles): Move here from solar.el and rename.
2684         Doc fix.  Keep old name as alias.
2685         (diary-hebrew-sabbath-candles): Simplify.
2686         (solar-setup, solar-sunrise-sunset, calendar-latitude)
2687         (calendar-longitude, calendar-time-zone): Declare for compiler.
2688         * calendar/diary-lib.el (list-sexp-diary-entries): Update doc for
2689         rename.
2691         * calendar/cal-coptic.el (calendar-coptic-month-name-array):
2692         Rename coptic-calendar-month-name-array.  Update callers.
2693         (calendar-coptic-epoch): Rename coptic-calendar-epoch.  Update callers.
2694         (calendar-coptic-name): Rename coptic-name.  Update callers.
2695         (calendar-coptic-leap-year-p): Rename coptic-calendar-leap-year-p.
2696         Update callers.
2697         (calendar-coptic-last-day-of-month):
2698         Rename coptic-calendar-last-day-of-month.  Update callers.
2699         (calendar-coptic-to-absolute): Rename calendar-absolute-from-coptic.
2700         Keep old name as alias, update callers.
2701         (calendar-coptic-print-date): Rename calendar-print-coptic-date.
2702         Keep old name as alias, update callers.
2703         (calendar-coptic-goto-date): Rename calendar-goto-coptic-date.
2704         Keep old name as alias.
2705         (calendar-ethiopic-month-name-array):
2706         Rename ethiopic-calendar-month-name-array.  Update callers.
2707         (calendar-ethiopic-epoch): Rename ethiopic-calendar-epoch.
2708         Update callers.
2709         (calendar-ethiopic-name): Rename ethiopic-name.  Update callers.
2710         (calendar-ethiopic-to-absolute): Rename calendar-absolute-from-ethiopic.
2711         Keep old name as alias, update callers.
2712         (calendar-ethiopic-print-date): Rename calendar-print-ethiopic-date.
2713         Keep old name as alias, update callers.
2714         (calendar-ethiopic-goto-date): Rename calendar-goto-ethiopic-date.
2715         Keep old name as alias.
2717         * calendar/cal-french.el (calendar-french-epoch):
2718         Rename french-calendar-epoch.  Update callers.
2719         (calendar-french-month-name-array): Rename variable and function
2720         french-calendar-month-name-array.  Update callers.
2721         (calendar-french-multibyte-month-name-array):
2722         Rename french-calendar-multibyte-month-name-array.  Update callers.
2723         (calendar-french-day-name-array): Rename variable and function
2724         french-calendar-day-name-array.  Update callers.
2725         (calendar-french-special-days-array): Rename variable and function
2726         french-calendar-special-days-array.  Update callers.
2727         (calendar-french-multibyte-special-days-array):
2728         Rename french-calendar-multibyte-special-days-array.  Update callers.
2729         (calendar-french-accents-p): Rename french-calendar-accents.
2730         Update callers.
2731         (calendar-french-leap-year-p): Rename french-calendar-leap-year-p.
2732         Update callers.
2733         (calendar-french-last-day-of-month):
2734         Rename french-calendar-last-day-of-month.  Update callers.
2735         (calendar-french-to-absolute): Rename calendar-absolute-from-french.
2736         Keep old name as alias, update callers.
2737         (calendar-french-print-date): Rename calendar-print-french-date.
2738         Keep old name as alias, update callers.
2739         (calendar-french-goto-date): Rename calendar-goto-french-date.
2740         Keep old name as alias.
2742         * calendar/cal-menu.el, calendar/calendar.el:
2743         Update for Coptic and French name changes.
2745         * calendar/cal-china.el (calendar-chinese): Rename custom group
2746         from chinese-calendar.  Update users.
2747         (calendar-chinese-time-zone): Rename chinese-calendar-time-zone.
2748         Keep old name as alias, update users.
2749         (calendar-chinese-location-name): Rename chinese-calendar-location-name.
2750         Keep old name as alias.
2751         (calendar-chinese-daylight-time-offset):
2752         Rename chinese-calendar-daylight-time-offset.  Keep old name as alias,
2753         update users.
2754         (calendar-chinese-standard-time-zone-name):
2755         Rename chinese-calendar-standard-time-zone-name.
2756         Keep old name as alias, update users.
2757         (calendar-chinese-daylight-saving-start):
2758         Rename chinese-calendar-daylight-savings-starts.
2759         Keep old name as alias, update users.
2760         (calendar-chinese-daylight-saving-end):
2761         Rename chinese-calendar-daylight-savings-ends.  Keep old name as alias,
2762         update users.
2763         (calendar-chinese-daylight-saving-start-time):
2764         Rename chinese-calendar-daylight-savings-starts-time.
2765         Keep old name as alias, update users.
2766         (calendar-chinese-daylight-saving-end-time):
2767         Rename chinese-calendar-daylight-savings-ends-time.
2768         Keep old name as alias, update users.
2769         (calendar-chinese-celestial-stem): Rename
2770         calendar-chinese-celestial-stem.  Keep old name as alias, update users.
2771         (calendar-chinese-terrestrial-branch):
2772         Rename calendar-chinese-terrestrial-branch.  Keep old name as alias,
2773         update users.
2774         (calendar-chinese-zodiac-sign-on-or-after):
2775         Rename chinese-zodiac-sign-on-or-after.  Update callers.
2776         (calendar-chinese-new-moon-on-or-after):
2777         Rename chinese-new-moon-on-or-after.  Update callers.
2778         (calendar-chinese-month-list): Rename chinese-month-list.
2779         Update callers.
2780         (calendar-chinese-number-months): Rename number-chinese-months.
2781         Update callers.
2782         (calendar-chinese-compute-year): Rename compute-chinese-year.
2783         Update callers.
2784         (calendar-chinese-year-cache): Rename chinese-year-cache.  Update users.
2785         (calendar-chinese-year): Rename chinese-year.  Update callers.
2786         (calendar-chinese-year-cache-init): Rename chinese-year-cache-init.
2787         (calendar-chinese-to-absolute): Rename calendar-absolute-from-chinese.
2788         Keep old name as alias, update callers.
2789         (calendar-chinese-print-date): Rename calendar-print-chinese-date.
2790         Keep old name as alias, update callers.
2791         (calendar-chinese-months-to-alist):
2792         Rename make-chinese-month-assoc-list.  Update callers.
2793         (calendar-chinese-months): Rename chinese-months.  Update callers.
2794         (calendar-chinese-goto-date): Rename calendar-goto-chinese-date.
2795         Keep old name as alias, update callers.
2797         * calendar/cal-hebrew.el (calendar-hebrew-leap-year-p):
2798         Rename hebrew-calendar-leap-year-p.  Update callers.
2799         (calendar-hebrew-last-month-of-year):
2800         Rename hebrew-calendar-last-month-of-year.  Update callers.
2801         (calendar-hebrew-elapsed-days): Rename hebrew-calendar-elapsed-days.
2802         Update callers.
2803         (calendar-hebrew-days-in-year): Rename hebrew-calendar-days-in-year.
2804         Update callers.
2805         (calendar-hebrew-long-heshvan-p): Rename hebrew-calendar-long-heshvan-p.
2806         Update callers.
2807         (calendar-hebrew-short-kislev-p): Rename hebrew-calendar-short-kislev-p.
2808         Update callers.
2809         (calendar-hebrew-last-day-of-month):
2810         Rename hebrew-calendar-last-day-of-month.  Update callers.
2811         (calendar-hebrew-to-absolute): Rename calendar-absolute-from-hebrew.
2812         Keep old name as alias, update callers.
2813         (calendar-hebrew-print-date): Rename calendar-print-hebrew-date.
2814         Keep old name as alias, update callers.
2815         (calendar-hebrew-yahrzeit): Rename hebrew-calendar-yahrzeit.
2816         Keep old name as alias, update callers.
2817         (calendar-hebrew-goto-date): Rename calendar-goto-hebrew-date.
2818         Keep old name as alias.
2819         (holiday-hebrew-rosh-hashanah): Rename holiday-rosh-hashanah-etc.
2820         Keep old name as alias.
2821         (holiday-hebrew-hanukkah): Rename holiday-hanukkah.
2822         Keep old name as alias.
2823         (holiday-hebrew-passover): Rename holiday-passover-etc.
2824         Keep old name as alias.
2825         (holiday-hebrew-tisha-b-av): Rename holiday-tisha-b-av-etc.
2826         Keep old name as alias, update callers.
2827         (diary-hebrew-list-entries): Rename list-hebrew-diary-entries.
2828         Keep old name as alias.
2829         (calendar-hebrew-mark-date-pattern):
2830         Rename mark-hebrew-calendar-date-pattern.  Keep old name as alias,
2831         update callers.
2832         (diary-hebrew-mark-entries): Rename mark-hebrew-diary-entries.
2833         Keep old name as alias.
2834         (diary-hebrew-insert-entry): Rename insert-hebrew-diary-entry.
2835         Keep old name as alias.
2836         (diary-hebrew-insert-monthly-entry):
2837         Rename insert-monthly-hebrew-diary-entry.  Keep old name as alias.
2838         (diary-hebrew-insert-yearly-entry):
2839         Rename insert-yearly-hebrew-diary-entry.  Keep old name as alias.
2840         (calender-hebrew-list-yahrzeits): Rename list-yahrzeit-dates.
2841         Keep old name as alias.
2842         (diary-hebrew-omer): Rename diary-omer.  Keep old name as alias.
2843         (diary-hebrew-yahrzeit): Rename diary-yahrzeit.  Keep old name as alias.
2844         (diary-hebrew-rosh-hodesh): Rename diary-rosh-hodesh.
2845         Keep old name as alias.
2846         (calendar-hebrew-parashiot-names):
2847         Rename hebrew-calendar-parashiot-names.  Update callers.
2848         (calendar-hebrew-parasha-name): Rename hebrew-calendar-parasha-name.
2849         (calendar-hebrew-year-Saturday-incomplete-Sunday):
2850         Rename hebrew-calendar-year-Saturday-incomplete-Sunday.
2851         (calendar-hebrew-year-Saturday-complete-Tuesday):
2852         Rename hebrew-calendar-year-Saturday-complete-Tuesday.
2853         (calendar-hebrew-year-Monday-incomplete-Tuesday):
2854         Rename hebrew-calendar-year-Monday-incomplete-Tuesday.
2855         (calendar-hebrew-year-Monday-complete-Thursday):
2856         Rename hebrew-calendar-year-Monday-complete-Thursday.
2857         (calendar-hebrew-year-Tuesday-regular-Thursday):
2858         Rename hebrew-calendar-year-Tuesday-regular-Thursday.
2859         (calendar-hebrew-year-Thursday-regular-Saturday):
2860         Rename hebrew-calendar-year-Thursday-regular-Saturday.
2861         (calendar-hebrew-year-Thursday-complete-Sunday):
2862         Rename hebrew-calendar-year-Thursday-complete-Sunday.
2863         (calendar-hebrew-year-Saturday-incomplete-Tuesday):
2864         Rename hebrew-calendar-year-Saturday-incomplete-Tuesday.
2865         (calendar-hebrew-year-Saturday-complete-Thursday):
2866         Rename hebrew-calendar-year-Saturday-complete-Thursday.
2867         (calendar-hebrew-year-Monday-incomplete-Thursday):
2868         Rename hebrew-calendar-year-Monday-incomplete-Thursday.
2869         (calendar-hebrew-year-Monday-complete-Saturday):
2870         Rename hebrew-calendar-year-Monday-complete-Saturday.
2871         (calendar-hebrew-year-Tuesday-regular-Saturday):
2872         Rename hebrew-calendar-year-Tuesday-regular-Saturday.
2873         (calendar-hebrew-year-Thursday-incomplete-Sunday):
2874         Rename hebrew-calendar-year-Thursday-incomplete-Sunday.
2875         (calendar-hebrew-year-Thursday-complete-Tuesday):
2876         Rename hebrew-calendar-year-Thursday-complete-Tuesday.
2877         (diary-hebrew-parasha): Rename diary-parasha.  Keep old name as alias.
2878         Update for above name changes of constants.
2880         * calendar/cal-menu.el, calendar/calendar.el:
2881         Update for chinese and hebrew name changes.
2882         * calendar/diary-lib.el: Update for hebrew name changes.
2884 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2886         * subr.el (keymap-canonicalize): Correct thinko.
2888         * server.el: Undo part of the multi-tty change, which is only
2889         needed if server.el is preloaded, and broke server-running-p.
2890         (server-socket-dir): Initialize in the defvar, as before.
2891         (server-start): Remove initialization of server-socket-dir.
2893 2008-04-05  Eli Zaretskii  <eliz@gnu.org>
2895         * ls-lisp.el (ls-lisp-format): Support inodes that are 2- or
2896         3-member cons cells.
2898 2008-04-05  Chong Yidong  <cyd@stupidchicken.com>
2900         * cus-face.el (custom-face-attributes): Handle roman slant.
2902         * faces.el (default): Ensure the face-defface-spec property is set.
2904 2008-04-05  Adrian Robert  <Adrian.B.Robert@gmail.com>
2906         * files.el (abort-if-file-too-large): New function.
2907         (find-file-noselect, insert-file-1): Use it.
2909 2008-04-05  Reto Zimmermann  <reto@gnu.org>
2911         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
2912         Replace C-c[a-zA-Z] key bindings.
2914 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2916         * progmodes/hideif.el (hif-token-alist): New var.
2917         (hif-token-regexp, hif-tokenize): Use it.
2918         (hif-mathify-binop): New macro.
2919         (hif-plus, hif-minus, hif-notequal, hif-greater, hif-less)
2920         (hif-greater-equal, hif-less-equal): Use it.
2921         (hif-logior, hif-logand): New functions.
2922         (hif-math): Accept | and & as well.
2924         * progmodes/etags.el: Fix problem with completion for buffer-local
2925         tables.  Reported by Radey Shouman <shouman@comcast.net>.
2926         (tags-complete-tag): Remove.
2927         (tags-lazy-completion-table): New function to replace it.
2928         (find-tag-tag, complete-tag): Update users.
2930 2008-04-04  Dan Nicolaescu  <dann@ics.uci.edu>
2932         * vc-rcs.el (vc-rcs-dir-status):
2933         * vc-sccs.el (vc-sccs-dir-status): New function.
2935         * outline.el (outline-mode-menu-bar-map):
2936         * term.el (terminal-signal-menu): Add :help.
2938         * net/eudc.el (eudc-mode-map): Declare and define in one step.
2939         (eudc-tail-menu, eudc-server-menu, eudc-tools-menu): Add :help.
2941         * emacs-lisp/re-builder.el (reb-mode-map):
2942         * textmodes/nroff-mode.el (nroff-mode-map): Add menus.
2944         * diff-mode.el (diff-file-junk-re): Recognize the git format for
2945         new files, deleted files and for changing permissions.
2946         (diff-mode): Set beginning-of-defun-function and
2947         end-of-defun-function.
2949         * vc-bzr.el (vc-bzr-state): Use when instead of if.
2951         * vc.el (vc-default-status-fileinfo-extra): New function.
2952         (vc-status-mark-buffer-changed): Use it.
2953         (vc-update-vc-status-buffer): Allow for partial updates.
2955 2008-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2957         * net/tramp.el (after-init-hook): Don't wrap a lambda around
2958         tramp-register-completion-file-name-handler.
2960         * subr.el (keymap-canonicalize): New function.
2961         * mouse.el (mouse-menu-non-singleton): Use it.
2962         (mouse-major-mode-menu): Remove hack made unnecessary.
2964         * simple.el (set-fill-column): Prompt rather than error by default.
2966 2008-04-04  Andreas Schwab  <schwab@suse.de>
2968         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
2969         Reset new-rules after each round.
2971         * Makefile.in (cal-autoloads): New target.
2972         (compile, compile-always, recompile): Depend on it.
2973         ($(lisp)/calendar/cal-loaddefs.el)
2974         ($(lisp)/calendar/diary-loaddefs.el)
2975         ($(lisp)/calendar/hol-loaddefs.el): Depend on calendar/*.el.
2977 2008-04-04  Michael Kifer  <kifer@cs.stonybrook.edu>
2979         * ediff*.el: Replace load with require in eval-when-compile.
2981         * ediff-hook: Delete all invocations of (autoload ...).
2983         * ediff-util.el (ediff-setup): Make window-min-height a local variable
2984         in ediff control window, and set its min height to 2.
2985         (ediff-setup-control-buffer): Dedicate the control window.
2986         (ediff-toggle-multiframe): Undedicate control window.
2987         Work directly with ediff-setup-windows-multiframe and
2988         ediff-setup-windows-plain.
2990         * ediff-wind (ediff-choose-window-setup-function-automatically):
2991         New function.
2992         (ediff-window-setup-function): Change initialization.
2993         (ediff-setup-windows-automatic): Delete.
2994         (ediff-setup-windows-plain-merge): Make control window dedicated.
2995         (ediff-destroy-control-frame): Do not skip frames if working in a
2996         single frame.
2998         * emulation/viper-ex.el: Move provide's forward, prevent recursion in
2999         eval-when-compile.
3001         * emulation/viper-util.el: Move provide's forward, prevent recursion in
3002         eval-when-compile.
3004 2008-04-04  Glenn Morris  <rgm@gnu.org>
3006         * calendar/cal-bahai.el (calendar-bahai-to-absolute): Rename
3007         calendar-absolute-from-bahai.  Update callers, keep old name as alias.
3009         * calendar/cal-islam.el (calendar-islamic-leap-year-p):
3010         Rename islamic-calendar-leap-year-p.  Update callers.
3011         (calendar-islamic-last-day-of-month):
3012         Rename islamic-calendar-last-day-of-month.  Update callers.
3013         (calendar-islamic-day-number):
3014         Rename islamic-calendar-day-number.  Update callers.
3015         (calendar-islamic-to-absolute): Rename calendar-absolute-from-islamic.
3016         Update callers, keep old name as alias.
3017         (calendar-islamic-print-date): Rename calendar-print-islamic-date.
3018         Update callers, keep old name as alias.
3019         (calendar-islamic-goto-date): Rename calendar-goto-islamic-date.
3020         Keep old name as alias.
3021         (diary-islamic-list-entries): Rename list-islamic-diary-entries.
3022         Update callers, keep old name as alias.
3023         (calendar-islamic-mark-date-pattern):
3024         Rename mark-islamic-calendar-date-pattern.  Update callers, keep old
3025         name as alias.
3026         (diary-islamic-insert-entry): Rename insert-islamic-diary-entry.
3027         Keep old name as alias.
3028         (diary-islamic-insert-monthly-entry):
3029         Rename insert-monthly-islamic-diary-entry.  Keep old name as alias.
3030         (diary-islamic-insert-yearly-entry):
3031         Rename insert-yearly-islamic-diary-entry.  Keep old name as alias.
3033         * calendar/cal-iso.el (calendar-iso-to-absolute): Rename
3034         calendar-absolute-from-iso.  Update callers, keep old name as alias.
3035         (calendar-iso-print-date): Rename calendar-print-iso-date.
3036         Update callers, keep old name as alias.
3037         (calendar-iso-goto-date): Rename calendar-goto-iso-date.
3038         Keep old name as alias.
3039         (calendar-iso-goto-week): Rename calendar-goto-iso-week.
3040         Keep old name as alias.
3042         * calendar/cal-julian.el (calendar-julian-to-absolute): Rename
3043         calendar-absolute-from-julian.  Update callers, keep old name as alias.
3044         (calendar-julian-print-date): Rename calendar-print-julian-date.
3045         Update callers, keep old name as alias.
3046         (calendar-julian-goto-date): Rename calendar-goto-julian-date.
3047         Update callers, keep old name as alias.
3048         (calendar-astro-to-absolute): Rename calendar-absolute-from-astro.
3049         Update callers, keep old name as alias.
3050         (calendar-astro-print-day-number):
3051         Rename calendar-print-astro-day-number.  Update callers, keep old
3052         name as alias.
3053         (calendar-astro-goto-day-number): Rename calendar-goto-astro-day-number.
3054         Update callers, keep old name as alias.
3056         * calendar/cal-mayan.el (calendar-mayan-string-from-long-count):
3057         Rename calendar-string-to-mayan-long-count.  Update callers.
3058         (calendar-mayan-print-date): Rename calendar-print-mayan-date.
3059         Update callers, keep old name as alias.
3060         (calendar-mayan-read-haab-date): Rename calendar-read-mayan-haab-date.
3061         Update callers.
3062         (calendar-mayan-read-tzolkin-date):
3063         Rename calendar-read-mayan-tzolkin-date.  Update callers.
3064         (calendar-mayan-next-haab-date): Rename calendar-next-haab-date.
3065         Keep old name as alias.
3066         (calendar-mayan-previous-haab-date): Rename calendar-previous-haab-date.
3067         Keep old name as alias.
3068         (calendar-mayan-next-tzolkin-date): Rename calendar-next-tzolkin-date.
3069         Keep old name as alias.
3070         (calendar-mayan-previous-tzolkin-date):
3071         Rename calendar-previous-tzolkin-date.  Keep old name as alias.
3072         (calendar-mayan-next-round-date):
3073         Rename calendar-next-calendar-round-date.  Keep old name as alias.
3074         (calendar-mayan-previous-round-date):
3075         Rename calendar-previous-calendar-round-date.  Keep old name as alias.
3076         (calendar-mayan-long-count-to-absolute): Rename
3077         calendar-absolute-from-mayan-long-count.  Keep old name as alias.
3078         (calendar-mayan-goto-long-count-date):
3079         Rename calendar-goto-mayan-long-count-date.  Keep old name as alias.
3081         * calendar/cal-persia.el (calendar-persian-month-name-array):
3082         Rename persian-calendar-month-name-array.  Update callers.
3083         (calendar-persian-epoch): Rename persian-calendar-epoch.
3084         Update callers.
3085         (calendar-persian-leap-year-p): Rename persian-calendar-leap-year-p.
3086         Update callers.
3087         (calendar-persian-last-day-of-month):
3088         Rename persian-calendar-last-day-of-month.  Update callers.
3089         (calendar-persian-to-absolute): Rename calendar-absolute-from-persian.
3090         Update callers, keep old name as alias.
3091         (calendar-persian-print-date): Rename calendar-print-persian-date.
3092         Update callers, keep old name as alias.
3093         (calendar-persian-goto-date): Rename calendar-goto-persian-date.
3094         Keep old name as alias.
3096         * calendar/cal-china.el, calendar/cal-coptic.el, calendar/cal-islam.el:
3097         * calendar/cal-persia.el, calendar/holidays.el, calendar/lunar.el:
3098         * calendar/solar.el: Update for cal-julian name changes.
3100         * calendar/cal-dst.el: Update for persian name changes.
3102         * calendar/cal-menu.el, calendar/calendar.el:
3103         Update for islamic, iso, julian, mayan, persian name changes.
3105         * calendar/diary-lib.el: Update for islamic name changes.
3107         * calendar/calendar.el (calendar-hebrew-all-holidays-flag):
3108         Rename all-hebrew-calendar-holidays.  Update callers, keep old name
3109         as alias.
3110         (calendar-christian-all-holidays-flag):
3111         Rename all-christian-calendar-holidays.  Update callers, keep old
3112         name as alias.
3113         (calendar-islamic-all-holidays-flag):
3114         Rename all-islamic-calendar-holidays.  Update callers, keep old
3115         name as alias.
3116         (calendar-bahai-all-holidays-flag): Rename all-bahai-calendar-holidays.
3117         Update callers, keep old name as alias.
3118         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/holidays.el:
3119         Update for the above name changes.
3121 2008-04-04  Juanma Barranquero  <lekktu@gmail.com>
3123         * hilit-chg.el (global-highlight-changes-mode)
3124         (highlight-changes-passive-string, highlight-changes-active-string):
3125         Mark as obsolete since 23.1, not 22.1.
3127 2008-04-03  Juanma Barranquero  <lekktu@gmail.com>
3129         * hilit-chg.el (highlight-changes-visibility-initial-state)
3130         (hilit-chg-update, highlight-changes-mode-turn-on):
3131         Fix typos in docstrings.
3133 2008-04-03  Stephen Berman  <Stephen.Berman@gmx.net>
3135         * newcomment.el (comment-enter-backward): Be careful to restore
3136         position changed during narrowing.
3138 2008-04-03  Giuliano Procida  <giuliano.procida@googlemail.com>  (tiny change)
3140         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3141         Recognize `sub ($$)'.
3143 2008-04-03  Richard Sharman  <rsharman@pobox.com>
3145         * hilit-chg.el (highlight-changes-mode): Rename from
3146         highlight-changes; no longer uses sub-modes active and passive;
3147         implemented by define-minor-mode.
3148         (highlight-changes-toggle-visibility): New function, to replace
3149         the old passive/active submodes of global-highlight-changes-mode;
3150         implemented by define-minor-mode.
3151         (global-highlight-changes-mode): Rename from global-highlight-changes;
3152         rewrite using define-globalized-minor-mode.
3153         (hilit-chg-major-mode-hook, hilit-chg-check-global)
3154         (hilit-chg-post-command-hook, hilit-chg-check-global)
3155         (hilit-chg-update-all-buffers, hilit-chg-turn-off-maybe): Remove due
3156         to use of define-globalized-minor-mode.
3157         (highlight-changes-global-initial-state): Change to be boolean.
3158         (highlight-changes-visible-string, highlight-changes-invisible-string):
3159         Rename from highlight-changes-active-string and
3160         highlight-changes-passive-string.
3161         (hilit-chg-update, hilit-chg-set): Use them.
3162         (global-highlight-changes-mode): Rename from global-highlight-changes.
3163         (hilit-chg-map-changes, hilit-chg-display-changes): Add arguments to
3164         docstring.
3165         (hilit-chg-hide-changes): Rewrite to use dolist.
3166         (hilit-chg-set-face-on-change, hilit-chg-update)
3167         (highlight-changes-rotate-faces): Use highlight-changes-visible-mode
3168         variable instead of testing highlight-changes-mode.
3169         (highlight-markup-buffers): Add require ediff-util; argument on calls
3170         to highlight-changes-mode changed.
3171         (highlight-compare-with-file): Fix problems with interactive
3172         call giving invalid default file.
3174 2008-04-03  Nick Roberts  <nickrob@snap.net.nz>
3176         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint):
3177         Fix in disassembly buffer (regression in 22.2).
3179 2008-04-03  Michael Kifer  <kifer@cs.stonybrook.edu>
3181         * emulation/viper-macs.el (viper-read-fast-keysequence):
3182         Use viper-read-event instead of viper-read-key.
3184         * emulation/viper.el (viper-mode): Move the check for fundamental mode.
3186         * emulation/viper-utils.el (viper-get-saved-cursor-color-in-insert-mode)
3187         (viper-get-saved-cursor-color-in-replace-mode): Get rid of redundant
3188         let-statements.
3190         * emulation/viper-ex.el, emulation/viper-macs.el:
3191         * emulation/viper-mous.el:
3192         Replace load with require in eval-when-compile.
3194 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3196         * files.el (auto-mode-alist): Use archive-mode for Debian packages.
3198         * arc-mode.el (archive-mode-map): Obey mouse-1-click-follows-link.
3199         (archive-try-jka-compr): New function.
3200         (archive-set-buffer-as-visiting-file): Use it.
3202         * tar-mode.el (tar-mode-map): Obey mouse-1-click-follows-link.
3204 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
3206         * simple.el (handle-shift-selection): New arg.
3208 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3210         * emacs-lisp/cl-macs.el (defsetf): Accept a lambda for the 2-arg form.
3212         * vc-bzr.el (vc-bzr-previous-revision, vc-bzr-next-revision): New funs.
3214 2008-04-03  Chong Yidong  <cyd@stupidchicken.com>
3216         * shell.el (shell-dynamic-complete-filename): New fun.
3217         (shell-dynamic-complete-functions): Use it.
3219         * help-fns.el (describe-variable): Undo 2008-02-25 change.
3221 2008-04-03  Kenichi Handa  <handa@m17n.org>
3223         * international/fontset.el (create-fontset-from-x-resource):
3224         Handle the error of X resource more gracefully.
3226         * international/latin1-disp.el (latin1-display): Don't use make-char.
3227         Fix the argument to set-char-table-range.
3228         (latin1-display-identities): Don't use make-char.
3229         (latin1-display-reset): Use map-charset-chars instead of directly
3230         calling standard-display-default.
3231         (latin1-display-check-font): Don't use make-char.
3232         (latin1-display-setup): Likewise.
3233         (latin1-display-ucs-per-lynx): Likewise.
3235 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3237         * emacs-lisp/timer.el (timer): Define as a defstruct, so we can
3238         name the fields, to make the code clearer.
3239         Rewrite all `aset' and `aref' using the defined accessors.
3240         (timer--time): New pseudo-field.
3241         (timer-set-time, timer-set-idle-time, timer-inc-time)
3242         (timer-set-time-with-usecs, with-timeout-suspend): Use it.
3243         (timer--time-less-p): New function.
3244         (timer--activate): New function, extracted from timer-activate.
3245         (timer-activate-when-idle, timer-activate): Use it.
3246         (cancel-function-timers): Use dolist.
3248 2008-04-03  Glenn Morris  <rgm@gnu.org>
3250         * add-log.el (c-beginning-of-defun, c-end-of-defun):
3251         Remove declarations; no longer used.
3252         (c-cpp-define-name, c-defun-name): Declare as functions.
3254         * calendar/cal-bahai.el (holiday-fixed): Autoload it.
3255         (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
3257         * calendar/cal-hebrew.el (holiday-rosh-hashanah-etc)
3258         (holiday-passover-etc, holiday-hanukkah): Doc fix.
3259         Add optional argument.  Simplify.
3260         (holiday-tisha-b-av-etc): Use memq rather than unless.
3261         (holiday-julian): Autoload it.
3262         (holiday-hebrew-misc): New function.
3264         * calendar/cal-islam.el (holiday-islamic-new-year): New function.
3266         * calendar/calendar.el (hebrew-holidays-1, hebrew-holidays-2)
3267         (hebrew-holidays-3, hebrew-holidays-4): Make obsolete.
3268         (hebrew-holidays-2): Just use holiday-hanukkah now it respects
3269         all-hebrew-calendar-holidays.
3270         (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays):
3271         Simplify using new functions.
3272         (calendar-holidays): Doc fix.
3273         (generate-calendar-window): Use bound-and-true-p.
3275         * calendar/diary-lib.el (diary-mail-addr): Use bound-and-true-p.
3277         * calendar/holidays.el (calendar-holiday-list): Fix previous change.
3278         (holiday-filter-visible-calendar): Doc fix.  Use mapcar.
3279         (holiday-easter-etc): Fix nesting of result.  Tweak holiday order.
3280         Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
3282         * net/tramp.el (tramp-drop-volume-letter): Move definition before use.
3284 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3286         * vc-mtn.el (vc-mtn-command): Avoid localization of messages.
3288         * vc-bzr.el (vc-bzr-checkout): Simplify.
3290         * image-mode.el (image-mode-fit-frame): New command.
3292         * simple.el (beginning-of-buffer, end-of-buffer, goto-line, undo)
3293         (copy-region-as-kill, kill-ring-save, use-region-p, mark-word)
3294         (keyboard-escape-quit): Check region-active-p i.s.o
3295         transient-mark-mode.
3297 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3299         * net/imap.el (imap-enable-exchange-bug-workaround): New variable.
3300         (imap-message-copyuid-1): Use it.
3301         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3302         J. Williams in
3303         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3305 2008-04-02  Alan Mackenzie  <acm@muc.de>
3307         * progmodes/cc-cmds.el (c-defun-name, c-cpp-define-name):
3308         New optimised functions to get the name of the current defun/macro.
3310         * add-log.el (add-log-current-defun): Move the functionality which
3311         gets the current function name for C like modes to cc-cmds.el,
3312         thus optimising for speed.
3314 2008-04-02  Chong Yidong  <cyd@stupidchicken.com>
3316         * simple.el (deactivate-mark): When the mark is temporarily
3317         active, restore the original value of transient-mark-mode.
3318         (set-mark-command): First deactivate the mark if was temporarily active.
3319         (exchange-point-and-mark): Reactivate the mark if it was
3320         temporarily active.
3321         (handle-shift-selection): New fun.
3322         (transient-mark-mode): Move var documentation here from buffer.c.
3323         (next-line, previous-line, backward-word, move-end-of-line)
3324         (move-beginning-of-line, forward-to-indentation)
3325         (backward-to-indentation, back-to-indentation)
3326         (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
3328         * mouse.el (mouse-set-region-1): Save the old value of
3329         transient-mark-mode.
3330         (mouse-drag-track): Ignore the now-obsolete value `identity' for
3331         transient-mark-mode.
3333         * textmodes/paragraphs.el (forward-paragraph)
3334         (backward-paragraph, forward-sentence, backward-sentence): Add ^
3335         interactive spec.
3337         * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
3339 2008-04-02  Michael Albinus  <michael.albinus@gmx.de>
3341         * net/tramp.el (tramp-make-tramp-temp-file):
3342         Use `tramp-drop-volume-letter' for the local file name part.
3344 2008-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
3346         * progmodes/sh-script.el (sh-mode-map): Rename the menu.  Add :help.
3347         Add menu entries corresponding to all the key bindings.
3349         * emacs-lisp/debug.el (debugger-mode-map):
3350         * textmodes/conf-mode.el (conf-mode-map): Add a menu.
3351         (conf-align-assignments): Only work on the region if it is active.
3352         (conf-quote-normal): Use when instead of if.  Remove redundant test.
3354         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
3355         for tracing and re-builder.
3357 2008-04-02  Glenn Morris  <rgm@gnu.org>
3359         * calendar/appt.el (appt-disp-window-function): Doc fix.
3360         (appt-display-message): Move beep before display.
3361         (appt-check): Make interactive.  Reduce the number of lets.
3362         Use string-equal to compare mode-line strings.
3363         (appt-disp-window): Pluralize "minute" as needed.  Make appt buffer
3364         read-only.
3365         (appt-select-lowest-window, appt-make-list): Reduce the number of lets.
3366         (appt-delete): Simplify.
3368         * calendar/cal-china.el (holiday-chinese-new-year): Use a single let.
3370         * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
3372         * calendar/cal-hebrew.el (list-yahrzeit-dates):
3373         * calendar/cal-tex.el (cal-tex-insert-blank-days-at-end)
3374         (cal-tex-last-blank-p, cal-tex-daily-page): Expand calendar-for-loops.
3376         * calendar/calendar.el (diary-entry-marker, calendar-today-marker)
3377         (calendar-holiday-marker, mark-visible-calendar-date):
3378         * calendar/diary-lib.el (fancy-diary-display):
3379         Check for font-lock-mode before using faces.
3381         * calendar/calendar.el (hebrew-holidays-3, generate-calendar-month)
3382         (calendar-gregorian-from-absolute): Reduce the number of lets.
3383         (hebrew-holidays-4, generate-calendar-window): Simplify.
3384         (calendar-for-loop): Make obsolete.
3385         (calendar-nth-named-day): Doc fix.
3387         * calendar/diary-lib.el (diary-list-entries, fancy-diary-display)
3388         (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex)
3389         (calendar-mark-1, list-sexp-diary-entries, diary-remind):
3390         Reduce the number of lets.
3391         (mark-sexp-diary-entries, calendar-mark-complex):
3392         Expand calendar-for-loops.
3394 2008-04-01  Chong Yidong  <cyd@stupidchicken.com>
3396         * find-dired.el (find-dired-filter): Fix last patch to handle
3397         multi-line process input.  Pad link numbers too.
3399 2008-04-01  Jari Aalto  <jari.aalto@cante.net>
3401         * find-dired.el (find-dired-filter): Align columns by padding file sizes.
3403 2008-04-01  Jason Rumney  <jasonr@gnu.org>
3405         * international/characters.el (script-list): Add phonetic script,
3406         covering IPA (previously Latin), Phonetic Extensions and
3407         Phonetic Extensions Supplement (both previously unassigned).
3409         * international/fontset.el (setup-default-fontset): Use unicode fonts
3410         that cover bopomofo script for bopomofo.
3411         Likewise for braille and mathematical.
3412         Use unicode scripts that cover the phonetic script for IPA.
3414 2008-04-01  Johan Bockgård  <bojohan@gnu.org>
3416         * emacs-lisp/cl-macs.el (frame-parameter) <defsetf>: Make it
3417         return the assigned value.
3419 2008-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3421         * abbrev.el (abbrev-mode): Use define-minor-mode.
3423         * mouse.el (mouse-major-mode-menu-prefix): Remove.  Remove uses.
3424         (mouse-menu-non-singleton): Rename from mouse-major-mode-menu-1.
3425         Use map-keymap.
3426         (minor-mode-menu-from-indicator): Use it.  Simplify.
3428         * bindings.el (mode-line-mode-menu): Move before (new) first use.
3429         (mode-line-major-mode-keymap, mode-line-minor-mode-keymap):
3430         Bind the key directly to the menu.
3431         (mode-line-mode-menu-1, mode-line-mode-menu): Remove functions.
3433 2008-04-01  Daiki Ueno  <ueno@unixuser.org>
3435         * epa.el (epa-decrypt-region): Explain the reason why this
3436         function should not be used in Lisp programs.
3437         (epa-decrypt-armor-in-region): Ditto.
3438         (epa-verify-region): Ditto.
3439         (epa-verify-cleartext-in-region): Ditto.
3440         (epa-sign-region): Ditto.
3441         (epa-encrypt-region): Ditto.
3443         * epg.el (epg-start-receive-keys): Fix typo in docstring.
3445         * epa.el (epa-select-keys): Show menu even if there is no key in
3446         GnuPG's keyring.
3448 2008-04-01  Glenn Morris  <rgm@gnu.org>
3450         * calendar/calendar.el (calendar-make-temp-face): New function.
3451         (mark-visible-calendar-date):
3452         * calendar/diary-lib.el (fancy-diary-display): Use it.
3454         * vc-hooks.el (vc-responsible-backend): Declare as function.
3456         * calendar/calendar.el (calendar-nongregorian-visible-p): New function.
3457         * calendar/cal-hebrew.el (calendar-hebrew-date-is-visible-p):
3458         * calendar/cal-julian.el (holiday-julian): Use it.
3460         * calendar/cal-hebrew.el (hebrew-calendar-elapsed-days): Doc fix.
3461         (calendar-hebrew-date-is-visible-p): Extract some common code into
3462         separate function.
3463         (holiday-hebrew, mark-hebrew-calendar-date-pattern): Use it.
3465         * calendar/cal-menu.el (cal-menu-holidays-menu):
3466         * calendar/calendar.el (calendar-mode-map): Use calendar-mark-holidays
3467         rather than obsolete alias.
3469         * calendar/calendar.el (mark-visible-calendar-date): Also use overlay
3470         for mark characters.
3471         (calendar-unmark): Unmark by removing all overlays, rather than
3472         redrawing.
3473         (calendar-starred-day): Remove.
3474         (calendar-mode): Disable undo.  Don't make calendar-starred-day local.
3475         (calendar-cursor-to-date): No need for special star handling now
3476         using overlays.
3477         (calendar-star-date): Use overlays.
3479         * calendar/cal-french.el (calendar-goto-french-date):
3480         * calendar/cal-hebrew.el (calendar-hebrew-from-absolute)
3481         (holiday-hanukkah, mark-hebrew-calendar-date-pattern):
3482         * calendar/cal-move.el (calendar-forward-month, calendar-end-of-month):
3483         * calendar/cal-persia.el (calendar-persian-date-string):
3484         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
3485         (cal-tex-cursor-month, cal-tex-LaTeXify-string):
3486         * calendar/lunar.el (lunar-phase-list, lunar-new-moon-on-or-after):
3487         * calendar/solar.el (solar-equinoxes-solstices):
3488         Reduce nesting of some lets.
3490         * calendar/cal-mayan.el (calendar-string-to-mayan-long-count):
3491         (calendar-goto-mayan-long-count-date): Simplify.
3493         * calendar/holidays.el (calendar-holiday-list, holiday-easter-etc):
3494         Simplify by using mapcar.
3495         (calendar-list-holidays): Return holiday-list.
3496         (list-holidays): Use let rather than let*.  Remove un-needed locals
3497         `d', `never'.
3498         (calendar-check-holidays): Return result from dolist.
3499         (holiday-float): Use a single let*.  Simplify if-and to and.
3500         (holiday-sexp, holiday-advent, holiday-greek-orthodox-easter): Use a
3501         single let*.
3503 2008-04-01  Jay Belanger  <jay.p.belanger@gmail.com>
3505         * calc/calc.el: Autoload `calc-yank'.
3506         (calc-mode-map): Add keybindings for `calc-yank'.
3507         * calc/calc-ext.el (calc-init-extensions): Remove keybinding
3508         assignments for `calc-yank'.
3510 2008-03-31  Dan Nicolaescu  <dann@ics.uci.edu>
3512         * vc.el (vc-status-add-entry): Assume ENTRY is a list, not a cons.
3513         (vc-status-mark-buffer-changed): Handle the extra field.
3515         * vc-bzr.el (vc-bzr-after-dir-status):
3516         * vc-cvs.el (vc-cvs-after-dir-status):
3517         * vc-hg.el (vc-hg-after-dir-status):
3518         * vc-svn.el (vc-svn-after-dir-status): Return a list, not a cons.
3520 2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3522         * doc-view.el: Compute displayed pages first (in PDF).
3523         (doc-view-current-converter-processes): Rename from
3524         doc-view-current-converter-process.  Update users.
3525         (doc-view-sentinel): Test buffer's liveness.
3526         (doc-view-pdf/ps->png-sentinel): Remove.
3527         (doc-view-start-process): New function.
3528         (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
3529         (doc-view-ps->pdf): Use it.
3530         (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
3531         New functions.
3532         (doc-view-convert-current-doc, doc-view-goto-page): Use them.
3533         (doc-view-mode): Kill the processes when leaving the mode.
3535 2008-03-31  Juanma Barranquero  <lekktu@gmail.com>
3537         * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
3538         Use `byte-compile-warning-types'.  Add docstring.
3540 2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3542         * smerge-mode.el (smerge-apply-resolution-patch): New fun.
3543         (smerge-resolve): Add various resolution heuristics.
3545         * smerge-mode.el (smerge-refine): Allow highlighting other subparts
3546         in 3-way conflicts.
3548 2008-03-31  Glenn Morris  <rgm@gnu.org>
3550         * calendar/cal-bahai.el (diary-bahai-mark-entries):
3551         * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
3552         * calendar/cal-islam.el (mark-islamic-diary-entries):
3553         Fix argument order in call to diary-mark-entries-1.
3555         * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
3556         pre-Bahai dates.
3557         (holiday-bahai): Use an algorithm actually relevant to this calendar
3558         system.
3560         * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
3562         * calendar/cal-islam.el (holiday-islamic): Remove un-needed let.
3563         Use and.
3565         * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
3566         in the last fortnight in Julian October.
3568         * calendar/calendar.el (increment-calendar-month): Optionally handle
3569         systems without 12 months per year.
3571         (calendar-date-is-visible-p): Doc fix.  Simplify.
3573         * calendar/holidays.el (holiday-filter-visible-calendar): Return result
3574         from dolist.
3576 2008-03-30  Juanma Barranquero  <lekktu@gmail.com>
3578         * hi-lock.el (hi-lock-mode): Fix typos in docstring.
3579         (hi-lock-unload-function): New function.
3581 2008-03-30  Michael Albinus  <michael.albinus@gmx.de>
3583         * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
3584         overwriting when NEWNAME is a local file.
3586         * net/trampver.el: Update release number.
3588 2008-03-30  Alexandre Julliard  <julliard@winehq.org>
3590         * vc-git.el: Make vc-status display information about copies,
3591         renames and permission changes.
3592         (vc-git-extra-fileinfo): New defstruct.
3593         (vc-git-escape-file-name, vc-git-file-type-as-string)
3594         (vc-git-rename-as-string, vc-git-permissions-as-string)
3595         (vc-git-status-printer): New functions.
3596         (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
3597         (vc-git-after-dir-status-stage1): Look for copies, renames and
3598         permission changes.
3599         (vc-git-after-dir-status-stage1-empty-db): Set permissions.
3600         (vc-git-dir-status): Ask for staged files and renames.
3602 2008-03-30  Dan Nicolaescu  <dann@ics.uci.edu>
3604         * vc.el: Allow backends to display backend specific information in
3605         the vc-status listing.
3606         (vc-status-fileinfo): Add a field for backend specific information.
3607         (vc-status-printer): Rename to ...
3608         (vc-default-status-printer): ... this.
3609         (vc-status-printer): New function.
3610         (vc-update-vc-status-buffer): Set the backend specific file info
3611         if provided.
3613 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3615         * textmodes/remember.el (remember-diary-convert-entry): Revert last
3616         change (ill-conceived).
3618 2008-03-29  Glenn Morris  <rgm@gnu.org>
3620         * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
3621         * calendar/cal-julian.el (holiday-julian): Simplify.
3623         * calendar/holidays.el (list-holidays): Use or.
3625 2008-03-29  Juri Linkov  <juri@jurta.org>
3627         * window.el (split-window-preferred-horizontally): New function.
3629         * cus-start.el (split-window-preferred-function):
3630         Set choice for "vertically" to nil instead of split-window.
3631         Set choice for "horizontally" to split-window-preferred-horizontally
3632         instead of lambda.
3634 2008-03-29  Juri Linkov  <juri@jurta.org>
3636         * simple.el (minibuffer-default-add-function): New variable with
3637         the default to minibuffer-default-add-completions.
3638         (minibuffer-default-add-done): New variable.  Make it buffer-local.
3639         (minibuffer-default-add-completions): New function.
3640         (goto-history-element): Set minibuffer-default-add-done to t and
3641         call a function in minibuffer-default-add-function when the
3642         specified absolute history position is greater than the length of
3643         the minibuffer-default list and minibuffer-default-add-done is nil.
3644         Change "^End of history; no next item$" to "^End of defaults;
3645         no next item$".
3647         * bindings.el (debug-ignored-errors): Change "^End of history;
3648         no next item$" to "^End of defaults; no next item$".
3650 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3652         * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
3654         * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
3655         to with-no-warnings.
3657 2008-03-29  Michael Albinus  <michael.albinus@gmx.de>
3659         Sync with Tramp 2.1.13.
3661         * net/tramp-ftp.el: Require 'cl when byte-compiling.
3663         * net/trampver.el: Update release number.
3665 2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
3667         * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
3668         the current backend.
3670         * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
3671         (vc-status-refresh): Create a temporary buffer and call the
3672         `dir-status' backend function from that buffer.
3674         * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
3675         (vc-bzr-after-dir-status): Don't kill the buffer.
3677         * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
3678         (vc-cvs-after-dir-status): Don't kill the buffer.
3680         * vc-git.el (vc-git-dir-status): Don't create a buffer.
3681         (vc-git-after-dir-status-stage2): Don't kill the buffer.
3683         * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
3684         (vc-hg-after-dir-status): Don't kill the buffer.
3686         * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
3687         (vc-svn-after-dir-status): Don't kill the buffer.
3689 2008-03-29  Glenn Morris  <rgm@gnu.org>
3691         * calendar/calendar.el (diary-file, american-date-diary-pattern)
3692         (european-date-diary-pattern, european-calendar-display-form)
3693         (american-calendar-display-form, diary-display-hook): Doc fixes.
3694         (european-calendar-style): Doc fix.  Use calendar-set-date-style for
3695         custom :set.  Mark as obsolete.
3696         (calendar-date-style, iso-date-diary-pattern)
3697         (iso-calendar-display-form): New user variables.
3698         (diary-date-forms, calendar-date-display-form): Set using
3699         calendar-date-style.  Doc fix.
3700         (calendar-set-date-style): New command.
3701         (european-calendar, american-calendar): Use calendar-set-date-style.
3702         Mark as obsolete.
3704         * calendar/diary-lib.el (number): Move declaration where needed.
3705         (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
3706         (diary-make-date): New function.
3707         (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
3708         Use diary-make-date.
3709         (diary-date-display-form, diary-insert-entry-1): New functions.
3710         (insert-monthly-diary-entry, insert-yearly-diary-entry):
3711         Use diary-insert-entry-1.
3712         (insert-anniversary-diary-entry, insert-block-diary-entry)
3713         (insert-cyclic-diary-entry): Use diary-date-display-form.
3715         * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
3716         Autoload diary-insert-entry-1.
3717         * calendar/cal-bahai.el (diary-bahai-insert-entry)
3718         (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
3719         * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
3720         (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
3721         * calendar/cal-islam.el (insert-islamic-diary-entry)
3722         (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
3723         Use diary-insert-entry-1.
3725         * calendar/cal-hebrew.el (diary-make-date): Autoload it.
3726         (diary-yahrzeit): Doc fix.  Use diary-make-date.
3728         * calendar/icalendar.el (icalendar--datetime-to-american-date):
3729         New name for icalendar--datetime-to-noneuropean-date.  Make old name
3730         obsolete alias.
3731         (icalendar--datetime-to-iso-date): New function.
3732         (icalendar--datetime-to-diary-date): Doc fix.  Respect
3733         calendar-date-style if bound.
3735         * textmodes/remember.el (remember-diary-convert-entry):
3736         Respect calendar-date-style if bound.
3738 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3740         * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
3741         (xterm-mouse-handle-delete-frame): Delete.
3743         * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
3744         (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
3745         (xterm-remove-modify-other-keys): Lookup terminal rather than frame
3746         in xterm-modify-other-keys-terminal-list.
3748         * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
3749         are conflicts.
3751 2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
3753         * vc.el (vc-update): Check if the buffer is unsaved only if it
3754         actually exists.
3755         (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
3756         vc-print-log.
3758 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3760         * net/dns.el (dns-write): Use set-buffer-multibyte.
3762 2008-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3764         * vc-bzr.el (vc-bzr-sha1): New fun.
3765         (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
3766         (vc-bzr-registered): Use it.
3768 2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
3770         * vc.el (vc-status-kill-dir-status-process): Simplify.
3771         (vc-status-refresh): Make sure the buffer is live.
3772         (ring): Don't require it, not used.
3774 2008-03-28  Wilson Snyder  <wsnyder@wsnyder.org>
3776         * progmodes/verilog-mode.el (verilog-auto-inout-module):
3777         Add optional regular expression to AUTOINOUTMODULE.
3778         (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
3779         (verilog-auto-inst-param, verilog-auto-reg)
3780         (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
3781         (verilog-auto-output-every, verilog-auto-input)
3782         (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
3783         (verilog-auto-unused, verilog-auto): Update documentation to use
3784         more obvious instance module names versus cell names.
3786 2008-03-28  Jan Djärv  <jan.h.d@swipnet.se>
3788         * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
3789         kill if a process is running.
3791         * progmodes/grep.el (grep-mode-tool-bar-map): The same.
3793 2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
3795         * vc.el: Add new backend function 'status-extra-headers.
3796         (vc-default-status-extra-headers): New function.
3797         (vc-status-headers): Call 'status-extra-headers.  Add colors.
3799         * vc-git.el (vc-git-status-extra-headers): New function.
3801 2008-03-28  Glenn Morris  <rgm@gnu.org>
3803         * calendar/cal-menu.el (cal-menu-holidays-menu)
3804         (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
3805         (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
3806         holiday-list is optional.
3807         (calendar-mouse-holidays): Remove un-needed local `l'.
3809         * calendar/cal-move.el (calendar-cursor-to-nearest-date):
3810         Remove un-needed local `date'.
3811         (calendar-cursor-to-visible-date): Use let rather than let*.
3812         Remove un-needed local `first-of-month-weekday'.
3814         * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
3816         * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
3817         Doc fixes.
3818         (abbreviated-calendar-year): Move here from calendar.el.  Doc fix.
3819         (diary-header-line-flag, diary-header-line-format): Declare.
3820         (diary-pull-attrs): Check for multiple matches.
3821         (diary-list-entries-2): Simplify finding start of date.
3822         (diary-show-all-entries, make-diary-entry): Respect non-nil values of
3823         pop-up-frames.
3824         (diary-mark-entries-1): Re-use offset in abbreviated-year case.
3825         (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
3827 2008-03-27  Dan Nicolaescu  <dann@ics.uci.edu>
3829         * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
3831         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
3833 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3835         * vc-hooks.el (vc-before-save): Don't prevent saving the file.
3837         * image-mode.el (image-mode-reapply-winprops): Fix last change.
3839 2008-03-27  Kenichi Handa  <handa@ni.aist.go.jp>
3841         * international/mule-conf.el (define-iso-single-byte-charset):
3842         Don't make latin-iso8859-* supplementary.
3843         (#'set-charset-priority): Don't change the priority of charsets
3844         `unicode' and `emacs'.
3846 2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3848         * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
3849         temp buffer.
3851 2008-03-27  Glenn Morris  <rgm@gnu.org>
3853         * calendar/cal-bahai.el (diary-bahai-list-entries):
3854         * calendar/cal-hebrew.el (list-hebrew-diary-entries):
3855         * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
3857         * calendar/calendar.el (diary-file): Doc fix.
3859         * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
3860         (list-diary-entries-hook, mark-diary-entries-hook)
3861         (include-other-diary-files, diary-mail-entries)
3862         (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
3863         (diary-set-header): New function.
3864         (diary-header-line-flag, diary-header-line-format):
3865         Use diary-set-header for custom :set function.
3866         (diary-set-maybe-redraw): Use symbol-value rather than eval.
3867         (diary-attrtype-convert): Use intern-soft rather than read.
3868         (diary-display-no-entries): New function.
3869         (simple-diary-display, fancy-diary-display): Use it.
3870         (fancy-diary-display): Doc fix.  Remove unneeded local entry-list.
3871         (diary-mark-entries-1): Fix position offsets in non-gregorian case.
3873         * calendar/holidays.el (list-holidays): Doc fix.
3875 2008-03-26  Jay Belanger  <jay.p.belanger@gmail.com>
3877         * calc/calc-store.el (calc-read-var-name-history): New variable.
3878         (calc-read-var-name): Use `calc-read-var-name-history'.
3880 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3882         * image-mode.el (image-mode-reapply-winprops): Simplify now that
3883         window-configuration-change-hook works buffer-locally.
3885 2008-03-26  Johan Bockgård  <bojohan@gnu.org>
3887         * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
3888         for Emacs Lisp, not Lisp.
3890 2008-03-26  Juanma Barranquero  <lekktu@gmail.com>
3892         * help-fns.el (describe-function-1, describe-variable):
3893         If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
3895         * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
3896         replacement is provided, don't print "use nil instead".
3898 2008-03-26  Johan Bockgård  <bojohan@gnu.org>
3900         * complete.el (PC-do-completion): Use regexp-quote.
3902 2008-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
3904         * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
3905         Detect missing files.
3907         * vc-git.el (vc-git-extra-menu-map): New key map.
3908         (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
3909         New functions.
3911         * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
3912         and 'missing files.
3914 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3916         * calendar/holidays.el (list-holidays): Make Y2 optional.
3918         * calendar/appt.el (appt-buffer-name): Don't use a leading space for
3919         buffers shown to the user.
3920         (appt-disp-window): Disable undo explicitly now that the leading space
3921         is gone.
3923         * simple.el (activate-mark): New function.
3924         (set-mark-command): Use it with region-active-p to clean up the code.
3925         (exchange-point-and-mark): Invert the meaning of C-u when
3926         transient-mark-mode is active.
3928         * dired-aux.el (dired-create-files): Use dolist.
3930         * bindings.el (mode-line-change-eol): Use with-selected-window.
3932         * apropos.el (apropos-command): Include macros.
3934 2008-03-26  Glenn Morris  <rgm@gnu.org>
3936         * calendar/cal-bahai.el: Require calendar, not cal-julian.
3937         (calendar-bahai-epoch): Doc fix.
3939         * calendar/cal-china.el: Explicitly require calendar.
3941         * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
3942         Require calendar rather than cal-julian.
3943         Autoload calendar-absolute-from-julian.
3944         * calendar/cal-coptic.el (coptic-calendar-epoch):
3945         * calendar/cal-islam.el (calendar-islamic-epoch):
3946         * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
3948         * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
3950         * calendar/cal-dst.el: Don't require cal-persia.
3951         (calendar-absolute-from-persian): Autoload it.
3952         (dst-adjust-time): Doc fix.
3954         * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
3955         cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
3956         calendar.
3958         * calendar/cal-menu.el: Require calendar rather than declaring
3959         functions.
3960         * calendar/calendar.el: Provide calendar before requiring cal-menu.
3962         * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
3963         calendar-after-frame-setup-hooks.  Update callers, make old name an
3964         obsolete alias.  Doc fix.
3965         (calendar-frame-1): Doc fix.
3967         * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
3969         * calendar/calendar.el (oriental-holidays, solar-holidays):
3970         * calendar/holidays.el (list-holidays): Assume atan always bound.
3972         * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
3973         Explicitly require calendar, not cal-julian.
3974         * calendar/lunar.el: Explicitly require cal-dst.
3976 2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3978         * autorevert.el (auto-revert-buffers): Use buffer-live-p.
3980         * help-fns.el (describe-function-1, describe-variable): If no
3981         replacement is provided, don't print "use nil instead".
3983 2008-03-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3985         * proced.el: New file.
3987 2008-03-25  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
3989         * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
3991 2008-03-25  Juri Linkov  <juri@jurta.org>
3993         * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
3994         in battery-mode-line-format.
3996         * bindings.el (minibuffer-local-map): For the command
3997         file-cache-minibuffer-complete replace keymap minibuffer-local-map
3998         with map which is already locally bound to minibuffer-local-map.
4000 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4002         * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
4003         Remove `sort-first' argument.
4005         * subr.el (redisplay-end-trigger-functions)
4006         (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
4007         (process-filter-multibyte-p, set-process-filter-multibyte):
4008         Mark as obsolete.
4010 2008-03-25  Juanma Barranquero  <lekktu@gmail.com>
4012         * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
4013         bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
4014         use the LOCAL arg of `add-hook'.
4015         (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
4016         Remove spurious * from defcustom docstrings.
4017         (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
4018         Fix typos in messages.
4019         (reb-mode-buffer-p): New function.
4020         (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'.  Use `when'.
4021         (top, reb-show-subexp, reb-auto-update, reb-auto-update)
4022         (reb-delete-overlays, reb-cook-regexp, reb-update-regexp)
4023         (reb-update-overlays): Use `unless', `when'.
4024         (re-builder-unload-function): New function.
4026 2008-03-25  Dan Nicolaescu  <dann@ics.uci.edu>
4028         * vc-hooks.el (vc-state): Add documentation for 'missing.
4030 2008-03-25  Wilson Snyder  <wsnyder@wsnyder.org>
4032         * progmodes/verilog-mode.el (verilog-auto-output)
4033         (verilog-auto-input, verilog-auto-inout, verilog-auto)
4034         (verilog-delete-auto): Add optional regular expression to
4035         AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
4036         (verilog-signals-matching-regexp): New internal function for
4037         signal matching.
4039 2008-03-25  Johan Bockgård  <bojohan@gnu.org>
4041         * info.el (Info-isearch-search): Always return point.
4043 2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4045         * diff-mode.el (diff-remembered-defdir): New var.
4046         (diff-find-file-name): Use it to flush diff-remembered-files-alist.
4048 2008-03-25  Glenn Morris  <rgm@gnu.org>
4050         * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
4051         calendar-bahai-prompt-for-date.  Update callers, make old name an
4052         obsolete alias.  Doc fix.
4053         * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
4054         coptic-prompt-for-date.  Update callers, make old name an
4055         obsolete alias.  Doc fix.
4056         * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
4057         calendar-hebrew-prompt-for-date.  Update callers.  Doc fix.
4058         * calendar/cal-islam.el (calendar-islamic-read-date): New name for
4059         calendar-islamic-prompt-for-date.  Update callers.  Doc fix.
4060         * calendar/cal-iso.el (calendar-iso-read-date): New name for
4061         calendar-iso-read-args.  Update callers, make old name an obsolete
4062         alias.
4063         * calendar/cal-persia.el (calendar-persian-read-date): New name for
4064         persian-prompt-for-date.  Update callers, make old name an
4065         obsolete alias.  Doc fix.  Move definition before use.
4067         * calendar/cal-x.el (diary-frame-parameters)
4068         (calendar-frame-parameters, calendar-and-diary-frame-parameters):
4069         (calendar-frame-1): Doc fixes.
4070         (make-fancy-diary-buffer): Remove declaration.
4071         (calendar-dedicate-diary): Replace call to deleted function
4072         make-fancy-diary-buffer.
4073         (calendar-frame-setup): New function.
4074         (calendar-one-frame-setup, calendar-only-one-frame-setup)
4075         (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
4076         work, and mark as obsolete.
4077         (special-display-buffer-names): Don't mess with this; it's not our
4078         business.
4079         (cal-x-load-hook): Defvar it, and mark as obsolete.
4081         * calendar/calendar.el (calendar-remove-frame-by-deleting):
4082         Default to t.  Add to 'calendar group.
4083         (calendar): Doc fix.  Use calendar-frame-setup.
4084         (calendar-basic-setup): Doc fix.  Add optional NODISPLAY argument.
4085         (generate-calendar-window): Doc fix.
4087 2008-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4089         * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
4091 2008-03-24  Drew Adams  <drew.adams@oracle.com>
4093         * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
4094         New variables.
4095         (finder-mode): Use finder-mode-syntax-table.  Set font-lock-defaults.
4096         (finder-exit): Ignore errors rather than avoiding them.
4097         Kill *Finder-package* buffer also.
4099 2008-03-24  Andreas Schwab  <schwab@suse.de>
4101         * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
4103 2008-03-24  Dan Nicolaescu  <dann@ics.uci.edu>
4105         * vc-hg.el (vc-hg-after-dir-status):
4106         * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
4108         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
4109         Detect removed files.
4111         * vc.el (vc-status-printer): Use a different face for missing files.
4112         (vc-status-hide-up-to-date): Rename from
4113         vc-status-remove-up-to-date.  Update all callers.
4114         (vc-status-mode-map): Bind C-m.
4116 2008-03-24  Alexandre Julliard  <julliard@winehq.org>
4118         * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
4119         code ...
4120         (vc-git--state-code): ... to this new function.
4121         (vc-git-state): Use it.
4123 2008-03-24  Trent Buck  <trentbuck@gmail.com>  (tiny change)
4125         * textmodes/remember.el (remember-mail-date)
4126         (remember-store-in-mailbox): Write date and From line in such a
4127         way that Mutt can read it.
4129 2008-03-23  Chong Yidong  <cyd@stupidchicken.com>
4131         * simple.el (transient-mark-mode): Turn on by default.
4133 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
4135         * vc-bzr.el (vc-bzr-state): Return 'removed for removed files and
4136         'unregistered for unregistered files.
4138         * vc-hg.el (vc-hg-state): Return 'removed for removed files.
4140         * bindings.el (standard-mode-line-modes): Avoid duplicating a string.
4142         * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
4143         subdirectories.
4145         * vc.el (vc-status-prepare-status-buffer): Fix thinko.
4146         (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
4147         Add :enable for vc-status-refresh.
4148         (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
4149         (vc-status-tool-bar-map): Add binding for
4150         vc-status-kill-dir-status-process.
4151         Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
4152         (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
4153         Reset vc-status-process-buffer.
4154         (vc-status-refresh): Don't run two refreshes at a time.
4155         (vc-status): If the buffer is already in vc-status-mode only refresh.
4156         (vc-status-mark-buffer-changed): Add an optional file parameter.
4157         (vc-resynch-buffer): Use it.
4158         (vc-delete-file): Expand the file name before using it.
4159         Be careful to not create a new buffer with the old file contents.
4160         Update the VC state after performing the operation.
4162 2008-03-23  Andreas Schwab  <schwab@suse.de>
4164         * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
4165         Fix radio button condition.
4166         [box]: Likewise.
4167         [customize]: Add radio button.
4169 2008-03-23  Jay Belanger  <jay.p.belanger@gmail.com>
4171         * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
4172         (calc-user-parse-tables, calc-gnuplot-default-device)
4173         (calc-gnuplot-default-output, calc-gnuplot-print-device)
4174         (calc-gnuplot-print-output, calc-gnuplot-geometry)
4175         (calc-graph-default-resolution, calc-graph-default-resolution-3d)
4176         (calc-invocation-macro, calc-trail-pointer, calc-trail-overlay)
4177         (calc-undo-list, calc-redo-list, calc-main-buffer)
4178         (calc-trail-buffer, calc-why, calc-last-kill, calc-dollar-values)
4179         (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
4180         (calc-said-hello, calc-executing-macro, calc-any-selections)
4181         (calc-help-phase, calc-full-help-flag, calc-refresh-count)
4182         (calc-display-dirty, calc-embedded-info, calc-embedded-active)
4183         (calc-standalone-flag, var-EvalRules, math-expr-function-mapping)
4184         (math-expr-variable-mapping, calc-mode-map, calc-digit-map)
4185         (calc-dispatch-map, calc-do-dispatch, calc-read-key-sequence)
4186         (calc-create-buffer, calc-quit): Add docstrings.
4188 2008-03-23  Juanma Barranquero  <lekktu@gmail.com>
4190         * makefile.w32-in (WINS_ALMOST): Add org.
4192 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
4194         * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-dir-status):
4195         New functions to implement vc-status support.
4197 2008-03-22  Dan Nicolaescu  <dann@ics.uci.edu>
4199         * vc.el (vc-status-prepare-status-buffer): New function.
4200         (vc-status): Use it.
4202         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where
4203         appropriate.
4205 2008-03-22  Alexandre Julliard  <julliard@winehq.org>
4207         * vc-git.el (vc-git--empty-db-p)
4208         (vc-git-after-dir-status-stage1-empty-db): New functions.
4209         (vc-git-dir-status, vc-git-after-dir-status-stage1, vc-git-state):
4210         Add support for empty repositories.
4212 2008-03-22  Dan Nicolaescu  <dann@ics.uci.edu>
4214         * vc-git.el (vc-git-annotate-extract-revision-at-line):
4215         Allow "^" in a version name.
4217         * vc-mtn.el (vc-mtn-state): Support the added state.
4219 2008-03-22  Carsten Dominik  <dominik@science.uva.nl>
4221         * org: New directory for Org-mode.
4223         * org/org-export-latex.el: Moved from lisp/texmodes.
4225         * org/org-irc.el: Moved from lisp/texmodes.
4227         * org/org-mac-message.el: Moved from lisp/texmodes.
4229         * org/org-mouse.el: Moved from lisp/texmodes.
4231         * org/org-publish.el: Moved from lisp/texmodes.
4233 2008-03-21  Juri Linkov  <juri@jurta.org>
4235         * comint.el (comint-dynamic-simple-complete):
4236         Use variable `stub' for the second arg `common-substring'
4237         of `comint-dynamic-list-completions'.
4238         (comint-dynamic-list-filename-completions):
4239         Use variable `filenondir' for the second arg `common-substring'
4240         of `comint-dynamic-list-completions'.
4241         (comint-dynamic-list-completions): Add new optional arg
4242         `common-substring'.  Add `common-substring' as the second arg of
4243         the call to `display-completion-list'.  Doc fix.
4245         * comint.el (comint-dynamic-complete-as-filename)
4246         (comint-dynamic-list-filename-completions)
4247         (comint-dynamic-simple-complete): Use `minibuffer-message'
4248         to display message "No completions of %s" when a command
4249         is called in the minibuffer.
4250         (comint-dynamic-simple-complete): Don't display other
4251         completion messages when a command is called in the minibuffer.
4252         (comint-dynamic-list-completions): Use `minibuffer-message'
4253         to display message " [Type space to flush ...]" when a command
4254         is called in the minibuffer.
4256         * shell.el (shell-dynamic-complete-command)
4257         (shell-dynamic-complete-environment-variable): Don't display
4258         completion messages when command is called in the minibuffer.
4260         * emacs-lisp/lisp.el (lisp-complete-symbol):
4261         Use `minibuffer-message' to display message "No completions of %s"
4262         when this command is called in the minibuffer.
4264         * bindings.el (standard-mode-line-modes): Put special help-echo
4265         tooltip on recursive edit %[ %] mode-line constructs.
4267         * dabbrev.el (debug-ignored-errors): Remove $ from the end of
4268         "^No dynamic expansion for .* found$" to allow error messages like
4269         "No dynamic expansion for \"%s\" found in this-buffer".
4271 2008-03-21  Michael Albinus  <michael.albinus@gmx.de>
4273         * net/tramp.el (tramp-methods): Fix tramp-copy-args of "pscp" and
4274         "psftp".
4276 2008-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4278         * vc-hooks.el (vc-default-mode-line-string): Add case for added files.
4279         * vc.el (vc-default-dired-state-info): Use just "modified".
4280         * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'.
4281         (vc-cvs-mode-line-string): Make use of the better default.
4282         (vc-cvs-parse-entry): Use the new `added'.
4283         (vc-cvs-dired-state-info): Remove.
4284         * vc-svn.el (vc-svn-dired-state-info): Remove.
4285         * vc-hg.el (vc-hg-dired-state-info): Remove.
4286         * vc-git.el (vc-git-dired-state-info): Remove.
4288 2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
4290         * vc-git.el (vc-git-status-result): New variable.
4291         (vc-git-dir-status): Split out ...
4292         (vc-git-after-dir-status-stage1, vc-git-after-dir-status-stage2):
4293         ... these new functions and work asynchronously.
4295 2008-03-21  Alexandre Julliard  <julliard@winehq.org>
4297         * vc-git.el (vc-git-after-dir-status): Remove.
4298         (vc-git-dired-state-info): Reimplement.
4300 2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
4302         * replace.el (occur-mode-map): Add :help.
4304         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entry
4305         for disassemble.
4307         * vc.el (vc-status-mark-buffer-changed): Better deal with files in
4308         the 'added state.
4309         (vc-status-remove-up-to-date): New function.
4310         (vc-status-mode-map, vc-status-menu-map): Bind it.
4311         (vc-status-printer): Use a different face up-to-date files.
4312         (vc-resynch-buffer): Update the vc-status buffer if it exists.
4313         (Todo): Remove solved entries.
4315         * vc-hg.el (vc-hg-state):
4316         * vc-git.el (vc-git-state):
4317         * vc-cvs.el (vc-cvs-parse-status):
4318         * vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
4319         state.
4321 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4323         * progmodes/compile.el (compile):
4324         * progmodes/grep.el (grep, grep-find): Use read-shell-command.
4326         * simple.el (minibuffer-local-shell-command-map): New var.
4327         (minibuffer-complete-shell-command, read-shell-command): New funs.
4328         (shell-command, shell-command-on-region): Use them.
4330 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
4332         * vc.el (vc-status-mark-buffer-changed): New function to implement
4333         updating of the *vc-status* buffer when a buffer is saved.
4334         (vc-status-mode): Use it for after-change-hook.
4335         (vc-add-to-vc-status-buffer): Rename to ...
4336         (vc-status-add-entry): ... this.
4337         (Todo): Add new entry.
4339 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4341         * sort.el (sort-reorder-buffer): Preserve the buffer's multibyteness.
4343 2008-03-20  Juanma Barranquero  <lekktu@gmail.com>
4345         * icomplete.el (icomplete-prospects-length, icomplete-max-delay-chars)
4346         (icomplete-show-key-bindings, icomplete-minibuffer-setup-hook):
4347         Remove spurious * from defcustom docstrings.
4348         (icomplete-compute-delay): Fix docstring and remove spurious *.
4349         (icomplete-delay-completions-threshold): Fix typo in docstring and
4350         remove spurious *.
4351         (icomplete-completions): While collecting the list of prospective
4352         candidates, don't overshoot `icomplete-prospects-length'.
4354 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
4356         * textmodes/refbib.el:
4357         * textmodes/reftex.el:
4358         * textmodes/reftex-global.el:
4359         * textmodes/reftex-vars.el:
4360         * textmodes/reftex-toc.el: Don't use eval-and-compile for byte
4361         compiler pacifying defvars.
4362         (reftex-toc-mode): Only make zmacs-regions local on XEmacs.
4363         * textmodes/reftex-index.el (zmacs-regions): Remove pacifier,
4364         not needed.
4366 2008-03-20  Wilson Snyder  <wsnyder@wsnyder.org>
4368         * progmodes/verilog-mode.el (verilog-easy-menu-filter): New function.
4369         (verilog-stmt-menu, verilog-menu): Add :help and filter it.
4370         (verilog-customize, verilog-font-customize)
4371         (electric-verilog-backward-sexp, electric-verilog-forward-sexp)
4372         (verilog-mode): Update documentation strings to match tool tips.
4373         (verilog-auto-search-do, verilog-auto-re-search-do)
4374         (verilog-skip-forward-comment-or-string): Fix verilog-auto
4375         expansion when a .* appears inside a string.
4376         (verilog-re-search-forward, verilog-re-search-backward):
4377         Add comment to recall how this works.
4378         (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including genvars.
4380 2008-03-20  Glenn Morris  <rgm@gnu.org>
4382         * calendar/calendar.el (calendar-other-dates): New function.
4383         (calendar-print-other-dates): Use calendar-other-dates.
4384         * calendar/cal-menu.el (calendar-other-dates): Declare it, and removes
4385         the declarations it replaces.
4386         (calendar-mouse-print-dates): Use calendar-other-dates.
4388         * calendar/cal-bahai.el (calendar-bahai-leap-year-p)
4389         (calendar-bahai-leap-base, calendar-bahai-from-absolute): Doc fixes.
4390         (calendar-absolute-from-bahai): Fix the leap-year case.
4391         (calendar-bahai-from-absolute): Re-use the Gregorian month.
4392         (calendar-bahai-date-string, calendar-bahai-print-date):
4393         Handle pre-Bahai dates.
4395         * calendar/cal-china.el (chinese-calendar-celestial-stem)
4396         (chinese-calendar-terrestrial-branch): Make defcustoms.
4398         * calendar/cal-menu.el (calendar-mouse-holidays): Re-use the title.
4399         (calendar-mouse-view-diary-entries): Use or.
4400         (calendar-mouse-chinese-date): Remove unused command.
4401         (cal-menu-load-hook): Mark as obsolete.
4403         * calendar/solar.el (calendar-location-name, calendar-latitude)
4404         (calendar-longitude, solar-arctan, sunrise-sunset)
4405         (solar-mean-equinoxes/solstices): Use the appropriate equality test.
4407 2008-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
4409         * calc/calc.el: Remove outdated comments.
4410         (defcalcmodevar, calc-mode-var-list-restore-default-values)
4411         (calc-mode-var-list-restore-saved-values, calc-autorange-units):
4412         Add docstrings.
4414 2008-03-19  Jason Rumney  <jasonr@gnu.org>
4416         * w32-fns.el (x-alternatives-map): Add S-tab mapping.
4418 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
4420         * net/tls.el (open-tls-stream): Reindent.
4422 2008-03-19  Michael Albinus  <michael.albinus@gmx.de>
4424         * net/tramp.el (tramp-let-maybe): Removed.
4425         (tramp-drop-volume-letter): Don't use `replace-regexp-in-string'.
4426         It does not exist under XEmacs.
4427         (tramp-handle-file-truename, tramp-handle-expand-file-name)
4428         (tramp-completion-file-name-handler): Let-bind
4429         `directory-sep-char'.
4431         * net/tramp-fish.el (tramp-fish-handle-expand-file-name): Let-bind
4432         `directory-sep-char'.
4434 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4436         * help-fns.el (describe-function-1): Don't signal "missing arglist"
4437         for autoloaded keymaps.
4439         * progmodes/verilog-mode.el (verilog-syntax-ppss): New function.
4440         (electric-verilog-terminate-line, verilog-in-struct-region-p)
4441         (verilog-backward-ws&directives, verilog-forward-ws&directives)
4442         (verilog-in-comment-p, verilog-in-star-comment-p)
4443         (verilog-in-slash-comment-p, verilog-skip-backward-comments)
4444         (verilog-parenthesis-depth, verilog-skip-backward-comment-or-string)
4445         (verilog-skip-forward-comment-or-string, verilog-in-paren)
4446         (verilog-skip-forward-comment-p): Use it.
4448 2008-03-19  Juanma Barranquero  <lekktu@gmail.com>
4450         * textmodes/org.el (org-link-store, org-link-follow, org-latex)
4451         (org-remember-templates, org-time-stamp-rounding-minutes)
4452         (org-back-over-empty-lines, org-find-base-buffer-visiting)
4453         (org-columns-new): Fix typos in docstrings.
4455 2008-03-19  Glenn Morris  <rgm@gnu.org>
4457         * net/tramp.el (tramp-drop-volume-letter): Evaluate when compiling.
4458         (tramp-handle-shell-command): Use condition-case rather than
4459         ignore-errors.
4461 2008-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
4463         * diff-mode.el (diff-header): Make the color louder.
4464         (diff-refine-change): Tone the color down.
4466 2008-03-19  Juanma Barranquero  <lekktu@gmail.com>
4468         * descr-text.el (describe-char): When `describe-char-unidata-list'
4469         is set to show all properties, list them in the right order.
4471 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4473         * international/mule.el (load-with-code-conversion): Avoid setting
4474         default-enable-multibyte-characters.
4476 2008-03-19  Gustav Hållberg  <gustav@virtutech.com>  (tiny change)
4478         * vc.el (vc-annotate-background): Fix custom type.
4480 2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4482         * descr-text.el (describe-char-unidata-list): Allow specifying
4483         just all properties.
4484         (describe-char): Handle that new value.
4486         * emulation/cua-base.el (cua-paste): Signal an error in read-only buf.
4488 2008-03-18  Tassilo Horn  <tassilo@member.fsf.org>
4490         * doc-view.el (doc-view-initiate-display): Use doc-view-doc-type
4491         instead of file name extension to make docs with uncommon
4492         extensions work.
4494 2008-03-18  Tassilo Horn  <tassilo@member.fsf.org>
4496         * doc-view.el (require): Require cl at compile time because
4497         `assert' needs it.
4499 2008-03-18  Glenn Morris  <rgm@gnu.org>
4501         * calendar/calendar.el (initial-calendar-window-hook)
4502         (today-visible-calendar-hook): Doc fixes.
4504 2008-03-17  Michael Albinus  <michael.albinus@gmx.de>
4506         * net/tramp.el (tramp-root-regexp): Simplify.
4507         (tramp-completion-file-name-regexp-separate): Don't insist on
4508         leading "[".  This prevents method or user or host completion.
4509         (tramp-let-maybe): Autoload it.
4510         (tramp-drop-volume-letter): Don't autoload.  When not on W32, it
4511         is an alias for `identity'.
4512         (tramp-handle-write-region): Protect `last-coding-system-used'
4513         over the trailing statements.
4514         (tramp-completion-file-name-handler-post-function): Remove.
4515         (tramp-completion-file-name-handler): Let-bind `directory-sep-char'
4516         instead of calling `tramp-drop-volume-letter'.
4518         * net/tramp.el:
4519         * net/tramp-uu.el:
4520         * net/trampver.el: Move coding cookie at the end.
4522 2008-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4524         * net/tramp.el (tramp-completion-mode-p): Don't use char-equal for
4525         elements which may be something else than characters.
4527 2008-03-17  Dan Nicolaescu  <dann@ics.uci.edu>
4529         * vc-bzr.el (vc-bzr-dir-status, vc-bzr-after-dir-status):
4530         New functions to implement vc-status support.
4532         * vc.el (vc-default-extra-status-menu)
4533         (vc-add-to-vc-status-buffer): New functions.
4535         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
4536         for eldoc and ielm.
4538 2008-03-17  Glenn Morris  <rgm@gnu.org>
4540         * calendar/cal-x.el (diary-frame-parameters)
4541         (calendar-frame-parameters, calendar-and-diary-frame-parameters):
4542         Fix custom type; add options.
4543         (calendar-frame, diary-frame): Doc fixes.
4544         (calendar-dedicate-diary, calendar-frame-1): Extract common code into
4545         new functions.
4546         (calendar-one-frame-setup, calendar-two-frame-setup): Doc fixes.
4547         Use calendar-frame-1 and calendar-dedicate-diary.
4548         (calendar-one-frame-setup): Also handle only-one-frame case.
4549         (calendar-only-one-frame-setup): Doc fix.  Just call
4550         calendar-one-frame-setup.
4552         * calendar/diary-lib.el: Re-order some definitions before their use.
4553         (nongregorian-diary-listing-hook, nongregorian-diary-marking-hook)
4554         (diary-list-entries): Doc fixes.
4555         (make-fancy-diary-display): Remove function.
4557         * calendar/calendar.el (calendar-today-marker)
4558         (initial-calendar-window-hook, today-visible-calendar-hook)
4559         (today-invisible-calendar-hook, diary-file, calendar-basic-setup):
4560         (calendar-star-date, calendar-mark-today): Doc fixes.
4561         (today-visible-calendar-hook): Add options.
4562         (calendar-in-read-only-buffer): New macro.
4563         (calendar-basic-setup): Adapt for change in calendar-read-date.
4564         Place holiday let inside if.
4565         (calendar-day-name-array, calendar-month-name-array): Make defcustoms.
4566         (calendar-read-date): Set day to 1 rather than nil in the NODAY case.
4567         (calendar-print-other-dates): Use one let rather than many.
4569         * calendar/calendar.el (calendar-in-read-only-buffer): New macro.
4570         (calendar-print-other-dates):
4571         * calendar/cal-hebrew.el (list-yahrzeit-dates):
4572         * calendar/diary-lib.el (simple-diary-display, fancy-diary-display):
4573         * calendar/holidays.el (calendar-list-holidays, list-holidays)
4574         (calendar-cursor-holidays):
4575         * calendar/lunar.el (calendar-phases-of-moon): Use
4576         calendar-in-read-only-buffer to replace previous code and disable undo.
4578 2008-03-16  Juri Linkov  <juri@jurta.org>
4580         * isearch.el (isearch-edit-string): Use search-ring-yank-pointer
4581         and regexp-search-ring-yank-pointer for the HISTPOS argument of
4582         read-from-minibuffer to provide the correct initial minibuffer
4583         history position in isearch-edit-string when it is called from
4584         isearch-ring-adjust.
4586         * menu-bar.el (kill-this-buffer): Use menu-bar-non-minibuffer-window-p
4587         to check if the current buffer is the minibuffer, and in this case
4588         call abort-recursive-edit to kill the minibuffer.  Doc fix.
4589         (kill-this-buffer-enabled-p): Allow this function to return non-nil
4590         when the current buffer is the minibuffer.
4592         * simple.el (goto-line): Leave mark at previous position.  Doc fix.
4594 2008-03-16  Tassilo Horn  <tassilo@member.fsf.org>
4596         * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
4597         Use non-nil PARENTS attribute of make-directory instead of
4598         explicitly checking existence the current cache directory.
4600 2008-03-16  Daiki Ueno  <ueno@unixuser.org>
4602         * epa-file.el (epa-file-select-keys): Fix bug with C-x C-s after
4603         M-x epa-file-select-keys.
4605 2008-03-16  Kenichi Handa  <handa@m17n.org>
4607         * international/mule.el (auto-coding-alist):
4608         Use no-conversion-multibyte for archive files.
4610 2008-03-16  Glenn Morris  <rgm@gnu.org>
4612         * calendar/diary-lib.el (calendar-mark-complex, calendar-mark-1):
4613         New functions.
4614         * calendar/cal-bahai.el (calendar-mark-1): Autoload it.
4615         (calendar-bahai-mark-date-pattern): Add optional argument `color'.
4616         Use calendar-mark-1.
4617         * calendar/cal-hebrew.el (calendar-mark-complex): Autoload it.
4618         (mark-hebrew-calendar-date-pattern): Add optional argument `color'.
4619         Use calendar-mark-complex.
4620         * calendar/cal-islam.el (calendar-mark-1): Autoload it.
4621         (mark-islamic-calendar-date-pattern): Add optional argument `color'.
4622         Use calendar-mark-1.
4624         * calendar/calendar.el (calendar-mod): Remove.
4625         * calendar/cal-china.el (calendar-chinese-from-absolute)
4626         (calendar-chinese-date-string): Expand calendar-mod calls.
4627         * calendar/cal-mayan.el (calendar-mayan-tzolkin-from-absolute):
4628         Expand calendar-mod calls.
4630         * calendar/cal-bahai.el (calendar-bahai-date-string): Use a single let.
4631         (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
4632         (diary-bahai-insert-yearly-entry): Use let rather than let*.
4633         Move obsolete aliases after the functions that replaced them.
4635         * calendar/cal-hebrew.el (calendar-absolute-from-hebrew)
4636         (hebrew-calendar-yahrzeit, insert-hebrew-diary-entry)
4637         (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry):
4638         Use let rather than let*.
4639         (calendar-hebrew-prompt-for-date): New function.
4640         (calendar-goto-hebrew-date): Use calendar-hebrew-prompt-for-date.
4641         (holiday-tisha-b-av-etc): Use unless, let.
4643         * calendar/cal-islam.el (calendar-islamic-prompt-for-date): New func.
4644         (calendar-goto-islamic-date): Use calendar-islamic-prompt-for-date.
4646         * calendar/cal-mayan.el (calendar-mayan-haab-to-string): Simplify.
4648         * calendar/calendar.el (calendar-for-loop): Add indent spec.
4650         * calendar/diary-lib.el (diary-remind-message, mark-sexp-diary-entries)
4651         (list-sexp-diary-entries, diary-font-lock-sexps): Use format rather
4652         than concat.
4653         (diary): Remove un-needed let.
4654         (view-other-diary-entries): Rename argument.
4655         (diary-list-entries-2): New function.
4656         (diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
4657         (print-diary-entries): Use unless.
4658         (diary-mark-entries-1): Change argument order, make all but
4659         markfunc optional.  Handle the standard (Gregorian) case.
4660         Use match-string-no-properties.  Handle marks.
4661         (mark-diary-entries): Use diary-mark-entries-1.
4662         (diary-font-lock-keywords-1): New macro.
4663         (diary-font-lock-keywords): Use diary-font-lock-keywords-1.
4665 2008-03-16  Ulf Jasper  <ulf.jasper@web.de>
4667         * icalendar.el (icalendar-version): Increase to 0.18.
4668         (icalendar-export-hidden-diary-entries): New variable.
4669         (icalendar-export-region): Use icalendar-export-hidden-diary-entries.
4670         In case of error, insert full error-val.
4671         (icalendar-first-weekday-of-year): Remove `offset' argument.  Doc fix.
4672         Use calendar-day-of-week.  Return the day number.
4673         (icalendar--convert-weekly-to-ical): Use funcall rather than apply.
4675 2008-03-16  Craig Markwardt  <Craig.Markwardt@nasa.gov>
4677         * icalendar.el (icalendar-recurring-start-year): New variable.
4678         (icalendar--diarytime-to-isotime): Fix treatment of 12:00pm - 12:59pm.
4679         (icalendar-export-region): Ignore hidden diary entries.
4680         (icalendar--convert-ordinary-to-ical): Fix case where event
4681         spans across midnight boundary.
4682         (icalendar-first-weekday-of-year): New function.
4683         (icalendar--convert-weekly-to-ical): Allow user-selectable start
4684         year for recurring events (Mozilla calendars do not propagate
4685         recurring events forever, so year 2000 start date was not working).
4686         (icalendar--convert-yearly-to-ical): Remove extra spaces in
4687         formatting of BYMONTH and BYMONTHDAY (not allowed by ical spec).
4689 2008-03-15  Michael Albinus  <michael.albinus@gmx.de>
4691         * net/tramp.el (tramp-root-regexp): New defconst.
4692         (tramp-completion-file-name-regexp-unified)
4693         (tramp-completion-file-name-regexp-separate)
4694         (tramp-completion-file-name-regexp-url): Use it.
4695         (tramp-do-copy-or-rename-file-via-buffer):
4696         Set `enable-multibyte-characters' to nil.  Set `jka-compr-inhibit' to
4697         t for `insert-file-contents-literally'.
4698         (tramp-drop-volume-letter): Rewrite, using `tramp-root-regexp'.
4699         Autoload it.
4700         (tramp-completion-file-name-handler-post-function): New defconst.
4701         (tramp-completion-file-name-handler): Use it.
4702         (tramp-maybe-open-connection): Update calls to
4703         `tramp-flush-connection-property' for removed 2nd argument.
4705 2008-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4707         * vc-bzr.el (vc-bzr-diff): Use a faster invocation when possible.
4708         (vc-bzr-complete-with-prefix, vc-bzr-revision-completion-table):
4709         New functions.
4711 2008-03-15  Glenn Morris  <rgm@gnu.org>
4713         * calendar/diary-lib.el (diary-list-entries-1, diary-mark-entries-1):
4714         New functions.
4715         * calendar/cal-bahai.el (number, original-date, add-to-diary-list)
4716         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
4717         (diary-list-entries-1, diary-mark-entries-1): Autoload.
4718         (diary-bahai-list-entries): Use diary-list-entries-1.
4719         (diary-bahai-mark-entries): Doc fix.  Use diary-mark-entries-1.
4720         * calendar/cal-hebrew.el (number, original-date, add-to-diary-list)
4721         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
4722         (diary-list-entries-1, diary-mark-entries-1): Autoload.
4723         (list-hebrew-diary-entries): Use diary-list-entries-1.
4724         (mark-hebrew-diary-entries): Doc fix.  Use diary-mark-entries-1.
4725         * calendar/cal-islam.el (number, original-date, add-to-diary-list)
4726         (diary-name-pattern, mark-calendar-days-named): Remove declarations.
4727         (diary-list-entries-1, diary-mark-entries-1): Autoload.
4728         (list-islamic-diary-entries): Use diary-list-entries-1.
4729         (mark-islamic-diary-entries): Doc fix.  Use diary-mark-entries-1.
4731         * calendar/appt.el (appt-check, appt-delete, appt-make-list): Use caar.
4733         * calendar/cal-bahai.el (calendar-bahai-epoch): Doc fix.
4735         * calendar/cal-china.el (number-chinese-months)
4736         (calendar-chinese-from-absolute): Use nth, caar.
4738         * calendar/cal-coptic.el (coptic-calendar-epoch): Doc fix.
4740         * calendar/cal-french.el (french-calendar-accents): Doc fix.
4742         * calendar/cal-hebrew.el (calendar-hebrew-month-name-array-common-year)
4743         (calendar-hebrew-month-name-array-leap-year)
4744         (hebrew-calendar-parashiot-names): Make constants.
4745         (diary-parasha): Move definition after constants it uses.
4747         * calendar/cal-html.el (cal-html-insert-link-yearpage)
4748         (cal-html-htmlify-list): Doc fix.
4749         (cal-html-htmlify-entry): Use nth.
4751         * calendar/cal-islam.el (calendar-islamic-month-name-array)
4752         (calendar-islamic-epoch): Make constants.
4753         (calendar-islamic-epoch): Doc fix.
4755         * calendar/cal-menu.el (cal-menu-goto-menu): Use "Go To".
4757         * calendar/cal-tex.el (cal-tex-hook, cal-tex-insert-preamble)
4758         (cal-tex-month-name): Doc fix.
4759         (cal-tex-last-blank-p): Use zerop.
4761         * calendar/calendar.el (european-calendar-style, calendar-for-loop)
4762         (calendar-sum, calendar-insert-indented, mouse-calendar-other-month)
4763         (calendar-cursor-to-date): Doc fix.
4764         (hebrew-holidays-1, hebrew-holidays-4): Simplify.
4765         (extract-calendar-day, extract-calendar-year): Use cadr, nth.
4766         (calendar-day-number): Use when.
4767         (generate-calendar-month): Use dotimes.
4768         (exit-calendar, calendar-print-other-dates): Use let rather than let*.
4769         (calendar-set-mark): Reverse conditional.
4770         (calendar-make-alist): Move definition before use.
4772         * calendar/diary-lib.el (diary-face-attrs)
4773         (diary-glob-file-regexp-prefix, diary-selective-display)
4774         (number-of-diary-entries, diary-list-entries, diary-goto-entry):
4775         (list-sexp-diary-entries, diary-date, diary-block, diary-float)
4776         (diary-anniversary, diary-cyclic)
4777         (diary-fancy-font-lock-fontify-region-function): Doc fixes.
4778         (diary-header-line-format): Change wording.
4779         (diary-list-entries): Set `date-start' in let.
4780         (include-other-diary-files, mark-included-diary-files): Use format.
4781         (simple-diary-display, fancy-diary-display): Use cadr, unless.
4782         (mark-diary-entries): Use 1+.
4783         (mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
4784         (mark-calendar-month): Use dotimes.
4786         * calendar/holidays.el (displayed-month, displayed-year):
4787         Move declarations where needed.
4788         (calendar-list-holidays): Doc fix.
4790         * calendar/parse-time.el (parse-time-string): Simplify.
4792         * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
4793         Make constants.
4794         (solar-sunrise-sunset): Rename some local variables for clarity.
4795         (sunrise-sunset): Use zerop.
4796         (solar-mean-equinoxes/solstices): Doc fix.
4798         * calendar/timeclock.el (timeclock-time-to-seconds, timeclock-log-data):
4799         Use nth.
4800         (timeclock-completing-read, timeclock-generate-report): Use zerop.
4801         (timeclock-mean, timeclock-generate-report): Use dolist.
4803         * calendar/todo-mode.el (todo-add-category): Simplify.
4804         (todo-more-important-p, todo-delete-item, todo-file-item):
4805         Use unless, when.
4806         (todo-top-priorities): Use zerop.
4808 2008-03-14  Nick Roberts  <nickrob@snap.net.nz>
4810         * buff-menu.el (list-buffers-noselect): Display buffer name in
4811         tooltip instead of mouse binding when it doesn't fit in the list.
4813 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
4815         * faces.el (xw-defined-colors):
4816         * simple.el (widget-convert, shell-mode): Declare as functions
4817         instead of autoloading.
4819         * abbrev.el:
4820         * button.el:
4821         * cus-face.el:
4822         * ediff-hook.el:
4823         * emacs-lisp/backquote.el:
4824         * emacs-lisp/timer.el:
4825         * facemenu.el:
4826         * faces.el:
4827         * menu-bar.el:
4828         * simple.el:
4829         * subr.el:
4830         * textmodes/fill.el:
4831         * textmodes/paragraphs.el: Remove autoloads, redundant when the
4832         files are preloaded.
4834 2008-03-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4836         * desktop.el (desktop-create-buffer): Don't catch errors if
4837         debug-on-error is set.
4839 2008-03-14  Eli Zaretskii  <eliz@gnu.org>
4841         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4842         ($(lisp)/calendar/diary-loaddefs.el)
4843         ($(lisp)/calendar/hol-loaddefs.el): New targets.
4844         (LOADDEFS): New macro.
4845         (autoloads): Depend on $(LOADDEFS).
4847 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
4849         * font-lock.el (featurep): Remove test, not useful anymore.
4850         (facemenu-keymap): Move key binding ...
4851         * facemenu.el (facemenu-keymap): ... here.
4853         * vc-bzr.el (vc-bzr-print-log): Insert a file marker.  Run the log
4854         for each file in the list.
4855         (vc-bzr-log-view-mode): Recognize the file marker.
4857         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
4858         for checkdoc and profiling.
4860 2008-03-14  Bastien Guerry  <bzg@altern.org>
4862         * textmodes/flyspell.el (nxml-mode): Add the right
4863         `flyspell-mode-predicate'.
4865         * wid-edit.el (link): Use 'mouse-face for :follow-link.
4867 2008-03-14  Glenn Morris  <rgm@gnu.org>
4869         * calendar/solar.el: Reorder so that functions are defined before use.
4870         (displayed-month, displayed-year): Move declarations where needed.
4871         (solar-get-number): Move definition before use.  Use unless.
4872         (solar-equatorial-coordinates): Simplify.
4873         (solar-sunrise-and-sunset): Use let rather than let*.
4874         (solar-longitude, solar-equinoxes-solstices): Use cadr, nth.
4876         * startup.el (command-line-1): Rename -internal-script back to
4877         -scriptload (reverts previous change).
4879         * calendar/cal-bahai.el (calendar-bahai-month-name-array)
4880         (calendar-bahai-leap-base): Add doc strings.
4881         (calendar-bahai-prompt-for-date, calendar-bahai-mark-date-pattern):
4882         Move definition before use.
4883         (calendar-bahai-goto-date, diary-bahai-list-entries): Doc fix.
4884         (diary-bahai-list-entries, diary-bahai-mark-entries): Move some constant
4885         variables outside the loop.  Use dolist.
4886         (holiday-bahai, calendar-bahai-mark-date-pattern): Use unless.
4888         * calendar/cal-china.el: Re-order so that functions are defined before
4889         use.
4890         (displayed-month, displayed-year): Move declarations where needed.
4891         (chinese-calendar-time-zone, calendar-goto-chinese-date): Doc fix.
4892         (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
4893         Add doc strings.
4894         (chinese-year-cache): Recenter on 2010.  Doc fix.
4895         (chinese-year, number-chinese-months, calendar-absolute-from-chinese):
4896         Doc fix.  Simplify.
4897         (chinese-year-cache-init): New function.
4898         (compute-chinese-year, holiday-chinese-new-year)
4899         (calendar-chinese-date-string, calendar-goto-chinese-date)
4900         (make-chinese-month-assoc-list): Use cadr, nth.
4901         (chinese-months): Remove un-needed let.
4903         * calendar/cal-coptic.el (coptic-calendar-month-name-array):
4904         (ethiopic-calendar-month-name-array, ethiopic-name): Add doc strings.
4905         (coptic-prompt-for-date): Move definition before use.
4907         * calendar/cal-dst.el (calendar-time-zone-daylight-rules): Simplify.
4908         (calendar-dst-find-data, calendar-daylight-time-offset)
4909         (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
4910         (calendar-daylight-savings-starts-time)
4911         (calendar-daylight-savings-ends-time): Use cadr, nth.
4913         * calendar/cal-french.el (french-calendar-epoch)
4914         (calendar-goto-french-date): Doc fix.
4915         (french-calendar-month-name-array)
4916         (french-calendar-multibyte-month-name-array)
4917         (french-calendar-day-name-array, french-calendar-special-days-array):
4918         Add doc strings.
4920         * calendar/cal-hebrew.el (displayed-month, displayed-year)
4921         (original-date): Move declarations where needed.
4922         (calendar-goto-hebrew-date, list-hebrew-diary-entries, diary-yahrzeit):
4923         Doc fix.
4924         (list-hebrew-diary-entries, mark-hebrew-diary-entries): Move some
4925         constant variables outside the loop.  Use dolist.
4927         * calendar/cal-islam.el (displayed-month, displayed-year)
4928         (original-date): Move declarations where needed.
4929         (islamic-calendar-day-number): Remove unused local variable `day'.
4930         (calendar-goto-islamic-date): Doc fix.
4931         (holiday-islamic): Use unless.
4932         (list-islamic-diary-entries, mark-islamic-diary-entries): Move some
4933         constant variables outside the loop.  Use dolist.
4934         (mark-islamic-calendar-date-pattern): Move definition before use.
4935         Use unless.
4936         (mark-islamic-diary-entries): Doc fix.
4937         (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
4938         (insert-yearly-islamic-diary-entry): Use let rather than let*.
4940         * calendar/cal-julian.el (calendar-absolute-from-julian):
4941         Move definition before use.  Remove un-needed local `day'.
4942         (calendar-goto-julian-date, calendar-goto-astro-day-number): Doc fix.
4944         * calendar/cal-mayan.el (calendar-mayan-haab-month-name-array)
4945         (calendar-mayan-tzolkin-names-array): Add doc strings.
4946         (calendar-mayan-long-count-from-absolute): Use a single let.
4947         (calendar-string-to-mayan-long-count): Simplify.
4948         (calendar-next-haab-date, calendar-previous-haab-date)
4949         (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
4950         (calendar-previous-calendar-round-date)
4951         (calendar-goto-mayan-long-count-date, calendar-mayan-date-string):
4952         Doc fix.
4953         (calendar-mayan-tzolkin-haab-on-or-before): Use zerop.
4954         (calendar-mayan-date-string, calendar-print-mayan-date)
4955         (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
4956         (calendar-mayan-long-count-common-era): Move definitions before use.
4958         * calendar/cal-menu.el (displayed-year): Move declaration where needed.
4959         (calendar-event-to-date, cal-tex-mouse-week, cal-tex-mouse-week-iso):
4960         Doc fix.
4961         (calendar-mouse-goto-date): Move definition before use.
4963         * calendar/cal-move.el (calendar-cursor-to-nearest-date): Use or, when.
4964         Move definition before use.
4965         (calendar-cursor-to-visible-date): Move definition before use.
4966         (calendar-scroll-left): Use unless and zerop.  Combine lets into one,
4967         and place inside the conditional.
4968         (calendar-forward-day): Simplify.
4969         (calendar-end-of-month): Use unless.
4970         (calendar-goto-day-of-year): Doc fix.
4971         Relocate obsolete aliases after their replacements.
4973         * calendar/cal-persia.el (calendar-goto-persian-date): Doc fix.
4975         * calendar/diary-lib.el (mark-diary-entries): Move some constant
4976         variables outside the diary-date-forms loop.
4978         * calendar/calendar.el (diary-file): Doc fix.
4979         (calendar-buffer-list): Return buffers rather than strings (fixes
4980         previous change).
4981         (hebrew-holidays-4): Fix typo.
4983         * calendar/holidays.el (displayed-month, displayed-year):
4984         Move declarations where needed.
4985         (calendar-holiday-list, calendar-list-holidays)
4986         (holiday-filter-visible-calendar): Move definitions before use.
4987         (list-holidays): Use cadr.
4988         Relocate obsolete aliases after their replacements.
4990         * calendar/lunar.el (date, displayed-month, displayed-year):
4991         Move declarations where needed.
4992         (lunar-phase-list): Move definition after functions it uses.
4993         (calendar-phases-of-moon, diary-phases-of-moon)
4994         (lunar-new-moon-on-or-after): Use cadr, nth.
4995         (lunar-new-moon-on-or-after): Doc fix.
4997         * textmodes/org-irc.el (top-level): CL not required when compiling.
4998         (org-irc-visit-erc): Replace runtime CL functions.
5000         * textmodes/org-publish.el (declare-function): Add compatibility stub.
5001         (org-publish-delete-dups): Declare as function.
5003 2008-03-14  Dan Nicolaescu  <dann@ics.uci.edu>
5005         * vc-bzr.el (vc-bzr-log-view-mode): "." can be part of a revno.
5006         (vc-bzr-show-log-entry): Make regexp match more cases.
5007         (vc-diff-switches-list): Remove autoload, not needed.
5009 2008-03-14  Juri Linkov  <juri@jurta.org>
5011         * isearch.el (isearch-edit-string): Remove one call to
5012         `isearch-push-state' not to push an inconsistent state,
5013         but keep another correct call to `isearch-push-state'.
5014         (isearch-ring-adjust): Call `isearch-push-state' only when
5015         `search-ring-update' is non-nil since `isearch-edit-string'
5016         already pushes its state.
5017         (isearch-message): Improve matching the failed part by checking
5018         if the original message starts with the last successful message.
5020         * dired.el (dired-warn-writable): Rename to `dired-perm-write'.
5021         (dired-perm-write): Rename from `dired-warn-writable'.
5022         Change parent face from `font-lock-warning-face' to
5023         `font-lock-comment-delimiter-face'.
5024         (dired-warn-writable-face): Rename to `dired-perm-write-face'.
5025         (dired-perm-write-face): Rename from `dired-warn-writable-face'.
5026         (dired-font-lock-keywords): Replace `dired-warn-writable-face'
5027         with `dired-perm-write-face'.
5029 2008-03-13  Tassilo Horn  <tassilo@member.fsf.org>
5031         * doc-view.el (doc-view-doc->txt, doc-view-convert-current-doc):
5032         Create cache dir only if it doesn't already exist.
5034 2008-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5036         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
5037         of \ and '.
5039 2008-03-13  Johan Bockgård  <bojohan@gnu.org>
5041         * net/browse-url.el (browse-url-text-xterm):
5042         Unquote browse-url-text-browser.
5044 2008-03-13  Carsten Dominik  <dominik@science.uva.nl>
5046         * textmodes/org-mouse.el: Version number change.
5048         * textmodes/org-publish.el (org-publish-expand-components):
5049         Remove null projects from the list of components.
5050         (org-publish-attachment): Bugfix: handle mandatory argument pub-dir.
5051         Remove unused retrieval of the :publishing-directory property.
5052         (org-publish-file): Bugfix: when using a relative directory as the
5053         publishing directory, convert it to a directory filename.
5054         (org-publish-project): New alias.
5055         (org-publish-get-files): Protect against empty p.
5056         (org-publish-file): Send an error when file is not part of any project.
5057         (org-publish-file): Offer to refresh the list of files in known
5058         project when the current file is not part of any project.
5059         (org-publish-before-export-hook)
5060         (org-publish-after-export-hook): New hooks.
5061         (org-publish-org-to): Use new hooks and kill buffers.
5062         (org-publish-file): Remove the code for killing buffers.
5063         (org-publish-initialize-files-alist): Use interactive.
5064         (org-publish-file): If the publishing function creates a new
5065         buffer, kill it after publishing.
5066         (org-publish-timestamp-filename): Protect ":" in file name path
5067         under windows.
5069         * textmodes/org-export-latex.el (org-export-as-latex): Revert the
5070         change that killed the LaTeX buffer.
5072         * textmodes/org.el (org-ctrl-c-star): Implement a missing branch
5073         in the decision tree.
5074         (org-select-remember-template): Clean the code.
5075         (org-prepare-dblock): Add the extra :content parameter.
5076         (org-write-agenda): New output type ".ics" files.
5077         (org-write-agenda): Call `org-icalendar-verify-function', both for
5078         time stamps and for TODO entries.
5079         (org-agenda-collect-markers, org-create-marker-find-array)
5080         (org-check-agenda-marker-table): New functions.
5081         (org-agenda-marker-table): New variable.
5082         (org-export-as-html): Revert the change that killed the html
5083         buffer.  Side effects first need to be studied carefully.
5084         (org-get-tags-at): Fix the structure of the condition-case statement.
5085         (org-ts-regexp0, org-repeat-re, org-display-custom-time)
5086         (org-timestamp-change): Fix regulear expressions to swallow the
5087         extra character for repeat-shift control.
5088         (org-auto-repeat-maybe): Implement the new repeater mechanisms.
5089         (org-get-legal-level): Alias to `org-get-valid-level'.
5090         (org-dblock-write:clocktable): Add a :link parameter, linking
5091         headlines to their location in the Org agenda files.
5092         (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
5093         throwing an error when getting tags before headlines.
5094         (org-timestamp-change, org-modify-ts-extra)
5095         (org-ts-regexp1): Fix timestamp editing.
5096         (org-agenda-custom-commands-local-options): New constant.
5097         (org-agenda-custom-commands):
5098         Use `org-agenda-custom-commands-local-options' to improve customize
5099         type.  "htmlize": Removed hack to fix face problem with htmlize,
5100         it no longer seem necessary.
5101         (org-follow-link-hook): New hook.
5102         (org-agenda-custom-commands): Add "Component" as a tag for each
5103         item in a command serie.
5104         (org-open-at-point): Run `org-follow-link-hook'.
5105         (org-agenda-schedule): Bugfix: don't display marker type when it
5106         is nil.
5107         (org-store-link): org-irc required.
5108         (org-set-regexps-and-options): Parse the new logging options.
5109         (org-extract-log-state-settings): New function.
5110         (org-todo): Handle the new ways of recording state change stuff.
5111         (org-local-logging): New function.
5112         (org-columns-open-link): Fix bug with opening link in column view.
5113         (org-local-logging): New function
5114         (org-todo): Make sure that LOGGING properties are honoured.
5115         (org-todo-keywords): Improve docstring.
5116         (org-startup-options): Cleanup startup options.
5117         (org-set-regexps-and-options): Process the "!" markers.
5118         (org-todo): Respect the new logging stuff.
5119         (org-log-note-how): New variable.
5120         (org-add-log-maybe): New parameter HOW that defines how logging
5121         should be done and also overrides PURPOSE.  Add a docstring.
5122         (org-add-log-note): Check if we really need to ask for a note.
5123         (org-get-current-options): Digest the new keyword.
5124         (org-agenda-reset-markers): Rename from
5125         `org-agenda-maybe-reset-markers'.  Remove FORCE argument.
5126         (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
5127         function, without force argument.
5128         (org-buffer-property-keys): Bind local variables s and p.
5129         (org-make-tags-matcher): Allow "" to match an empty or
5130         non-existent property value.
5131         (org-export-as-html): Join unsorted lists when they directly
5132         follow each other.  Such lists may be created by headlines that
5133         are converted to lists.
5134         (org-nofm-to-completion): New function.
5135         (org-export-as-html): Use :html-extension instead of
5136         org-export-html-extension.
5137         (org-store-link): Support for links from `rmail-summary-mode'.
5138         (org-columns-new, org-complete, org-set-property): Set the
5139         `include-columns' argument in the call to
5140         `org-buffer-property-keys'.
5141         (org-buffer-property-keys): New argument `include-columns', to
5142         include properties expected by any of the COLUMS formats in the
5143         current buffer.
5144         (org-cleaned-string-for-export): Get rid of drawers first, so that
5145         they will be removed also in the text before the first headline.
5146         (org-clock-report): Show the clocktable when found.
5147         (org-refile): Fix positioning bug when `org-reverse-note-order' is nil.
5148         (org-version): With prefix argument, insert `org-version' at point.
5149         (org-agenda-goto): Recenter the window after finding the target
5150         location, to make sure the correct position will be displayed.
5151         (org-agenda-get-deadlines): Don't scale priority with the warning
5152         period.
5153         (org-insert-heading): Don't break line in the middle of the line.
5154         (org-agenda-get-deadlines): Allow `org-deadline-warning-days' to
5155         be 0.
5156         (org-update-checkbox-count): Revamp to deal with hierarchical
5157         beckboxes.  This was a patch from Miguel A. Figueroa-Villanueva.
5158         (org-remove-timestamp-with-keyword): New function.
5159         (org-schedule, org-deadline):
5160         Use `org-remove-timestamp-with-keyword' to make sure all such time
5161         stamps are removed.
5162         (org-mode): Support for `align'.
5163         (org-agenda-get-deadlines): Make sure priorities increase as the
5164         due date approaches and is passed.
5165         (org-remember-apply-template): Fix problem with tags that
5166         contain "_" or "@".
5167         (org-make-link-regexps): Improve the regular expression for plain links.
5168         (org-agenda-get-closed): List each clocking entry.
5169         (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
5170         (org-special-ctrl-k): New option.
5171         (org-kill-line): New function.
5172         (org-archive-all-done): Fix incorrect number of stars in regexp.
5173         (org-refile-get-location): New function.
5174         (org-refile-goto-last-stored): New function.
5175         (org-global-tags-completion-table): Add the value of org-tag-alist
5176         in each buffer, to make sure that also unused tags will be
5177         available for completion.
5178         (org-columns-edit-value)
5179         (org-columns-next-allowed-value): Only update if not in agenda.
5180         (org-clocktable-steps): New function.
5181         (org-dblock-write:clocktable): Call `org-clocktable-steps'.
5182         (org-archive-subtree): Add the outline tree context as a property.
5183         (org-closest-date): New optional argument `prefer'.
5184         (org-goto-auto-isearch): New option.
5185         (org-goto-map, org-get-location): Implement auto-isearch.
5186         (org-goto-local-auto-isearch-map): New variable.
5187         (org-goto-local-search-forward-headings)
5188         (org-goto-local-auto-isearch): New functions.
5190 2008-03-13  Philip Jackson  <emacs@shellarchive.co.uk>
5192         * textmodes/org-irc.el: New file.
5194 2008-03-13  John Wiegley  <johnw@gnu.org>
5196         * textmodes/org-mac-message.el: New file.
5198 2008-03-13  Dan Nicolaescu  <dann@ics.uci.edu>
5200         * font-lock.el (font-lock-comment-face): Set the foreground for
5201         the light background 8 colors case.
5203 2008-03-13  Glenn Morris  <rgm@gnu.org>
5205         * font-lock.el (lisp-font-lock-keywords-1): Support wider range of
5206         generate-autoload-cookie patterns.
5208         * startup.el (command-line-1): Rename -scriptload to -internal-script.
5210         * Makefile.in ($(lisp)/loaddefs.el): Remove this target.
5211         (MH_E_SRC): Remove variable.
5212         ($(lisp)/mh-e/mh-loaddefs.el): Remove $MH_E_SRC dependency.
5213         Simplify file header.  Use $@ for generated-autoload-file.
5215         * Makefile.in (LOADDEFS): New variable.
5216         (AUTOGENEL): Use $LOADDEFS.
5217         (autoloads): Remove $(lisp)/loaddefs.el dependency; add $LOADDEFS.
5218         ($(lisp)/calendar/cal-loaddefs.el, $(lisp)/calendar/diary-loaddefs.el):
5219         ($(lisp)/calendar/hol-loaddefs.el): New targets.
5220         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5221         * calendar/cal-french.el, calendar/cal-hebrew.el, calendar/cal-html.el:
5222         * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
5223         * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
5224         * calendar/cal-tex.el, calendar/cal-x.el, calendar/diary-lib.el:
5225         * calendar/holidays.el, calendar/lunar.el, calendar/solar.el:
5226         Add calendar-specific autoload cookies, and remove any setting of
5227         generated-autoload-file.
5228         * calendar/calendar.el: Remove explicit autoloads now in cal-loaddefs.
5229         * calendar/diary-lib.el: Replace explicit autoloads with reading of
5230         diary-loaddefs.
5231         * calendar/holidays.el: Replace explicit autoloads with reading of
5232         hol-loaddefs.
5234         * calendar/calendar.el (cal-hebrew-yahrzeit-buffer): New constant.
5235         (calendar-buffer-list): Simplify.
5236         (generate-calendar-window): Use calendar-mark-holidays rather than
5237         obsolete alias.
5239         * calendar/cal-hebrew.el (list-yahrzeit-dates):
5240         Use cal-hebrew-yahrzeit-buffer.
5242         * calendar/cal-x.el (calendar-only-one-frame-setup)
5243         (calendar-two-frame-setup): Doc fixes.
5244         (special-display-buffer-names): Use cal-hebrew-yahrzeit-buffer.
5246         * calendar/appt.el (appt-mode-string): Mark as risky.
5247         (appt-check): Apply mode-line-emphasis face to appt-mode-string.
5249         * calendar/cal-html.el (diary-list-entries):
5250         * calendar/cal-tex.el (calendar-holiday-list, diary-list-entries)
5251         (calendar-iso-from-absolute): Fix autoloads.
5253         * calendar/cal-iso.el (calendar-absolute-from-iso)
5254         (calendar-iso-read-args): Simplify.
5255         (calendar-iso-date-string, calendar-iso-read-args)
5256         (calendar-goto-iso-date, calendar-goto-iso-week): Doc fixes.
5258         * calendar/cal-julian.el (calendar-julian-from-absolute): Use zerop.
5259         (displayed-month, displayed-year): Move declarations where needed.
5260         (calendar-print-astro-day-number): Doc fix.
5262         * calendar/cal-persia.el (persian-calendar-month-name-array)
5263         (persian-calendar-epoch, calendar-persian-date-string): Doc fixes.
5264         (persian-prompt-for-date): Remove local variable `today'.
5266         * calendar/diary-lib.el (mark-calendar-month): Use zerop.
5268         * calendar/solar.el (solar-moment, solar-exact-local-noon)
5269         (solar-sunrise-sunset, solar-sunrise-sunset-string)
5270         (solar-ephemeris-time, solar-date-next-longitude, solar-sidereal-time):
5271         (diary-sabbath-candles, solar-equinoxes/solstices)
5272         (solar-equinoxes-solstices): Use cadr, cdar, nth, zerop.
5273         (solar-time-equation, solar-date-to-et): Simplify.
5275         * mail/supercite.el: Remove the `function' in `(function (lambda'.
5276         Replace `(car (cdr' with cadr'.
5278         * progmodes/f90.el (f90-font-lock-n): New function.
5279         (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4):
5280         Use f90-font-lock-n.
5281         (f90-indent-region, f90-indent-subprogram, f90-match-end): Use cadr.
5283         * progmodes/f90.el (f90-mode-abbrev-table):
5284         * progmodes/fortran.el (fortran-mode-abbrev-table):
5285         Use newer form of define-abbrev, where supported.  No need to bind
5286         abbrevs-changed for system abbrevs.
5288 2008-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5290         * term/xterm.el (terminal-init-xterm): delete-frame-hook ->
5291         delete-frame-functions.
5293         * bookmark.el (Info-current-node): Remove.
5295 2008-03-12  Juri Linkov  <juri@jurta.org>
5297         * help.el (describe-project): Remove defaliases for view-todo and
5298         describe-project that are now unnecessary after the merge from
5299         emacs--rel--22 that added define-obsolete-function-alias.
5301         * startup.el (inhibit-startup-screen): Revert incomplete
5302         2008-03-10 merge from emacs--rel--22 that partly reverted
5303         2008-02-28 change that added initial message to *scratch* buffer
5304         regardless of the value of `inhibit-startup-screen'.
5305         Now keep this change in the trunk, but not in the 22 branch.
5307 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5309         * international/quail.el (quail-setup-completion-buf, quail-help):
5310         * mail/binhex.el (binhex-decode-region-internal):
5311         * mail/uudecode.el (uudecode-decode-region-internal):
5312         * net/dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
5313         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
5314         setting default-enable-multibyte-characters.
5316         * emulation/viper-util.el (viper-file-remote-p): Remove, unused.
5318         * comint.el: Fix up indentation and comment style.  Remove `function'.
5320         * international/mule-cmds.el (reset-language-environment)
5321         (set-language-environment-nonascii-translation):
5322         Don't set-unibyte-charset.
5324         * doc-view.el: Remove all cb-args, use closures instead.
5325         (doc-view-sentinel): Merge doc-view-dvi->pdf-sentinel,
5326         doc-view-ps->pdf-sentinel, and doc-view-pdf->txt-sentinel (which was
5327         doing an incorrect check).  Update all callers to use the new name.
5328         (doc-view-doc->txt): Add missing `txt' argument.
5330 2008-03-12  Tassilo Horn  <tassilo@member.fsf.org>
5332         * doc-view.el (doc-view-current-cache-dir): Set buffer used for
5333         md5 sum calculation to single-byte.
5335 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5337         * doc-view.el (doc-view-new-window-function): Add assertion.
5338         (doc-view-doc-type): New var.
5339         (doc-view-convert-current-doc, doc-view-doc->txt): Use it.
5340         (doc-view-intersection): New fun.
5341         (doc-view-mode): Use it to set the new var.
5343 2008-03-12  Tassilo Horn  <tassilo@member.fsf.org>
5345         * doc-view.el (doc-view-doc->txt, doc-view-open-text)
5346         (doc-view-already-converted-p): New functions.
5347         (doc-view-clear-cache): Don't recreate doc-view-cache-directory.
5348         (doc-view-mode-map): Bind C-c C-t to doc-view-open-text.
5349         (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
5350         (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
5351         (doc-view-ps->pdf-sentinel, doc-view-ps->pdf)
5352         (doc-view-convert-current-doc): Don't hardwire the functions the
5353         sentinels call.  Now they're provided by two args CALLBACK and
5354         CB-ARGS to the functions.
5355         (doc-view-search): Use doc-view-doc->txt.
5356         (doc-view-initiate-display): Use doc-view-already-converted-p.
5357         Mention new binding C-c C-t if doc-view-mode doesn't work.
5359 2008-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
5361         * diff-mode.el (diff-refine-change): Adjust colors to be more visible.
5363 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5365         * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
5366         Mark " outside of tags as punctuation.
5368 2008-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5370         * menu-bar.el (minibuffer-local-map): Use the same command for the
5371         "Quit" menu as used for the C-g key, so the shortcut displayed is C-g.
5372         Prefer RET over C-j for exit-minibuffer.
5374         * files.el (display-buffer-other-frame): Eliminate problematic code.
5376         * menu-bar.el (menu-bar-update-buffers-maxbuf): Remove.
5377         (menu-bar-select-buffer): Remove.
5378         (menu-bar-select-frame): Make non-interactive and take a frame arg.
5379         (menu-bar-update-buffers): Don't use buffer-names or frame names as events.
5381 2008-03-11  Juanma Barranquero  <lekktu@gmail.com>
5383         * icomplete.el (icomplete-completions): Remove obsolete code.
5385         * net/net-utils.el (iwconfig-program-options): Doc fix.
5386         (net-utils-run-program, run-network-program): Define as functions.
5388 2008-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
5390         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Fix typo.
5392 2008-03-11  Glenn Morris  <rgm@gnu.org>
5394         * faces.el (mode-line-emphasis): New face.
5395         * vc.el (vc-set-mode-line-busy-indicator): Use mode-line-emphasis face.
5397         * calendar/calendar.el (top-level): Load cal-loaddefs when compiling.
5399 2008-03-11  Chong Yidong  <cyd@stupidchicken.com>
5401         * simple.el (set-mark-command): Doc fix.
5403 2008-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5405         * Makefile.in (bootstrap-prepare): Don't chmod cal-loaddefs.el.
5407         * emacs-lisp/autoload.el (autoload-find-destination):
5408         Don't force raw-text.
5410         * calendar/calendar.el ("cal-loaddefs"): Load, rather than require.
5411         * calendar/cal-loaddefs.el: Don't version control.
5413 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
5415         * progmodes/make-mode.el (makefile-mode-abbrev-table): Add menu
5416         entries and add :help to the existing ones.
5418 2008-03-10  Glenn Morris  <rgm@gnu.org>
5420         * calendar/cal-hebrew.el (date, entry, number): Move declarations
5421         to where they are needed.
5423         * calendar/calendar.el (diary-file, hebrew-holidays-1)
5424         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
5425         (calendar, calendar-basic-setup, calendar-mode-map, calendar-set-mark)
5426         (calendar-version): Doc fixes.
5427         (calendar-absolute-from-gregorian): Use zerop.
5428         (calendar-mode-line-format): Make it a defcustom.
5430         * calendar/diary-lib.el (diary-face-attrs): Fix custom :type.
5431         (diary-face-attrs, diary-glob-file-regexp-prefix, diary-unknown-time)
5432         (diary-pull-attrs, diary-header-line-flag, diary-list-entries)
5433         (diary-unhide-everything, include-other-diary-files, diary-goto-entry)
5434         (mark-included-diary-files, mark-calendar-days-named)
5435         (mark-calendar-date-pattern, mark-calendar-month, diary-entry-compare)
5436         (diary-remind, insert-diary-entry, insert-weekly-diary-entry)
5437         (insert-monthly-diary-entry, insert-yearly-diary-entry)
5438         (insert-anniversary-diary-entry, insert-block-diary-entry)
5439         (insert-cyclic-diary-entry, fancy-diary-font-lock-keywords)
5440         (diary-font-lock-sexps): Doc fixes.
5441         (diary-remind-message, mark-calendar-month): Use zerop.
5442         (diary-attrtype-convert, diary-pull-attrs): Simplify.
5443         (diary-list-entries): Revert let to let* (previous change).
5445         * Makefile.in (bootstrap-prepare): Also chmod cal-loaddefs.el.
5447 2008-03-10  Kim F. Storm  <storm@cua.dk>
5449         * help.el (view-emacs-todo, describe-gnu-project): Define obsolete
5450         function aliases for the old names.
5452 2008-03-10  Juanma Barranquero  <lekktu@gmail.com>
5454         * iswitchb.el (iswitchb-use-faces): Doc fix.
5455         (iswitchb-buffer-ignore, iswitchb-read-buffer):
5456         Fix typos in docstrings.
5458 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
5460         * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords):
5461         Fix typo.
5462         (verilog-type-font-keywords): Reindent.
5464 2008-03-10  Michael McNamara  <mac@mail.brushroad.com>
5466         * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the
5467         grouping-keyword regular expression.
5468         (verilog-font-lock-keywords): Allow users to toggle special
5469         highlight of grouping-keywords.
5470         (verilog-highlight-grouping-keywords): The toggle for special
5471         highlighting of grouping keywords.
5473 2008-03-10  Juri Linkov  <juri@jurta.org>
5475         * startup.el: Revert 2008-02-28 change that adds initial message
5476         to *scratch* buffer regardless of the value of
5477         `inhibit-startup-screen'.
5479 2008-03-10  Dan Nicolaescu  <dann@ics.uci.edu>
5481         * textmodes/css-mode.el (css-indent-offset, css-electric-keys):
5482         * textmodes/bibtex-style.el (bibtex-style-indent-basic):
5483         * progmodes/verilog-mode.el (verilog-mode):
5484         * net/socks.el (socks):
5485         * vc-mtn.el (vc-mtn-mode-line-rewrite): Add :version.
5487 2008-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5489         * doc-view.el (bookmark-buffer-file-name, bookmark-prop-get): Declare.
5490         (doc-view-bookmark-make-record): Use them.
5491         (doc-view-bookmark-jump): Use them.  Fix find-file ->find-file-noselect.
5492         (bookmark-get-filename, bookmark-get-bookmark-record): Remove.
5494         * bookmark.el (bookmark-make-record-function): Change expected return
5495         value to include a suggested bookmark name.
5496         (bookmark-make): Split into bookmark-make-record and bookmark-store.
5497         Fix reversed `overwrite' semantics.
5498         (bookmark-set): Call bookmark-make-record before prompting the user.
5499         Then pass the result to bookmark-store later on.
5500         (bookmark-make-name-function): Remove.
5501         (bookmark-buffer-file-name, bookmark-buffer-name): Don't use it.
5502         * info.el (bookmark-make-name-function): Remove.
5503         (Info-mode): Don't set it.
5504         (Info-bookmark-make-name): Remove.
5505         (Info-bookmark-make-record): Use Info-current-node as suggested default
5506         bookmark name.
5508         * bookmark.el (bookmark-set): Make bookmark before reading annotations.
5509         I.e. use bookmark-edit-annotation rather than bookmark-read-annotation.
5510         (bookmark-read-annotation-mode-map, bookmark-annotation-paragraph)
5511         (bookmark-annotation-buffer, bookmark-annotation-file)
5512         (bookmark-annotation-point, bookmark-send-annotation)
5513         (bookmark-read-annotation-mode, bookmark-read-annotation): Remove.
5514         (bookmark-edit-annotation-text-func): Rename from
5515         bookmark-read-annotation-text-func.  Keep old name as an obsolete alias.
5516         (bookmark-edit-annotation-mode-map): Move initialization into
5517         declaration.
5519         * bookmark.el: Remove spurious * in docstrings.
5520         (bookmark-minibuffer-read-name-map): New var.
5521         (bookmark-set): Use it.  Also pass the default value as it should.
5522         (bookmark-send-edited-annotation): Take no chances with text properties.
5523         (bookmark-insert-current-bookmark): Inline bookmark-insert-buffer-name.
5524         (bookmark-insert-buffer-name): Remove.
5525         (bookmark-buffer-file-name): Signal an error rather than returning nil.
5527 2008-03-09  Thomas Hühn  <xf27@arcor.de>  (tiny change)
5529         * tutorial.el (tutorial--default-keys): Update `C-l' binding.
5531 2008-03-09  Dan Nicolaescu  <dann@ics.uci.edu>
5533         * diff-mode.el (diff-mode-menu): Add :help.
5535 2008-03-09  Glenn Morris  <rgm@gnu.org>
5537         * calendar/calendar.el (general-holidays, oriental-holidays)
5538         (local-holidays, other-holidays, hebrew-holidays-1, hebrew-holidays-2)
5539         (hebrew-holidays-3, hebrew-holidays-4, hebrew-holidays)
5540         (christian-holidays, islamic-holidays, bahai-holidays, solar-holidays)
5541         (calendar-holidays): Restore autoload cookies, because people are
5542         used to using these variables without loading calendar.el.
5544         * calendar/cal-islam.el (diary-islamic-date): Move to end.
5545         (date, number): Declare where needed.
5547         * calendar/diary-lib.el (nongregorian-diary-marking-hook)
5548         (list-sexp-diary-entries): Doc fixes.
5549         (diary-list-entries): Doc fix.  Remove free variable `entry'.
5550         (fancy-diary-display): Use dolist, bobp.  Remove free variable `entry'.
5551         Simplify setting of `date-holiday-list'.
5552         (mark-diary-entries): Remove free variable `entry'.
5553         (diary-list-entries, include-other-diary-files, fancy-diary-display):
5554         Use let where let* is not needed.
5556 2008-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5558         * bookmark.el (bookmark-make): Don't pass the `annotation' to the
5559         make-record function, instead paste it in afterwards.
5560         (bookmark-make-record-for-text-file):
5561         * doc-view.el (doc-view-bookmark-make-record):
5562         * info.el (Info-bookmark-make-record): Don't mess with annotations.
5564 2008-03-08  Glenn Morris  <rgm@gnu.org>
5566         * calendar/diary-lib.el (entry): Declare for compiler part-way through.
5568 2008-03-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5570         * calendar/diary-lib.el (diary-list-entries)
5571         (include-other-diary-files, mark-diary-entries)
5572         (mark-sexp-diary-entries, mark-included-diary-files)
5573         (diary-entry-time, list-sexp-diary-entries): Remove the special
5574         handling of ^M that dates back to the use of selective-display.
5575         (simple-diary-display): Obey setting of pop-up-frames.
5576         (body, entry): Remove unnecessary declarations.
5578         * bookmark.el (bookmark-prop-get, bookmark-prop-set): New funs.
5579         (bookmark-get-annotation, bookmark-set-annotation)
5580         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
5581         (bookmark-set-position, bookmark-get-front-context-string)
5582         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
5583         (bookmark-set-rear-context-string, bookmark-get-handler): Use them.
5584         * info.el (Info-bookmark-make-record): Don't bother recording point.
5585         (bookmark-get-filename, bookmark-get-front-context-string)
5586         (bookmark-get-rear-context-string, bookmark-get-position):
5587         Don't declare any more.
5588         (bookmark-get-info-node): Remove.
5589         (bookmark-prop-get): Declare.
5590         (Info-bookmark-jump): Use it.
5592 2008-03-08  Johan Bockgård  <bojohan@gnu.org>
5594         * subr.el (while-no-input): Don't splice BODY directly into the
5595         `or' form.
5597 2008-03-08  Dan Nicolaescu  <dann@ics.uci.edu>
5599         * diff-mode.el (diff-ignore-whitespace-hunk):
5600         Bind inhibit-read-only before trying to change the buffer.
5602 2008-03-08  Glenn Morris  <rgm@gnu.org>
5604         * calendar/appt.el (appt): Move custom group here from calendar.el.
5605         (appt-disp-window, appt-convert-time): Doc fixes.
5607         * calendar/cal-bahai.el (calendar-bahai-prompt-for-date)
5608         (calendar-bahai-mark-date-pattern):
5609         * calendar/cal-hebrew.el (mark-hebrew-calendar-date-pattern):
5610         * calendar/cal-islam.el (mark-islamic-calendar-date-pattern):
5611         * calendar/cal-julian.el (calendar-absolute-from-julian):
5612         * calendar/cal-persia.el (persian-prompt-for-date): Use zerop.
5614         * calendar/cal-china.el (chinese-calendar): Move custom group here from
5615         calendar.el.
5616         (chinese-calendar-celestial-stem, chinese-calendar-terrestrial-branch):
5617         Make constants.
5618         (chinese-calendar-time-zone, chinese-calendar-daylight-time-offset)
5619         (chinese-calendar-daylight-savings-starts)
5620         (chinese-calendar-daylight-savings-ends)
5621         (chinese-calendar-daylight-savings-starts-time)
5622         (chinese-calendar-daylight-savings-ends-time)
5623         (chinese-zodiac-sign-on-or-after, chinese-new-moon-on-or-after):
5624         Doc fixes.
5626         * calendar/cal-coptic.el (coptic-name): Add doc string.
5628         * calendar/cal-french.el (french-calendar-month-name-array)
5629         (french-calendar-day-name-array, french-calendar-special-days-array):
5630         Add doc strings.
5632         * calendar/cal-bahai.el (diary-bahai-mark-entries)
5633         (diary-bahai-insert-entry, diary-bahai-insert-monthly-entry)
5634         (diary-bahai-insert-yearly-entry):
5635         * calendar/cal-dst.el (calendar-next-time-zone-transition)
5636         (calendar-time-zone):
5637         * calendar/cal-hebrew.el (hebrew-calendar-leap-year-p)
5638         (hebrew-calendar-elapsed-days, hebrew-calendar-long-heshvan-p)
5639         (hebrew-calendar-short-kislev-p, mark-hebrew-diary-entries)
5640         (insert-hebrew-diary-entry, insert-monthly-hebrew-diary-entry)
5641         (insert-yearly-hebrew-diary-entry, diary-yahrzeit):
5642         * calendar/cal-islam.el (islamic-calendar-leap-year-p)
5643         (list-islamic-diary-entries, mark-islamic-diary-entries)
5644         (insert-islamic-diary-entry, insert-monthly-islamic-diary-entry)
5645         (insert-yearly-islamic-diary-entry):
5646         * calendar/cal-iso.el (calendar-iso-read-args):
5647         * calendar/cal-mayan.el (calendar-string-to-mayan-long-count)
5648         (calendar-mayan-haab-to-string, calendar-mayan-tzolkin-to-string)
5649         (calendar-read-mayan-haab-date, calendar-read-mayan-tzolkin-date)
5650         (calendar-next-calendar-round-date)
5651         (calendar-mayan-long-count-common-era):
5652         * calendar/cal-menu.el (cal-menu-holiday-window-suffix)
5653         (cal-menu-x-popup-menu, calendar-mouse-holidays)
5654         (calendar-mouse-view-diary-entries, calendar-mouse-print-dates)
5655         (calendar-mouse-goto-date):
5656         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
5657         * calendar/holidays.el (holidays):
5658         * calendar/lunar.el (phases-of-moon, lunar-new-moon-on-or-after):
5659         * calendar/time-date.el (date-to-time, time-subtract, time-add)
5660         (safe-date-to-time): Doc fixes.
5662         * calendar/cal-persia.el (persian-calendar-month-name-array)
5663         (persian-calendar-epoch): Make constants.
5665         * calendar/cal-tex.el (calendar-tex): Move custom group here from
5666         calendar.el.
5668         * calendar/cal-x.el (diary-frame-parameters)
5669         (calendar-frame-parameters, calendar-and-diary-frame-parameters)
5670         (calendar-after-frame-setup-hooks): Make defcustoms.
5671         (calendar-one-frame-setup, calendar-only-one-frame-setup)
5672         (calendar-two-frame-setup): Doc fix.
5674         * calendar/cal-loaddefs.el: New file.
5676         * calendar/cal-bahai.el, calendar/cal-china.el, calendar/cal-coptic.el:
5677         * calendar/cal-french.el, calendar/cal-html.el:
5678         * calendar/cal-islam.el, calendar/cal-iso.el, calendar/cal-julian.el:
5679         * calendar/cal-mayan.el, calendar/cal-move.el, calendar/cal-persia.el:
5680         * calendar/cal-tex.el, calendar/cal-x.el:
5681         Unquote lambda functions.  Add autoload cookies to functions formerly
5682         autoloaded in calendar.el.  Set `generated-autoload-file' to
5683         "cal-loaddefs.el".
5685         * calendar/calendar.el: Move many autoloads to separate file,
5686         cal-loaddefs.el.  Move defcustoms to start and re-order.
5687         (calendar-month-name-array, calendar-starred-day): No need to
5688         declare for compiler.
5689         (cal-loaddefs): Require it.
5690         (appt, chinese-calendar, calendar-tex): Move custom groups to the
5691         appropriate file.
5692         (diary-entry-marker, calendar-today-marker, calendar-holiday-marker):
5693         Reverse logic.
5694         (diary-face, diary-file-name-prefix-function, diary-include-string)
5695         (diary-glob-file-regexp-prefix, diary-face-attrs)
5696         (diary-file-name-prefix, sexp-diary-entry-symbol)
5697         (print-diary-entries-hook, list-diary-entries-hook)
5698         (nongregorian-diary-listing-hook, mark-diary-entries-hook)
5699         (nongregorian-diary-marking-hook, diary-list-include-blanks):
5700         Move to diary-lib.
5701         (all-christian-calendar-holidays, all-islamic-calendar-holidays)
5702         (all-bahai-calendar-holidays): Doc fix.
5703         (calendar-insert-indented): Doc fix.  Use when rather than if.
5704         (exit-calendar): Use mapc rather than mapcar.
5705         (calendar-cursor-to-date): Use zerop.
5706         (calendar-mark-ring): Add doc-string.
5707         (calendar-starred-day): Defvar it.
5708         (calendar-mode): Make calendar-starred-day local.
5709         (calendar-star-date): No need to make calendar-starred-day local.
5711         * calendar/diary-lib.el: Move defcustoms to start.
5712         (diary-include-string, diary-list-include-blanks)
5713         (diary-glob-file-regexp-prefix, diary-face, diary-face-attrs)
5714         (diary-file-name-prefix, diary-file-name-prefix-function)
5715         (sexp-diary-entry-symbol, list-diary-entries-hook)
5716         (mark-diary-entries-hook, nongregorian-diary-listing-hook)
5717         (nongregorian-diary-marking-hook, print-diary-entries-hook):
5718         Move here from calendar.el.
5719         (diary-file-name-prefix-function): Use 'identity.
5720         (diary-face): Make it a defcustom, and mark as obsolete.
5721         (top-level): No need to require cal-hebrew, cal-islam when compiling.
5722         (calendar-hebrew-month-name-array-leap-year)
5723         (calendar-islamic-month-name-array, calendar-bahai-month-name-array):
5724         Define for compiler.
5725         (diary-font-lock-keywords): Use format rather than concat.
5726         Add bahai-diary-entry-symbol.
5728         * calendar/cal-hebrew.el, calendar/holidays.el, calendar/lunar.el:
5729         * calendar/solar.el: Unquote lambda functions.
5731         * calendar/solar.el (calendar-location-name, calendar-latitude)
5732         (calendar-longitude, solar-setup, solar-sin-degrees)
5733         (solar-cosine-degrees, solar-tangent-degrees, solar-xy-to-quadrant)
5734         (solar-degrees-to-quadrant, solar-atn2, solar-arccos)
5735         (solar-sunrise-and-sunset, solar-moment, solar-daylight)
5736         (solar-exact-local-noon, solar-julian-ut-centuries)
5737         (solar-ephemeris-time, solar-date-next-longitude)
5738         (solar-horizontal-coordinates, solar-equatorial-coordinates)
5739         (solar-ecliptic-coordinates, solar-data-list, solar-longitude)
5740         (solar-ephemeris-correction, solar-sidereal-time, solar-date-to-et)
5741         (sunrise-sunset, solar-seasons-data, solar-equinoxes/solstices):
5742         Doc fixes.
5743         (solar-horizontal-coordinates, solar-equatorial-coordinates)
5744         (solar-ecliptic-coordinates): Rename argument `for-sunrise-sunset'.
5745         (solar-ecliptic-coordinates): Use unless.
5746         (calendar-sunrise-sunset, diary-sunrise-sunset, diary-sabbath-candles):
5747         Use or.
5749         * calendar/timeclock.el: Add doc-strings to all functions.
5750         (timeclock-workday, timeclock-in, timeclock-completing-read): Doc fixes.
5751         (timeclock-entry-list-length, timeclock-entry-list-projects)
5752         (timeclock-day-list-projects, timeclock-day-list): Use dolist.
5754         * calendar/todo-mode.el: Remove un-needed eval-when-compile.
5756         * textmodes/org.el (list-diary-entries-hook): Declare for compiler.
5757         (org-get-entries-from-diary): Require diary-lib.
5759 2008-03-08  Juanma Barranquero  <lekktu@gmail.com>
5761         * info.el (bookmark-make-name-function, bookmark-get-bookmark-record):
5762         Pacify byte-compiler.
5764 2008-03-07  Alan Mackenzie  <acm@muc.de>
5766         * progmodes/cc-engine.el (c-in-knr-argdecl): Limit number of
5767         paren/bracket pairs parsed, to solve performance problem.
5769 2008-03-07  Bastien Guerry  <bzg@altern.org>
5771         * bookmark.el (bookmark-set): Don't check for
5772         `bookmark-make-name-function' since `bookmark-buffer-file-name'
5773         already takes care of this.
5774         (bookmark-buffer-name, bookmark-buffer-file-name):
5775         Remove Info-mode specific code.
5777         * info.el (bookmark-get-info-node): Define this function in
5778         info.el, not in bookmark.el.
5779         (Info-mode): Set `bookmark-make-name-function' to
5780         `Info-bookmark-make-name' locally.
5781         (Info-bookmark-make-name): New function.
5783         * bookmark.el (bookmark-make-name-function): New variable.
5785 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
5787         * bookmark.el (bookmark-set): Make `bookmark-make-record-function'
5788         buffer-local, not `bookmark-make-cell-function' (the old name).
5790 2008-03-07  Tassilo Horn  <tassilo@member.fsf.org>
5792         * doc-view.el (doc-view-bookmark-make-record):
5793         * image-mode.el (image-bookmark-make-record):
5794         * info.el (Info-bookmark-make-record): Delete obsolete second arg.
5796 2008-03-07  Jan Djärv  <jan.h.d@swipnet.se>
5798         * vc.el (vc-status-menu-map-filter): Return orig-binding if
5799         boundp 'vc-ignore-menu-filter.
5800         (vc-status-tool-bar-map): Make it defvar.
5801         (vc-status-mode): vc-status-tool-bar-map now variable.
5802         (vc-status-toggle-mark): toggle-mark-file => vc-status-toggle-mark-file.
5804 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
5806         Give a better name to part of the bookmark interface.
5808         This was originally a much larger change, but halfway through I
5809         updated and discovered that Stefan Monnier had done the rest.
5810         It looks like he anticipated the new name too, because he used
5811         `the-record' instead of `the-cell' for some internal variable names.
5813         * bookmark.el (bookmark-make-record-function): Was
5814         `bookmark-make-cell-function'.
5815         (bookmark-make, bookmark-send-annotation): Update for above.
5816         (bookmark-make-record-for-text-file):
5817         Was `bookmark-make-cell-for-text-file'.  Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
5819         * info.el: Adjust accordingly.
5820         (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
5822         * image-mode.el: Adjust accordingly.
5823         (image-bookmark-make-record): Was `image-bookmark-make-cell'.
5825         * doc-view.el: Adjust accordingly.
5826         (doc-view-bookmark-make-record): Was `doc-view-bookmark-make-cell'.
5828 2008-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5830         * bookmark.el (bookmark-map, bookmark-read-annotation-mode-map):
5831         Move initialization into declaration.
5832         (bookmark-get-info-node, bookmark-set-info-node): Remove.
5833         (bookmark-make, bookmark-make-cell-for-text-file): Remove info-node arg.
5834         (bookmark-info-current-node): Remove.
5835         (bookmark-jump-noselect): Rename from bookmark-jump-internal.
5836         Add relocation fallback.  Set bookmark-current-bookmark.
5837         (bookmark-default-handler): Rename from bookmark-jump-noselect.
5838         Remove relocation fallback.  Don't set bookmark-current-bookmark.
5839         (bookmark-set): Let it be used even if there's no buffer-file-name
5840         as long as there is a bookmark-make-cell-function.
5841         * info.el (Info-bookmark-jump): Remove relocation fallback.
5842         Don't set bookmark-current-bookmark.
5844 2008-03-07  Glenn Morris  <rgm@gnu.org>
5846         * calendar/appt.el (appt-issue-message)
5847         (appt-message-warning-time, appt-audible, appt-visible)
5848         (appt-msg-window, appt-display-mode-line, appt-display-duration)
5849         (appt-display-diary): Remove autoload cookies.
5851         * calendar/cal-china.el, calendar/timeclock.el, calendar/todo-mode.el:
5852         Remove leading `*' from defcustom doc-strings.
5854         * calendar/cal-dst.el (calendar-dst): New custom group.
5855         (calendar-daylight-savings-starts, calendar-daylight-savings-ends)
5856         (calendar-time-zone, calendar-daylight-time-offset)
5857         (calendar-standard-time-zone-name, calendar-daylight-time-zone-name)
5858         (calendar-daylight-savings-starts-time)
5859         (calendar-daylight-savings-ends-time): Convert from defvar to defcustom.
5860         (calendar-daylight-savings-starts, calendar-daylight-savings-ends):
5861         Move to start.
5863         * calendar/cal-menu.el (holidays-in-diary-buffer): Declare for compiler.
5865         * calendar/calendar.el (calendar-version): Use emacs-version and
5866         make it obsolete.  Move to end.
5867         (calendar-offset, view-diary-entries-initially)
5868         (mark-diary-entries-in-calendar, calendar-remove-frame-by-deleting)
5869         (view-calendar-holidays-initially, all-hebrew-calendar-holidays)
5870         (all-christian-calendar-holidays, all-islamic-calendar-holidays)
5871         (all-bahai-calendar-holidays, calendar-load-hook)
5872         (initial-calendar-window-hook, today-visible-calendar-hook)
5873         (today-invisible-calendar-hook, calendar-move-hook)
5874         (diary-nonmarking-symbol, hebrew-diary-entry-symbol)
5875         (islamic-diary-entry-symbol, bahai-diary-entry-symbol)
5876         (diary-include-string, sexp-diary-entry-symbol)
5877         (abbreviated-calendar-year, american-date-diary-pattern)
5878         (european-date-diary-pattern, european-calendar-display-form)
5879         (american-calendar-display-form, print-diary-entries-hook)
5880         (list-diary-entries-hook, diary-hook, diary-display-hook)
5881         (nongregorian-diary-listing-hook, mark-diary-entries-hook)
5882         (nongregorian-diary-marking-hook, diary-list-include-blanks)
5883         (holidays-in-diary-buffer, general-holidays, oriental-holidays)
5884         (local-holidays, other-holidays, hebrew-holidays-1)
5885         (hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4)
5886         (hebrew-holidays, christian-holidays, islamic-holidays)
5887         (bahai-holidays, solar-holidays, calendar-setup)
5888         (calendar-week-start-day): Remove autoload cookies.
5889         (diary-glob-file-regexp-prefix): Doc fix.
5890         (calendar-goto-info-node): Use `info' rather than `Info-find-node'.
5891         (Info-find-emacs-command-nodes, Info-find-node): Remove declarations.
5892         (calendar-week-start-day, calendar-debug-sexp): Move to start.
5894         * calendar/solar.el: Remove leading `*' from defcustom doc-strings.
5895         (calendar-time-display-form, calendar-latitude)
5896         (calendar-longitude, solar-equinoxes-solstices): Remove autoload
5897         cookies.
5898         (calendar-latitude, calendar-longitude): Move functions after
5899         variables.
5900         (diary-sabbath-candles-minutes): Move to start.
5901         (solar-setup): Use or rather than if.
5902         (solar-sin-degrees, solar-cosine-degrees, solar-tangent-degrees):
5903         Remove condition-case.
5904         (solar-atn2): Use zerop.
5905         (solar-equinoxes-solstices): Doc fix.
5907         * mail/supercite.el: Remove leading `*' from defcustom doc-strings.
5908         (sc-mode-map-prefix): Doc fix.  Make it a defcustom.
5910         * textmodes/org.el (org-agenda-sunrise-sunset): Require solar.
5911         (calendar-longitude, calendar-latitude, calendar-location-name):
5912         Declare for compiler.
5914 2008-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5916         * arc-mode.el (archive-ar-file-header-re): New const.
5917         (archive-ar-summarize, archive-ar-extract): New funs.
5918         (archive-find-type): Recognize ar archives.
5920         * vc-bzr.el (vc-bzr-resolve-when-done, vc-bzr-find-file-hook):
5921         New functions.
5923         * info.el (Info-bookmark-make-cell): Don't use the info-node argument.
5925 2008-03-06  Lennart Borgman  <lennart.borgman@gmail.com>
5927         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5928         Replace :enable (mark-active) with :enable mark-active.
5930 2008-03-06  Juanma Barranquero  <lekktu@gmail.com>
5932         * vms-patch.el (make-legal-file-name): New obsolete alias.
5933         (make-valid-file-name): Rename from `make-legal-file-name'.
5934         (make-auto-save-file-name): Use it.
5936         * calendar/calendar.el (calendar-date-is-legal-p): New obsolete alias.
5937         (calendar-date-is-valid-p): Rename from `calendar-date-is-legal-p'.
5938         (calendar-date-is-visible-p, mark-visible-calendar-date): Use it.
5940         * textmodes/org.el (org-export-html-style): Doc fix.
5941         (org-get-legal-level): New obsolete alias.
5942         (org-get-valid-level): Rename from `org-get-legal-level'.
5943         (org-promote, org-demote, org-archive-subtree)
5944         (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
5946 2008-03-06  Jan Djärv  <jan.h.d@swipnet.se>
5948         * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
5950         * vc.el (vc-status-tool-bar-map, vc-status-toggle-mark-file)
5951         (vc-status-toggle-mark): New functions.
5952         (vc-status-mode): Set tool bar map.
5954 2008-03-05  Chong Yidong  <cyd@stupidchicken.com>
5956         * emacs-lisp/lisp.el (parens-require-spaces): Doc fix.
5957         Reported by Drew Adams <drew.adams@oracle.com>.
5959 2008-03-05  Kenichi Handa  <handa@ni.aist.go.jp>
5961         * subr.el (read-quoted-char): Resolve modifers of the character
5962         event.
5964         * comint.el (comint-exec-1): Don't change the coding-system for
5965         decoding to dos-like EOL.
5966         (comint-carriage-motion): Fully rewrite.
5968 2008-03-05  Juanma Barranquero  <lekktu@gmail.com>
5970         * epg.el (epg-context-include-certs): Reflow docstring.
5971         (epg-start-sign-keys, epg-sign-keys, epg-context-armor)
5972         (epg-context-signers, epg-context-sig-notations, epg-context-set-armor)
5973         (epg-context-set-signers, epg-context-set-sig-notations)
5974         (epg-make-import-status, epg-make-import-result)
5975         (epg-start-delete-keys): Fix typos in docstrings.
5976         (epg-start-sign-keys, epg-sign-keys):
5977         Fix typos in obsolescence declarations.
5979         * iswitchb.el: Don't check for `cadr' and `last'.
5980         (iswitchb-define-mode-map, iswitchb-default-keybindings):
5981         Add obsolescence declaration and remove redundant info from docstring.
5982         (iswitchb-set-common-completion, iswitchb-set-matches)
5983         (iswitchb-get-matched-buffers, iswitchb-visit-buffer): Use `let'.
5984         (recentf-list, most-len, most-is-exact):
5985         Don't wrap defvars within `eval-when-compile'.
5987 2008-03-05  Glenn Morris  <rgm@gnu.org>
5989         * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
5990         * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): Remove.
5991         * ediff-diff.el, ediff-help.el, ediff-hook.el, ediff-init.el:
5992         * ediff-mult.el, ediff-util.el, ediff-wind.el: Expand all
5993         ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
5995         * ediff-hook.el (ediff-window-setup-function): Don't autoload
5996         declaration for compiler.
5997         (ediff-xemacs-init-menus): Use when rather than if.
5999         * ediff-init.el (top-level, ediff-frame-iconified-p): Simplify
6000         if+and to just and.
6001         (ediff-read-event, ediff-overlayp, ediff-make-overlay)
6002         (ediff-delete-overlay): Move the XEmacs test inside the definition.
6004         * ediff-mult.el (ediff-get-meta-info): Use or and unless rather than if.
6006         * ediff-util.el (ediff-kill-bottom-toolbar): Place (ediff-use-toolbar-p)
6007         test inside XEmacs test.
6008         (ediff-make-bottom-toolbar): Place whole cond inside XEmacs test,
6009         since it was doing nothing on Emacs.
6010         (ediff-make-bullet-proof-overlay): Use when rather than if.
6012         * ediff-wind.el (ediff-select-lowest-window): Use when rather than if.
6013         (ediff-setup-control-frame): Remove
6014         ediff-cond-compile-for-xemacs-or-emacs, since it is already inside
6015         a (featurep 'xemacs) test.
6017 2008-03-05  Jay Belanger  <jay.p.belanger@gmail.com>
6019         * calc/calc-ext.el (calc-extended-command-history): New variable.
6020         (calc-exectute-extended-command): Use `calc-extended-command-history'.
6022 2008-03-05  Dan Nicolaescu  <dann@ics.uci.edu>
6024         * bindings.el (mode-line-remote): Add mouse-face.  Improve tooltip.
6025         (standard-mode-line-position): Add mouse-face.
6027         * progmodes/compile.el (compilation-menu-map):
6028         (compilation-mode-map):
6029         * progmodes/grep.el (grep-mode-map): Add :help.
6031         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
6032         initialize in one step.  Add :help.  Use :enable to activate menu
6033         items.  Show the key binding for edebug-defun.
6034         (lisp-interaction-mode-map): Add a menu.
6036         * term.el (term-mode-map): Define and initialize in one step.
6038         * ediff-init.el (ediff-color-display-p): Simplify.
6039         (Xor): Remove unused function.
6040         (ediff-with-syntax-table): Simplify for Emacs.
6042         * ediff-hook.el (menu-bar-ediff-menu): Don't depend on the
6043         menu-bar being loaded, it always is.
6045 2008-03-05  Glenn Morris  <rgm@gnu.org>
6047         * textmodes/tex-mode.el (tex-mode): Suppress warning about
6048         multiple definitions when compiling.
6050 2008-03-04  Alan Mackenzie  <acm@muc.de>
6052         * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix coding bug.
6054         * progmodes/cc-langs.el (c-before-font-lock-function): Fix bug in
6055         doc-string, "c-old-LEN" -> "c-old-END".
6057 2008-03-04  Jason Rumney  <jasonr@gnu.org>
6059         * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add dublin core
6060         namespaces.
6062 2008-03-04  Glenn Morris  <rgm@gnu.org>
6064         * textmodes/tex-mode.el (tex-cmd-bibtex-args): Add :version and :group.
6066         * ediff-init.el (ediff-clear-fine-diff-vector): Use mapc rather
6067         than mapcar.
6069 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6071         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
6072         (byte-compile-nilconstp): Can't use recursion in a defsubst.
6074         * textmodes/tex-mode.el (latex-mode): Remove % from paragraph-separate
6075         so that M-q can fill comments.
6076         (tex-executable-exists-p, tex-compile): Extend with special syntax for
6077         commands implemented in elisp.
6078         (tex-compile-commands): Add an entry to use doc-view for pdf files.
6079         (tex-format-cmd): New function.
6080         (tex-compile): Use it to let the user specify default arguments.
6081         (tex-cmd-bibtex-args): New var.
6082         (tex-cmd-doc-view): New function.
6084 2008-03-03  Juanma Barranquero  <lekktu@gmail.com>
6086         * faces.el (face-spec-set): Fix typos in docstring.
6088 2008-03-03  Dan Nicolaescu  <dann@ics.uci.edu>
6090         * bindings.el (mode-line-column-line-number-mode-map): New variable.
6091         (standard-mode-line-position): Use it to add a menu for toggling
6092         column number and line number display.
6094 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6096         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6097         Remove optimization that was working around the form-code-walker bug.
6099         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6100         Walk into the body of lambdas after byte-compile-unfold-lambda.
6102 2008-03-03  Glenn Morris  <rgm@gnu.org>
6104         * emulation/viper-util.el (viper-frame-value): Prefer buffer-local
6105         value, if set, over frame value.
6107         * simple.el (transient-mark-mode): Don't turn on by default.
6109         * net/tls.el (open-tls-stream): Restore the 2007-11-04 change
6110         accidentally removed by the 2007-12-05 merge from Gnus.
6112 2008-03-02  Dan Nicolaescu  <dann@ics.uci.edu>
6114         * progmodes/compile.el (compilation-menu-map): Add menu entries
6115         for useful options.
6117 2008-03-01  Dan Nicolaescu  <dann@ics.uci.edu>
6118             Glenn Morris  <rgm@gnu.org>
6120         * emacs-lisp/bytecomp.el (byte-recompile-directory)
6121         (byte-compile-file, batch-byte-compile, batch-byte-compile-file):
6122         Give a `bytecomp-' prefix to local variables with common names.
6124 2008-03-01  Glenn Morris  <rgm@gnu.org>
6126         * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded): Restore
6127         code commented out 2007-11-10.
6129         * emulation/edt.el (zmacs-region-stays): Define for compiler once only.
6131         * emulation/viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
6132         Delete macro.
6133         * emulation/viper-cmd.el, emulation/viper-ex.el:
6134         * emulation/viper-init.el, emulation/viper-keym.el:
6135         * emulation/viper-mous.el, emulation/viper-util.el:
6136         * emulation/viper.el:
6137         Expand all viper-cond-compile-for-xemacs-or-emacs calls to a
6138         featurep test.
6140         Replace obselete frame-local variables with frame-parameters.
6141         * emulation/viper-init.el (viper-replace-overlay-cursor-color)
6142         (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
6143         (viper-vi-state-cursor-color): Only call make-variable-frame-local
6144         on XEmacs.
6145         * emulation/viper-util.el (viper-frame-value): New macro.
6146         * emulation/viper-cmd.el (viper-insert-state-post-command-sentinel)
6147         (viper-R-state-post-command-sentinel)
6148         (viper-replace-state-post-command-sentinel)
6149         (viper-change-state-to-insert, viper-change-state-to-emacs):
6150         * emulation/viper-util.el (viper-set-cursor-color-according-to-state)
6151         (viper-save-cursor-color, viper-get-saved-cursor-color-in-replace-mode)
6152         (viper-get-saved-cursor-color-in-insert-mode)
6153         (viper-get-saved-cursor-color-in-emacs-mode, viper-set-replace-overlay):
6154         Use viper-frame-value for viper-replace-overlay-cursor-color,
6155         viper-emacs-state-cursor-color, viper-insert-state-cursor-color, and
6156         viper-vi-state-cursor-color values.
6158         * emulation/viper-cmd.el (zmacs-region-stays):
6159         * emulation/viper-util.el (zmacs-region-stays): No need to define
6160         for compiler.
6162         * emulation/viper-keym.el (viper-add-keymap): Use mapc rather than
6163         mapcar on Emacs.
6165         * emulation/viper-mous.el (viper-counting-clicks-p): Only define
6166         on XEmacs.
6168         * emulation/viper-util.el (viper-set-minibuffer-overlay): Use when
6169         rather than if.
6171 2008-03-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6173         * whitespace.el: New version 9.3.  As the glyph code generation was
6174         fixed, it is possible now to use character code above ?\x1FFFF in the
6175         display table.  Fix `whitespace-indentation-regexp' to not include an
6176         extra ending character.  Reported by Michael Welsh Duggan
6177         <mwd@cert.org>.  Added hook actions when buffer is written or killed as
6178         the original whitespace package had.  Suggested by Eric Cooper
6179         <ecc@cmu.edu>.  Doc fix.
6180         (whitespace-action): New option.
6181         (whitespace-display-mappings): Changed default newline visualization to
6182         display downwards arrow, as the glyph code generation was fixed.
6183         (whitespace-unload-function): Assure that all local whitespace mode is
6184         turned off.
6185         (whitespace-global-modes): Fix type customization.
6186         (whitespace-mode, global-whitespace-mode, whitespace-cleanup-region)
6187         (whitespace-insert-option-mark, whitespace-help-on, whitespace-turn-on)
6188         (whitespace-turn-off, whitespace-color-on, whitespace-display-char-on):
6189         Fix code.
6190         (whitespace-buffer): Command removed.
6191         (whitespace-trailing-regexp, whitespace-mark-x)
6192         (whitespace-display-window, whitespace-action-when-on)
6193         (whitespace-add-local-hook, whitespace-remove-local-hook)
6194         (whitespace-write-file-hook, whitespace-kill-buffer-hook)
6195         (whitespace-action): New funs.
6196         (whitespace-report-list, whitespace-report-text)
6197         (whitespace-report-buffer-name): New consts.
6198         (whitespace-report, whitespace-report-region): New commands.
6200 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
6202         * disp-table.el (make-glyph-code): Don't test the result of
6203         `face-id', which already signals an error for invalid faces.
6204         (glyph-face): Simplify.
6206         * desktop.el (desktop-read): Set `desktop-dirname' to nil before
6207         running `desktop-not-loaded-hook' to allow modifying it.
6208         Don't show warning message if `desktop-dirname' was modified.
6210 2008-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6212         * diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
6213         we still expect more lines.
6215         * textmodes/fill.el (fill-comment-paragraph): Don't try to do
6216         comment-paragraph filling if the commark doesn't match
6217         comment-start-skip.
6219 2008-03-01  Daiki Ueno  <ueno@unixuser.org>
6221         * international/utf-7.el (utf-7-encode): Never skip the trailing - for
6222         the `imap' variant.
6224 2008-03-01  Jason Rumney  <jasonr@gnu.org>
6226         * files.el (make-auto-save-file-name): Encode more characters in
6227         non-file buffer names.  Use url-encoding.
6229 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
6231         * net/net-utils.el (ftp-program): Fix typo in docstring.
6232         (ifconfig-program-options, netstat-program-options)
6233         (arp-program-options, route-program-options, nslookup-program-options)
6234         (ftp-program-options, smbclient-program-options)
6235         (dns-lookup-program-options, arp, route): Doc fixes.
6237         * progmodes/gdb-ui.el (gdb-pc-address, gdb-source-file-list)
6238         (gdb-cpp-define-alist-program, gdb-mouse-jump, gdb-get-buffer-create)
6239         (gdb-set-gud-minor-mode-existing-buffers-1, gdb-debug-log):
6240         Fix typos in docstrings.
6241         (gdb-pending-triggers): Reflow docstring.
6242         (gdb, gdb-init-1): Fix typos in docstrings of gud-def definitions.
6244 2008-03-01  Alan Mackenzie  <acm@muc.de>
6246         * progmodes/cc-mode.el (c-neutralize-syntax-in-CPP): Fix a bug on
6247         typing "#" at EOB.
6249 2008-03-01  Juanma Barranquero  <lekktu@gmail.com>
6251         * emulation/cua-base.el (cua-remap-control-z): Fix typo in docstring.
6253 2008-02-29  Kim F. Storm  <storm@cua.dk>
6255         * emulation/cua-base.el (cua-remap-control-v)
6256         (cua-remap-control-z): New defcustoms.
6257         (cua-mode): Add them to set-after property.
6258         (cua--init-keymaps): Use them.
6259         Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap.
6261         * help.el (view-emacs-todo): Rename from view-todo.
6262         (describe-gnu-project): Rename from describe-project.  Users changed.
6263         (view-help-file): New helper function.
6264         (describe-distribution, describe-copying, describe-gnu-project)
6265         (view-todo, view-order-manuals, view-emacs-problems): Use it.
6266         (view-emacs-debugging, view-external-packages): New commands.
6267         (help-map): Move describe-distribution to C-h C-o (ordering).
6268         Move view-emacs-problems to C-h C-p (problems).
6269         Bind view-emacs-debugging to C-h C-d (debugging).
6270         Bind view-external-packages to C-h C-e (extras).
6271         (help-for-help-internal): Cleanup and align descriptions.
6272         Remove command names to reduce clutter.
6274 2008-02-29  Nick Roberts  <nickrob@snap.net.nz>
6276         * vc.el (vc-set-mode-line-busy-indicator): Use shorter message
6277         and quieter face (not a warning).
6279 2008-02-29  Dan Nicolaescu  <dann@ics.uci.edu>
6281         * vc.el (vc-status-crt-marked): New variable.
6282         (vc-status-mode): Make it local.
6283         (vc-status-refresh): Use it to save the marked files.
6284         (vc-update-vc-status-buffer): Use it to restore the marked files.
6286         * vc-svn.el (vc-svn-after-dir-status):
6287         * vc-hg.el (vc-hg-after-dir-status): Clean up the temporary buffer.
6289 2008-02-29  Glenn Morris  <rgm@gnu.org>
6291         * allout.el (allout-topic-encryption-bullet)
6292         (allout-passphrase-verifier-handling, allout-passphrase-hint-handling)
6293         (allout-encrypt-unencrypted-on-saves): Change defcustom :version
6294         from 22.0 to 22.1.
6296         * net/imap.el (imap-ping-server):
6297         * net/tls.el (tls-checktrust, tls-untrusted, tls-hostmismatch):
6298         Change defcustom :version from 23.0 to 23.1.
6300 2008-02-29  Juanma Barranquero  <lekktu@gmail.com>
6302         * desktop.el (desktop-save): Save the buffer name if the
6303         uniquified base name is empty.
6305 2008-02-29  Nick Roberts  <nickrob@snap.net.nz>
6307         * progmodes/gdb-ui.el (gdb-info-stack-custom): Apply function-name-face
6308         correctly when user has "set print address off".
6310 2008-02-28  Juanma Barranquero  <lekktu@gmail.com>
6312         * cus-edit.el (custom-mode, custom-mode-hook): Use 23.1 as
6313         version number of the next major Emacs release, not 23.0.
6315         * longlines.el (longlines-unload-function): New function.
6317 2008-02-28  Juri Linkov  <juri@jurta.org>
6319         * startup.el (normal-splash-screen): Add argument `concise'.
6320         Remove unused binding `prev-buffer'.  Let-bind `splash-buffer'
6321         to the created buffer.  If `concise' is non-nil, call
6322         `display-buffer', otherwise `switch-to-buffer'.  Doc fix.
6323         (display-startup-screen): Add argument `concise' to the call to
6324         `normal-splash-screen'.
6326 2008-02-28  Kim F. Storm  <storm@cua.dk>
6328         * startup.el (startup-echo-area-message): Check for about-emacs.
6330 2008-02-28  Juri Linkov  <juri@jurta.org>
6332         * startup.el: Always add initial message to *scratch* buffer if
6333         `initial-scratch-message' is non-nil regardless of the value of
6334         `inhibit-startup-screen'.
6335         (inhibit-startup-screen, initial-scratch-message): Doc fix.
6336         (command-line-1): Move code that inserts `initial-scratch-message'
6337         up before the if-form that checks for `inhibit-startup-screen'.
6338         Suggested by Jonathan Rockway <jon@jrock.us>.
6340 2008-02-28  Juri Linkov  <juri@jurta.org>
6342         * cus-edit.el (custom-mode-map, custom-mode-link-map):
6343         Rename `custom-mode' to `Custom-mode' in docstrings.
6344         (custom-buffer-create-internal, customize-browse):
6345         Rename `custom-mode' to `Custom-mode'.
6346         (custom-mode-hook): Rename to `Custom-mode-hook'.
6347         (Custom-mode-hook): Renamed from `custom-mode-hook'.
6348         (custom-mode): Rename to `Custom-mode'.
6349         (Custom-mode): Renamed from `custom-mode'.  Doc fix.
6350         (custom-mode): Add backward-compatible non-interactive variant of
6351         `Custom-mode' that simply calls `Custom-mode'.  Mark it obsoleted.
6352         (custom-mode-hook): Mark it as obsolete alias of `Custom-mode-hook'.
6354         * info-look.el: Rename `custom-mode' to `Custom-mode'.
6356         * emulation/viper.el (viper-emacs-state-mode-list):
6357         Rename `custom-mode' to `Custom-mode'.
6359         * menu-bar.el (menu-bar-search-menu, menu-bar-replace-menu):
6360         Capitalize "Tagged Files".
6361         (minibuffer-local-map): Add menu items for next/previous
6362         history elements and isearch history forward/backward.
6364         * progmodes/hideshow.el (hs-minor-mode-menu): Compare
6365         `hs-isearch-open' with t instead of `comment' in :selected
6366         for "Code and Comment blocks" menu item.
6368 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6370         * uniquify.el (uniquify-buffer-base-name): Undo last change.
6371         Should be done in desktop.el instead.
6373 2008-02-28  Glenn Morris  <rgm@gnu.org>
6375         * autoinsert.el (auto-insert-alist): Update to FDL 1.2.
6377         * emacs-lisp/byte-run.el (make-obsolete): Doc fix.
6379         * mail/emacsbug.el: Remove leading `*' from defcustom doc-strings.
6380         (Info-menu, Info-goto-node): Remove declarations.
6381         (report-emacs-bug-info): Use info rather than Info-goto-node.
6383         * progmodes/idlwave.el (Info-goto-node): Remove declaration.
6384         (idlwave-convert-xml-system-routine-info): Don't require xml.
6385         (idlwave-show-commentary, idlwave-shell-show-commentary):
6386         Don't require finder.
6387         (idlwave-info): Don't require info.  Use info rather than
6388         Info-goto-node.
6390         * textmodes/org.el (Info-goto-node): Remove declaration.
6391         (org-info): Use info rather than Info-goto-node.
6393         * textmodes/reftex.el (reftex-show-commentary): Don't require finder.
6394         (reftex-info): Don't require info.  Use info rather than Info-goto-node.
6396 2008-02-28  Dan Nicolaescu  <dann@ics.uci.edu>
6398         * progmodes/hideshow.el (hs-minor-mode-menu): Add some options to
6399         the menu.
6401         * vc.el (vc-deduce-fileset, vc-next-action, vc-start-entry)
6402         (vc-finish-logentry): Check for vc-status-mode, not only for
6403         vc-dired-mode.
6405 2008-02-28  Kenichi Handa  <handa@ni.aist.go.jp>
6407         * isearch.el (isearch-printing-char): Don't check
6408         keyboard-coding-system.
6409         Call isearch-process-search-multibyte-characters only when
6410         current-input-method is non-nil.
6412 2008-02-27  Kim F. Storm  <storm@cua.dk>
6414         * disp-table.el (make-glyph-code): Encode as cons if face id > 63.
6415         (glyph-char, glyph-face): Handle cons encoding.
6417 2008-02-27  Juanma Barranquero  <lekktu@gmail.com>
6419         * uniquify.el (uniquify-buffer-base-name): If the base name is an
6420         empty string, return nil to allow the caller to default to the
6421         buffer name.  Reported by Martin Fischer <parozusa@web.de>.
6423         * tool-bar.el (tool-bar-setup): Doc fix.
6425         * mail/supercite.el (sc-describe):
6426         Fix typos in obsolescence declaration.
6428 2008-02-27  Glenn Morris  <rgm@gnu.org>
6430         * autoinsert.el (auto-insert-alist): Change permission text to
6431         match FSF's GPLv3 form.
6433         * mail/supercite.el (sc-cite-original): Doc fix.
6434         (sc-version): Make obsolete.
6435         (sc-describe): Show the SC info page.  Make obsolete.
6437 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6439         * simple.el (set-mark-command): Deactivate mark on second C-SPC C-SPC
6440         when using transient-mark-mode.
6441         (default-indicate-unused-lines): Remove unused var.
6443 2008-02-26  Jan Djärv  <jan.h.d@swipnet.se>
6445         * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
6446         and previous.
6448         * progmodes/compile.el (compilation-mode-tool-bar-map): The same.
6450 2008-02-26  Glenn Morris  <rgm@gnu.org>
6452         * net/net-utils.el (top-level): Don't require comint when compiling.
6453         (nslookup-font-lock-keywords): Don't require font-lock.
6454         Use font-lock faces rather than variables.
6455         (nslookup, ftp, smbclient, network-service-connection):
6456         Don't require comint.
6457         (comint-prompt-regexp, comint-input-autoexpand)
6458         (comint-input-ring): Declare for compiler.
6459         (comint-mode, ffap-string-at-point, comint-exec): Autoload.
6460         (dns-lookup-host): Don't require ffap.  Remove `with-no-warnings'.
6462         * ibuffer.el (ibuffer-do-toggle-read-only): Don't use `iff' in
6463         doc-string.
6465 2008-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6467         * doc-view.el (doc-view-current-page): Add a `win' argument.
6469 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6471         * doc-view.el (doc-view-conversion-buffer): Give it an internal name.
6472         Demote it to plain defvar.
6473         (doc-view-conversion-refresh-interval): Reduce interval.
6474         (doc-view-goto-page): Allow moving to pages not yet rendered.
6475         (doc-view-goto-page): Construct a file name rather than extracting it
6476         from doc-view-current-files.
6477         (doc-view-kill-proc): Ignore errors from kill-process.
6478         (doc-view-pdf/ps->png-sentinel): Die gracefully if the buffer is dead.
6479         (doc-view-insert-image): Use appropriate text if the page hasn't been
6480         rendered yet.  Adjust scrolling so the text is displayed.
6481         (doc-view-display): Detect not just that a page is available, but also
6482         that it wasn't available before, so as to avoid refreshing all pages
6483         repeatedly.
6484         (doc-view-mode): Make doc-view-cache-directory if needed.
6486 2008-02-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
6488         * ibuffer.el (ibuffer-do-toggle-read-only): New optional arg as in
6489         toggle-read-only.
6491         * textmodes/bibtex.el (bibtex-format-entry): Handle error message
6492         refering to a missing required field with the OPT prefix.
6493         Make unwindform more robust.
6495         * textmodes/bibtex.el: Remove support for hideshow minor mode as
6496         it duplicates the bibtex support in progmodes/hideshow.el.
6497         * progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
6498         entries that do not start at the beginning of a line.
6500 2008-02-25  Chong Yidong  <cyd@stupidchicken.com>
6502         * files.el (shell-quote-wildcard-pattern): Quote ' and " as well.
6504 2008-02-25  Robert J. Chassell  <bob@rattlesnake.com>
6506         * help-fns.el (describe-variable): Add phrases about
6507         initialization file with and without customization;
6508         use new button type help-info-variable.
6510         * help-mode.el (help-info-variable):
6511         New button able to read Info files for help-fns.el.
6513 2008-02-25  Jan Djärv  <jan.h.d@swipnet.se>
6515         * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
6516         (grep-mode): Use grep-mode-tool-bar-map.
6518         * progmodes/compile.el (tool-bar): Require tool-bar.
6519         (compilation-mode-tool-bar-map): New variable.
6520         (compilation-mode): Use compilation-mode-tool-bar-map.
6522         * term/x-win.el (x-gtk-stock-map): Add cancel.  Remove extensions.
6524 2008-02-25  Glenn Morris  <rgm@gnu.org>
6526         * vc-sccs.el (vc-sccs-diff): Fix setting of oldvers and newvers.
6528 2008-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6530         * diff-mode.el (diff-file-junk-re): New const.
6531         (diff-beginning-of-file-and-junk): Use it.
6532         (diff-file-kill): Make sure we were really inside a file diff.
6534         * diff-mode.el: Make it more robust in the presence of empty context
6535         lines in unified hunks.
6536         (diff-valid-unified-empty-line): New var.
6537         (diff-unified->context, diff-sanity-check-hunk): Obey it.
6538         (diff-end-of-hunk): Obey it.  New arg `donttrustheader'.
6539         (diff-fixup-modifs, diff-post-command-hook): Use this new arg.
6540         (diff-hunk-header-re-unified): New const.
6541         (diff-font-lock-keywords, diff-hunk-header-re, diff-split-hunk)
6542         (diff-fixup-modifs, diff-unified->context, diff-next-complex-hunk)
6543         (diff-sanity-check-hunk): Use it.
6545         * diff-mode.el (diff-beginning-of-file-and-junk): If we're on the
6546         Index: line, don't search backward for the previous one.
6548 2008-02-25  Kenichi Handa  <handa@ni.aist.go.jp>
6550         * international/fontset.el (setup-default-fontset): Add non-OTF
6551         lao font for lao script.
6553         * language/tibetan.el: Register tibetan-composition-function in
6554         composition-function-table.
6556         * language/tibet-util.el (tibetan-composition-function):
6557         Adjust for the new calling way (argument changed).  Try font-shape-text
6558         if possible.
6560         * language/lao.el: Register lao-composition-function in
6561         composition-function-table.
6563         * language/lao-util.el (lao-composition-function): Adjust for the new
6564         calling way (argument changed).  Try font-shape-text if possible.
6566 2008-02-25  Jason Rumney  <jasonr@gnu.org>
6568         * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
6570 2008-02-25  Juri Linkov  <juri@jurta.org>
6572         * isearch.el (isearch-fail): Use "RosyBrown1" for a light
6573         background, "red4" for a dark background, "red" for 16 and
6574         8 colors, "grey" for grayscale, and inverse video otherwise.
6575         Add :version tag.
6576         (isearch-message): Keep the original isearch-message intact, and
6577         add text properties to it where necessary.  Add `isearch-error' to
6578         the condition that checks if isearch is unsuccessful.
6580 2008-02-24  Juri Linkov  <juri@jurta.org>
6582         * progmodes/compile.el (compilation-handle-exit):
6583         Use compilation-error face instead of font-lock-warning-face.
6584         Display the same message in the minibuffer as is inserted
6585         at the end of the compilation buffer.
6587 2008-02-24  Glenn Morris  <rgm@gnu.org>
6589         * vc-cvs.el (vc-cvs-register): Fix registering of directories in
6590         multiple file case.
6592         * vc-mcvs.el (vc-mcvs-register): Fix let-binding (for use of `file').
6594         * vc-rcs.el (vc-rcs-register): Fix treatment of directories in
6595         multiple file case.  Use a single `let' rather than two.
6597 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
6599         * progmodes/compile.el (compilation-start): Specify a face for
6600         mode-line-process.
6601         (compilation-handle-exit): Specify a face and a tooltip for
6602         mode-line-process.
6604 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6606         * hilit-chg.el: Remove spurious * in defcustom docstrings.
6607         (hilit-chg-make-ov): Simplify.
6608         (hilit-chg-fixup): Use remove-overlays.
6609         (hilit-chg-set-face-on-change): Remove redundant call to
6610         `remove-text-properties'.
6612         * dired.el (dired-mark-prompt): Don't count/display the t element.
6613         Reported by Carsten Blaauw <it-media.blaauw@daimler.com>.
6615 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
6617         * progmodes/verilog-mode.el (eval-when-compile): Don't define
6618         add-submenu.
6619         (verilog-xemacs-menu): Add :keys for C-M-a, C-M-e and C-M-h.
6620         Remove.  Move contents to the only use ...
6621         (verilog-menu): ... here.
6622         (verilog-statement-menu): Remove.  Move contents to the only use ...
6623         (verilog-stmt-menu): ... here.
6624         (verilog-mark-defun): Simply call mark-defun for emacs.
6625         (occur-pos-list): Declare for byte compiler.
6626         (mode-popup-menu): Don't defvar.
6627         (verilog-add-statement-menu): Remove.
6628         (verilog-mode-hook): Don't add verilog-add-statement-menu.
6629         (verilog-mode): Call easy-menu-add and set mode-popup-menu for XEmacs.
6631 2008-02-24  Michael McNamara  <mac@mail.brushroad.com>
6633         * progmodes/verilog-mode.el (verilog-xemacs-menu): Remove XEmacs
6634         conditional.
6635         (verilog-font-grouping-keywords-face): Make the begin..end
6636         keywords standout more than other verilog keywords.
6637         (verilog-type-font-keywords): Move the begin..end out of this list
6638         to facilitate making them to (potentially) stand out more.
6639         (verilog-backward-token): Fix indent of bare always{_*}?, initial,
6640         function & task blocks.
6641         (verilog-behavioral-block-beg-re): Fix indent of bare always{_*}?,
6642         initial, function & task blocks.
6643         (verilog-forward-sexp): Handle the new "disable fork" statement of
6644         IEEE-1800 Verilog.
6645         (verilog-beg-block-re-ordered): Handle the new "disable fork"
6646         statement of IEEE-1800 Verilog.
6647         (verilog-calc-1): Handle the new "disable fork" statement of
6648         IEEE-1800 Verilog.
6649         (verilog-disable-fork-re): Add const to help handle the new
6650         "disable fork" statement of IEEE-1800 Verilog.
6651         (verilog-declaration-core-re): Add port directions by themselves,
6652         with no qualification, as base item of a declaration.
6653         (verilog-pretty-declarations): Add new flag to ask it to refrain
6654         from printing to the message buffer.
6655         (verilog-pretty-expr): Add a QUIET flag to ask it to refrain from
6656         printing to the message buffer.  Improve handling of the many
6657         types of expression line up.
6658         (verilog-just-one-space): Remove printing of an empty message.
6659         (verilog-get-lineup-indent): Rework to support the better handling
6660         of expression lineup for verilog-pretty-expr.
6661         (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
6663 2008-02-24  Alan Mackenzie  <acm@muc.de>
6665         * progmodes/cc-mode.el (c-extend-region-for-CPP): Bug fix from
6666         yesterday's commit.
6668 2008-02-24  Nick Roberts  <nickrob@snap.net.nz>
6670         * progmodes/gdb-ui.el (gdb-mouse-set-clear-breakpoint): Fall back
6671         to mouse-set-point in buffers that aren't associated with files.
6673         * progmodes/gud.el: Rename menu item to "Show GUD tooltips".
6675 2008-02-24  Alan Mackenzie  <acm@muc.de>
6677         Set of changes so that "obtrusive" syntactic elements in a
6678         C/C++/ObjC preprocessor line (e.g. an unbalanced string quote or
6679         unmatched paren) don't interact syntactically with stuff outside
6680         the CPP line.
6682         * progmodes/cc-awk.el (c-awk-beyond-logical-line, c-awk-old-ByLL):
6683         Replace c-awk-end-of-logical-line and c-awk-old-EoLL to solve an
6684         off-by-one bug.
6685         (c-awk-record-region-clear-NL): Replaces c-awk-before-change, with
6686         a bit of refactoring.
6687         (c-awk-extend-and-syntax-tablify-region): Takes some of the
6688         functionality of c-awk-advise-fl-for-awk-region, which has been
6689         refactored away.
6691         * progmodes/cc-defs.el (c-clear-char-property-with-value-function)
6692         (c-clear-char-property-with-value): New function and macro which
6693         remove text-properties `equal' to a supplied value.
6695         * progmodes/cc-engine.el: Comment about text properties amended.
6697         * progmodes/cc-fonts.el (c-cpp-matchers): Make it put regexp
6698         parens around "error\\|warning".
6700         * progmodes/cc-langs.el (c-get-state-before-change-function)
6701         (c-before-font-lock-function, c-anchored-cpp-prefix):
6702         New language variables.
6703         (c-cpp-message-directives): Handle "#warning" in C, C++ and ObjC.
6705         * progmodes/cc-mode.el (c-basic-common-init): C and ObjC now use
6706         syntax-table text properties.
6707         (c-common-init): Call language specific before/after-change
6708         functions at mode initialisation.
6709         (c-new-BEG, c-new-END, c-old-BOM, c-old-EOM): New variables.
6710         (c-extend-region-for-CPP, c-neutralize-CPP-line)
6711         (c-neutralize-syntax-in-CPP): New functions.
6712         (c-before-change, c-after-change): Call the new language specific
6713         change functions defined in cc-langs.el.
6714         (c-advise-fl-for-region): New macro.
6715         (awk-mode): Remove AWK specific stuff which has been refactored
6716         into language independent stuff.
6718 2008-02-24  Nick Roberts  <nickrob@snap.net.nz>
6720         * progmodes/gdb-ui.el (gdba): Recreate as an alias for gdb.
6721         (gdb): (Re)set gdb-flush-pending-output to nil here...
6722         (gdb-init-1): ...instead of here (before gdb-prompt).
6724 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6726         * progmodes/ada-mode.el (ada-font-lock-syntactic-keywords):
6727         Recognize ''' just like any other char-constant.
6729 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6731         * vc-hooks.el (vc-find-root): Remove initial loop because it's not
6732         careful enough.  Detect the uid-change all within the main loop.
6734 2008-02-24  Stefan Monnier  <monnier@pastel.home>
6736         * textmodes/sgml-mode.el (sgml-mode): Fix comment syntax.
6738 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6740         * hilit-chg.el (highlight-save-buffer-state): New macro.
6741         (highlight-save-buffer-state, hilit-chg-set-face-on-change)
6742         (hilit-chg-clear): Use it to preserve the modified-p flag.
6743         (highlight-changes-rotate-faces): Don't mess with the undo-list.
6745 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6747         * font-lock.el (font-lock-set-defaults): Unset previously set variables
6748         when needed.
6750 2008-02-24  Ævar Arnfjörð Bjarmason  <avar@cpan.org>  (tiny change)
6752         * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
6753         from gnus-button-url-regexp.
6755 2008-02-24  Eli Zaretskii  <eliz@gnu.org>
6757         * progmodes/compile.el (compilation-next-error): Doc fix.
6758         (compilation-find-file): Doc fix.
6760 2008-02-24  Glenn Morris  <rgm@gnu.org>
6762         * net/net-utils.el (ipconfig-program, ipconfig-program-options):
6763         Add obsolete aliases to the old names.
6765 2008-02-24  Richard Stallman  <rms@gnu.org>
6767         * net/net-utils.el (ifconfig): Rename from ipconfig.
6768         (ipconfig): Alias to ifconfig.
6769         (ifconfig-program): Rename from ipconfig-program.
6770         (ifconfig-program-options): Rename from ipconfig-program-options.
6772 2008-02-24  Michael McNamara  <mac@mail.brushroad.com>
6774         * progmodes/verilog-mode.el (verilog-declaration-core-re):
6775         Add port directions by themselves, with no qualification, as base
6776         item of a declaration.
6777         (verilog-pretty-declarations): Add new flag that inhibits printing
6778         to the message buffer.
6779         (verilog-pretty-expr): Add new flag that inhibits printing to the
6780         message buffer.  Improve handling of the many types of expression
6781         line up.
6782         (verilog-just-one-space): Don't print an empty message.
6783         (verilog-get-lineup-indent): Rework to support the better handling
6784         of expression lineup for verilog-pretty-expr.
6785         (verilog-auto-wire): Pass the quiet flag to verilog-pretty-expr.
6786         (verilog-mode-version, verilog-mode-release-date): Update.
6788 2008-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6790         * subr.el (cancel-change-group): Don't move point.
6792 2008-02-23  Markus Triska  <markus.triska@gmx.at>
6794         * linum.el (linum-after-config): Update all visible windows.
6796 2008-02-23  Glenn Morris  <rgm@gnu.org>
6798         * menu-bar.el (menu-bar-games-menu): Add Bubbles and Pong.
6799         Add :help for Solitaire and Tetris.
6801         * tree-widget.el (tree-widget-lookup-image): Let-bind `file'.
6803         * mail/smtpmail.el: Remove leading `*' from defcustom doc-strings.
6804         (smtpmail-code-conv-from): Doc fix.  Fix custom type.
6805         (smtpmail-queue-index-file): Make it a defcustom.
6806         (smtpmail-queue-index): Delete.
6807         (smtpmail-send-it, smtpmail-send-queued-mail):
6808         Use smtpmail-queue-index-file and smtpmail-queue-dir rather than
6809         smtpmail-queue-index.
6811         * net/net-utils.el (iwconfig-program, iwconfig-program-options):
6812         Add :version.
6814 2008-02-23  Yoni Rabkin  <yoni@rabkins.net>  (tiny change)
6816         * net/net-utils.el (iwconfig-program, iwconfig-program-options):
6817         New variables.
6818         (iwconfig): New function.
6820 2008-02-23  Dan Nicolaescu  <dann@ics.uci.edu>
6822         * vc.el (vc-find-revision): Make vc-parent-buffer local before
6823         setting it.
6824         (vc-status-menu-map): Do not define using easy-menu.
6825         (vc-status-menu-map): New defalias.
6826         (vc-status-mode-map): Hook up the menu.
6827         (top-level): Update TODO.
6829         * vc-hg.el (vc-hg-extra-status-menu): Return a keymap.
6831         * vc-bzr.el (vc-bzr-init-version): Rename to ...
6832         (vc-bzr-init-revision): ... this.
6834 2008-02-23  Jason Rumney  <jasonr@gnu.org>
6836         * makefile.w32-in (WINS_ALMOST): Remove term.
6837         (WINS): Add term here.
6838         (custom-deps, finder-data): Use WINS_ALMOST.
6840 2008-02-22  Juanma Barranquero  <lekktu@gmail.com>
6842         * faces.el (font-weight-table): Fix value of `semi-light'.
6844 2008-02-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6846         * faces.el (font-weight-table, font-slant-table, font-swidth-table):
6847         Make those tables bijective.
6849 2008-02-22  Ken Manheimer  <ken.manheimer@gmail.com>
6851         Finish pdbtrack integration cleanup, settling missing-functions
6852         byte compiler warnings appropriately.
6854         * progmodes/python.el (python-point): Remove this - beginning-of-line
6855         was all that was necessary for `python-pdbtrack-overlay-arrow'.
6856         (python-end-of-def-or-class, python-beginning-of-def-or-class)
6857         (python-goto-initial-line): Drop these - they were only needed for
6858         python-point.
6859         (python-comint-output-filter-function): Use condition-case and
6860         beginning-of-line directly, instead of python-mode.el functions
6861         which require all sorts of baggage.
6862         (point-safe): Unnecessary - we're using condition-case directly,
6863         instead.
6864         (python-execute-file): Include for python-shell, which I'm leaving
6865         in keeping despite it being unnecessary for pdb tracking.
6867 2008-02-22  Peter Danenberg  <pcd@wikitex.org>  (tiny change)
6869         * progmodes/scheme.el (scheme-font-lock-keywords-2):
6870         Add SRFI 11 support.
6871         (let-values, let*-values): Specify scheme-indent-function.
6873 2008-02-22  Dan Nicolaescu  <dann@ics.uci.edu>
6875         * vc.el (vc-exec-after): Move setting mode-line-process in the
6876         busy case ...
6877         (vc-set-mode-line-busy-indicator): ... in this new function.
6878         (vc-status-refresh): Call vc-set-mode-line-busy-indicator.
6879         (vc-update-vc-status-buffer): Reset mode-line-process.
6880         (vc-status-mark-all-files, vc-status-unmark-all-files): Change to
6881         mark/unmark all the files with the same state as the current one.
6882         With a prefix argument mark/unmark all files.
6883         (vc-status-mode-menu): Adjust strings.
6884         (vc-update-vc-status-buffer): Only do something when the argument
6885         is not nil.
6886         (vc-status-kill-dir-status-process): New function.
6887         (vc-status-mode-map): Bind it.
6888         (vc-status-process-buffer): New variable.
6889         (vc-status-mode): Make it local.
6890         (vc-status-refresh): Set it.
6892         * vc-hg.el (vc-hg-dir-status):
6893         * vc-git.el (vc-git-dir-status):
6894         * vc-svn.el (vc-svn-dir-status): Return the buffer in which the
6895         command is run.
6897 2008-02-22  Glenn Morris  <rgm@gnu.org>
6899         * json.el (top-level): No need to require thingatpt.
6900         (json-read-keyword): Use thing-at-point rather than word-at-point.
6902         * time.el (top-level): No need to require time-date when compiling.
6904         * emacs-lisp/copyright.el (copyright-update-year):
6905         Fix subexpression numbering for the case when years are split over
6906         lines, and for the replace case.
6908         * emulation/tpu-edt.el (tpu-have-ispell): Doc fix.  Make obsolete.
6909         (tpu-caar, tpu-cadr): Delete functions.
6910         (zmacs-regions): No need to declare for compiler.
6911         (tpu-goto-breadcrumb): Use cadr rather than tpu-cadr.
6912         (tpu-spell-check): Rewrite, and handle mark after point.
6913         (tpu-special-insert): Use or rather than if.
6915         * emulation/vip.el (vip-special-prefix-com): Use ispell-region
6916         rather than spell-region.
6918         * textmodes/spell.el (spell-buffer, spell-word): Suppress compiler
6919         warnings about spell-region.
6921 2008-02-22  Kenichi Handa  <handa@ni.aist.go.jp>
6923         * ldefs-boot.el: Regenerated.
6925         * loadup.el: Don't load language/devanagari, language/kannanda,
6926         language/malayalam, and language/tamil.  Load language/sinhala.
6928         * language/indian.el (indian-font-foundry)
6929         (indian-script-language-alist, indian-font-char-index-table)
6930         (indian-font-char, indian-font-char-range, indian-script-table)
6931         (indian-default-script, indian-composable-pattern): Delete them.
6932         ("Devanagari", "Kannada", "Malayalam", "Tamil"): Definitions of
6933         language environments moved to here.
6934         ("Bengali", "Punjabi", "Gujarati", "Oriya", "Telugu"):
6935         New language environments.
6937         * language/devanagari.el, language/devan-util.el,
6938         * language/kannanda.el, language/knd-util.el, language/malayalam.el,
6939         * language/mlm-util.el, language/tamil.el, language/tml-util.el:
6940         Delete them.
6942         * language/sinhala.el: New file.
6944 2008-02-21  Ken Manheimer  <ken.manheimer@gmail.com>
6946         Update Nick Robert's port of pdb tracking from python-mode.el.
6948         * progmodes/python.el (python-pdbtrack-toggle-stack-tracking):
6949         Clarify docstring.
6950         (python-pdbtrack-minor-mode-string): A sign indicating that pdb
6951         tracking is happening.
6952         (python-pdbtrack-stack-entry-regexp): Better recognize stack traces.
6953         (python-pdbtrack-input-prompt): Better recognize PDB prompts.
6954         (comint-output-filter-functions): Add python-pdbtrack-track-stack-file.
6955         Tracking is plugged in to all comint buffers once python.el is loaded.
6956         (python-pdbtrack-overlay-arrow): Toggle activation of
6957         `python-pdbtrack-minor-mode-string' in addition to the overlay arrow.
6958         (python-pdbtrack-track-stack-file): Use new
6959         `python-pdbtrack-get-source-buffer' for more flexible access to
6960         debugging source files.
6961         (python-pdbtrack-get-source-buffer): Identify debugging target buffer
6962         according to pdb stack trace, optionally using new
6963         `python-pdbtrack-grub-for-buffer' if file is not locally available.
6964         (python-pdbtrack-grub-for-buffer): Find most recent python-mode
6965         named buffer, or having function with indicated name.
6966         (python-shell): Remove comint-output-filter-functions hook
6967         addition, it's being done elsewhere.  Wrap long line.
6969 2008-02-21  Michael Olson  <mwolson@gnu.org>
6971         * json.el: Replace XEmacs compatibility code to get rid of
6972         compiler warnings.
6974         * time.el: Fix compiler warning.
6976 2008-02-21  Edward O'Connor  <ted@oconnor.cx>
6978         * json.el: New file (JavaScript Object Notation parser / generator).
6980 2008-02-21  Dave Love  <fx@gnu.org>
6982         * progmodes/sym-comp.el: New file.
6984         * progmodes/python.el: Merge from Dave Love's 2008-01-20 version.
6985         Require sym-comp.  Add Python buffer to same-window-buffer-names.
6986         Fixup whitespaces.
6987         (python-font-lock-keywords): Add highlighting for Python builtins.
6988         (python-font-lock-syntactic-keywords): Rewrite.
6989         (python-quote-syntax): Use syntax-ppss-context instead of parsing
6990         ppss directly.
6991         (python-mode-map): Add binding for python-find-function.
6992         (python-calculate-indentation): Clean up the logic.
6993         (python-beginning-of-defun): Explicitly set return value.
6994         (python-beginning-of-statement): Stop looping if we get stuck
6995         going backwards.
6996         (python-next-statement): Stop looping if we somehow end up inside
6997         a string while advancing.
6998         (python-preoutput-continuation, python-version-checked): New vars.
6999         (python-check-version): New function.
7000         (run-python): Set default command to python-command instead of
7001         python-python-command.
7002         (run-python): Use python-check-version.  Give PYTHONPATH
7003         precedence over data-directory in the process environment.
7004         Load function definitions in python process after.
7005         (python-check-comint-prompt): New function.
7006         (python-send-command, python-send-receive): Use it.
7007         (python-complete-symbol, python-try-complete): Functions deleted.
7008         Use symbol-complete instead of python-complete-symbol throughout.
7009         (python-fill-paragraph): Further refine the fenced-string regexp.
7010         (def-python-skeleton): Expand to the original abbrev instead if in
7011         a comment or string.  Tweak skeletons for `if', `while', `for',
7012         `try/except', `try/finally', `name'.
7013         (python-pea-hook, python-abbrev-pc-hook): New functions.
7014         (python-abbrev-syntax-table): New var.
7015         (python-mode): Add python-pea-hook to pre-abbrev-expand-hook.
7016         Use symbol-completion-try-complete for hippie expansion.
7017         Turn on font lock unconditionally.
7018         (python-mode-hook): Defcustom it.  No need to use make-local
7019         variable on indent-tabs-mode in "Turn off Indent Tabs mode"
7020         option, since it's buffer-local.
7022 2008-02-21  Juanma Barranquero  <lekktu@gmail.com>
7024         * play/hanoi.el (hanoi-internal): Set `show-trailing-whitespace' to nil.
7026 2008-02-21  Drew Adams  <drew.adams@oracle.com>
7028         * mouse.el (minor-mode-menu-from-indicator): Create a menu with a
7029         "Turn off" and a "Help" entry when the minor mode has no menu.
7031 2008-02-21  Dan Nicolaescu  <dann@ics.uci.edu>
7033         * vc.el (vc-status-mark, vc-status-unmark): New functions.
7034         (vc-status-mode-map, vc-status-mode-menu): Bind them instead of
7035         vc-status-mark-file and vc-status-unmark-file.
7036         (vc-status-mark-unmark): New function.
7037         (vc-status-previous-line, vc-status-next-line): No longer interactive.
7039 2008-02-21  Glenn Morris  <rgm@gnu.org>
7041         * composite.el (encode-composition-rule): Fix typo in error message.
7042         (composition-function-table, auto-composition-mode): Doc fixes.
7044         * subr.el (sit-for): Fix obsolete form for nil second argument.
7046         * textmodes/spell.el (spell-buffer, spell-word, spell-region)
7047         (spell-string): Make obsolete, in favor of ispell.
7049 2008-02-21  Kenichi Handa  <handa@ni.aist.go.jp>
7051         * language/devanagari.el: Don't setup composition-function-table
7052         here.
7053         ("Devanagari"): Change charset, coding-system, coding-priority to
7054         Unicode-based ones.  Don't require the feature devan-util.
7056         * composite.el (compose-chars-after): Fix arguments for a function
7057         in composition-function-table.
7058         (auto-compose-region): Likewise.
7060         * ps-mule.el (ps-mule-font-info-database-bdf): Use ethio16f-uni.bdf
7061         for Ethiopic.
7062         (ps-mule-plot-string): Ignore glyph-string based compositions.
7064 2008-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7066         * doc-view.el: Allow different windows to show different pages.
7067         (doc-view-current-page, doc-view-current-slice, doc-view-current-info)
7068         (doc-view-current-image, doc-view-current-overlay): Remove variables,
7069         add them back as macros instead, using image-mode-winprops instead.
7070         Update all users of those variables.
7071         (doc-view-new-window-function): New function to create a new overlay
7072         for each new window.
7073         (doc-view-mode): Use it and image-mode-setup-winprops.
7074         (doc-view-clone-buffer-hook): Rewrite accordingly.
7076         * image-mode.el: Extend [hv]scroll support to per-window properties.
7077         (image-mode-current-vscroll, image-mode-current-hscroll): Remove.
7078         (image-mode-winprops-alist): New var to replace them.
7079         (image-mode-new-window-functions): New hook.
7080         (image-mode-winprops, image-mode-window-get, image-mode-window-put):
7081         New funs.
7082         (image-set-window-vscroll, image-set-window-hscroll): Use them.
7083         Remove the `window' argument, update callers.
7084         (image-mode-reapply-winprops): Rename image-reset-current-vhscroll.
7085         Use the new functions.
7086         (image-mode-reapply-winprops): New fun.
7087         (image-mode): Use it.
7089 2008-02-20  Jay Belanger  <jay.p.belanger@gmail.com>
7091         * calc/calc-math.el (math-sin-raw): Add optional argument
7092         to keep track of original argument.
7093         (math-cos-raw): Use optional argument when calling math-sin-raw.
7094         (math-sin-raw-2, math-cos-raw-2): Check for a zero argument
7095         with close to original precision.
7097 2008-02-20  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7099         * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
7100         args in calls of sit-for.
7102 2008-02-20  Juanma Barranquero  <lekktu@gmail.com>
7104         * vc-svn.el (vc-svn-program): Fix typo in docstring.
7105         (vc-svn-checkin): Fix typo in error message.
7107         * help-mode.el: Require easymenu when compiling.
7109 2008-02-20  Dan Nicolaescu  <dann@ics.uci.edu>
7111         * help-mode.el (help-mode-menu): New menu.
7113 2008-02-20  Glenn Morris  <rgm@gnu.org>
7115         * mail/rmail.el (rmail-autodetect): Add .exe extension to movemail
7116         on Windows.
7118 2008-02-20  Kenichi Handa  <handa@ni.aist.go.jp>
7120         * ps-mule.el (ps-mule-encode-region): Return a single string.
7121         (ps-mule-plot-string): Adjust for the above change.
7122         (ps-mule-encode-header-string): Likewise.
7124         * international/latin1-disp.el (latin1-display): Don't use
7125         ucs-mule-8859-to-mule-unicode.  Fix the way of resetting
7126         standard-display-table.
7127         (latin1-display-identities): Adjust for the change of what is
7128         returned by (get-language-info charset 'charset).
7130         * international/mule-util.el (char-displayable-p): Fix for Latin-1
7131         characters and terminal case.
7133 2008-02-19  Ken Manheimer  <ken.manheimer@gmail.com>
7135         Minor Adaptions by Nick Roberts <nickrob@snap.net.nz> for Emacs.
7137         * progmodes/python.el: Also require comint when loading.
7138         (python-mode-map): Bind python-pdbtrack-toggle-stack-tracking.
7139         Replace python-shell with run-python on menu bar.
7140         (python-shell-map): New map.
7141         (python-default-interpreter, python-python-command-args)
7142         (python-jython-command-args, python-pdbtrack-do-tracking-p):
7143         New options.
7144         (python-which-shell, python-which-args, python-which-bufname):
7145         New buffer local variables.
7146         (python-file-queue, python-pdbtrack-is-tracking-p): New variables.
7148         * progmodes/python.el (python-pdbtrack-stack-entry-regexp)
7149         (python-pdbtrack-input-prompt, python-pdbtrack-track-range):
7150         New constants.
7152         Pdbtrack features:
7154         (python-point, python-end-of-def-or-class)
7155         (python-beginning-of-def-or-class, python-goto-initial-line)
7156         (python-comint-output-filter-function)
7157         (python-pdbtrack-overlay-arrow)
7158         (python-pdbtrack-track-stack-file, python-toggle-shells)
7159         (python-shell, python-pdbtrack-toggle-stack-tracking)
7160         (turn-on-pdbtrack, turn-off-pdbtrack, python-sentinel):
7161         New functions.
7163 2008-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7165         * net/ange-ftp.el (ange-ftp-quote-string): Return the null string
7166         when the argument is nil.
7168 2008-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
7170         * vc.el (dir-status): Add a brief description.
7172 2008-02-19  Thien-Thi Nguyen  <ttn@gnuvola.org>
7174         * vc-hooks.el (vc-find-root): Take optional arg INVERT.
7175         If non-nil, reverse the sense of the check.
7177         * vc-rcs.el (vc-rcs-root): New func.
7178         * vc-cvs.el (vc-cvs-root): New func.
7179         * vc-svn.el (vc-svn-root): New func.
7180         * vc-sccs.el (vc-sccs-root): New func.
7182 2008-02-18  Kenichi Handa  <handa@ni.aist.go.jp>
7184         * language/japan-util.el (setup-japanese-environment-internal):
7185         Call use-cjk-char-width-table.
7187         * language/japanese.el ("Japanese"): Set exit-function to
7188         use-default-char-width-table.
7190         * international/characters.el: Delete occurrences of non-Unicode
7191         tibetan and ethiopic characters.
7192         (cjk-char-width-table): New variable.
7193         (use-cjk-char-width-table, use-default-char-width-table):
7194         New functions.
7196 2008-02-19  Dan Nicolaescu  <dann@ics.uci.edu>
7198         * vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
7199         (vc-status-mode-menu): Add a :filter.
7200         (vc-status-printer): Add faces.
7202         * vc-hg.el (vc-hg-extra-status-menu): New function.
7203         (vc-hg-dir-status): Clean up the buffer before using it.
7205 2008-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7207         * progmodes/gdb-ui.el (gdb-output-sink): Define with an invalid value.
7208         (gdb): Initialize it here instead.
7210         * files.el (locate-dominating-file): Fix thinko in last change.
7211         Reported by Bruce Stephens <bruce.stephens@isode.com>.
7213 2008-02-18  Dan Nicolaescu  <dann@ics.uci.edu>
7215         * vc.el (vc-status-mode-menu): New menu for vc-status.
7217 2008-02-18  Juanma Barranquero  <lekktu@gmail.com>
7219         * progmodes/verilog-mode.el (customize): Fix typo in error message.
7220         (verilog-mode, verilog-mode-indent, verilog-mode-actions)
7221         (verilog-mode-auto, verilog-indent-level-module)
7222         (verilog-minimum-comment-distance, verilog-library-flags)
7223         (verilog-library-directories, verilog-library-files)
7224         (verilog-auto-reset-widths, verilog-imenu-generic-expression)
7225         (verilog-xemacs-menu, verilog-set-compile-command)
7226         (verilog-set-compile-command, verilog-mode-syntax-table, verilog-mode)
7227         (verilog-get-expr, verilog-strip-comments, verilog-one-line)
7228         (verilog-lint-off, verilog-batch-auto, verilog-batch-delete-auto)
7229         (verilog-batch-inject-auto, verilog-batch-indent)
7230         (verilog-continued-line, verilog-type-keywords)
7231         (verilog-read-sub-decls-sig, verilog-read-sub-decls-line)
7232         (verilog-read-inst-pins, verilog-read-arg-pins)
7233         (verilog-read-auto-template, verilog-read-signals, verilog-getopt-file)
7234         (verilog-add-list-unique, verilog-symbol-detick, verilog-modi-filename)
7235         (verilog-auto-star, verilog-auto-inst, verilog-auto-wire)
7236         (verilog-enum-ascii, verilog-sk-begin, verilog-sk-fork)
7237         (verilog-sk-datadef, verilog-colorize-include-files-buffer)
7238         (verilog-mode-version, verilog-mode-release-date)
7239         (verilog-mode-release-emacs, verilog-linter, verilog-coverage)
7240         (verilog-simulator, verilog-compiler)
7241         (verilog-auto-sense-defines-constant, verilog-company)
7242         (verilog-project, verilog-mark-defun, verilog-submit-bug-report):
7243         Fix typos in docstrings.
7244         (verilog-set-auto-endcomments, verilog-calculate-indent)
7245         (verilog-inject-auto, verilog-auto-arg, verilog-auto-inout-module):
7246         Reflow docstrings.
7247         (verilog-tab-always-indent, verilog-highlight-p1800-keywords)
7248         (verilog-auto-star-save, verilog-auto-inst-vector, verilog-mode-hook)
7249         (electric-verilog-forward-sexp, verilog-in-case-region-p)
7250         (verilog-in-struct-region-p, verilog-in-generate-region-p)
7251         (verilog-leap-to-head, verilog-current-indent-level)
7252         (verilog-case-indent-level, verilog-cpp-keywords)
7253         (verilog-defun-keywords, verilog-block-keywords, verilog-tf-keywords)
7254         (verilog-case-keywords, verilog-separator-keywords, verilog-completion)
7255         (verilog-signals-not-in, verilog-symbol-detick-text)
7256         (verilog-modi-cache-preserve-tick, verilog-modi-cache-preserve-buffer)
7257         (verilog-forward-close-paren, verilog-backward-open-paren)
7258         (verilog-backward-open-bracket): Doc fixes.
7260         * progmodes/gud.el (gud-def, gud-last-speedbar-stackframe): Doc fixes.
7261         (gud-symbol, gud-expansion-speedbar-buttons, gud-speedbar-buttons)
7262         (gud-gdb-run-command-fetch-lines, gud-dbx-use-stopformat-p)
7263         (gud-jdb-classpath, gud-jdb-find-source-using-classpath, jdb)
7264         (gud-find-class, gdb-script-mode, gud-tooltip-event, gud-tooltip-tips):
7265         Fix typos in docstrings.
7267         * w32-vars.el (w32-system-shells): Add TCC (new name for 4NT).
7269 2008-02-18  Bastien Guerry  <Bastien.Guerry@ens.fr>
7271         * info.el (Info-read-node-name): Removed unused `default' arg.
7273 2008-02-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
7275         * vc-git.el (vc-git-after-dir-status, vc-git-dir-status): New funcs.
7277 2008-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7279         * image-mode.el (image-get-display-property): New fun.
7280         (image-forward-hscroll, image-next-line, image-eol, image-eob)
7281         (image-mode, image-minor-mode, image-toggle-display-text)
7282         (image-toggle-display): Use it.
7284 2008-02-18  Jason Rumney  <jasonr@gnu.org>
7286         * international/mule.el (xml-find-file-coding-system): Don't warn
7287         about utf-16 with BOM.
7289         * nxml/nxml-mode.el (nxml-mode): Don't add a write-contents-hook.
7291         * international/mule.el (sgml-xml-auto-coding-function): Detect and
7292         warn if file encoding is not utf-8 and encoding not specified.
7293         (xml-find-file-coding-system): New function.
7294         * international/mule-conf.el (file-coding-system-alist): Use it.
7296 2008-02-17  Glenn Morris  <rgm@gnu.org>
7298         * international/mule-cmds.el (set-locale-environment):
7299         Pass `frame' to getenv for LC_MESSAGES.
7301 2008-02-17  Juri Linkov  <juri@jurta.org>
7303         * time.el (emacs-init-time): Use format instead of format-seconds.
7305 2008-02-17  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7307         * textmodes/bibtex.el (bibtex-search-entry): Rename from
7308         bibtex-find-entry.  Add autoload cookie.
7309         (bibtex-find-entry): Alias for bibtex-search-entry.
7310         (bibtex-search-crossref): Rename from bibtex-find-crossref.
7311         (bibtex-find-crossref): Alias for bibtex-search-crossref.
7312         (bibtex-clean-entry): atomic-change-group removed.
7313         (bibtex-format-entry): Use atomic-change-group.  Use unwind-protect
7314         to locate buffer location where error occurred.
7315         Make error messages more specific.
7316         (bibtex-parse-keys): Only parse if buffer uses bibtex-mode.
7318 2008-02-17  Dan Nicolaescu  <dann@ics.uci.edu>
7320         * progmodes/hideshow.el (hs-minor-mode-map): Move menu creation to
7321         top level.
7323         * simple.el (transient-mark-mode): Add an :init-value.
7325         * startup.el (command-line): Use custom-reevaluate-setting for
7326         transient-mark-mode.
7328 2008-02-17  Michaël Cadilhac  <michael@cadilhac.name>
7330         * wdired.el (wdired-allow-to-change-permissions): Fix typo.
7332 2008-02-16  Juri Linkov  <juri@jurta.org>
7334         * startup.el (after-init-time): New variable.
7335         (command-line): Set `after-init-time' to the current time.
7337         * time.el (emacs-init-time): New function.
7339 2008-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7341         * files.el (locate-dominating-file): Remove initial loop because it's
7342         not careful enough.  Detect the uid-change all within the main loop.
7344 2008-02-16  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
7346         * ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
7348 2008-02-16  Dan Nicolaescu  <dann@ics.uci.edu>
7350         * vc.el (vc-annotate): Add new argument.
7351         (vc-annotate-warp-revision): Pass the current line to vc-annotate.
7353         * progmodes/hideshow.el: Remove the minor-mode bookkeeping.
7354         Move make-variable-buffer-local code after the corresponding defvar.
7355         (hs-minor-mode-map): Define and initialize in one step.
7356         (hs-minor-mode): Change from defun to define-minor-mode.
7358 2008-02-16  Nick Roberts  <nickrob@snap.net.nz>
7360         * progmodes/gud.el (gud-gdb): Don't reset gdb-ready.
7361         (gdb-ready): Move declaration...
7363         * progmodes/gdb-ui.el (gdb-ready): ...to here.
7364         (gdb-early-user-input): New variable.
7365         (gdb): Reset gdb-flush-pending-output to nil and set
7366         comint-input-sender here (before gdb-prompt), instead of...
7367         (gdb-init-1): ...here.
7368         (gdb-send): If Emacs is not ready, defer user input to...
7369         (gdb-prompt): ...here.
7371 2008-02-16  Glenn Morris  <rgm@gnu.org>
7373         * nxml/test.invalid.xml, nxml/test.valid.xml: Move to etc/nxml.
7375         * startup.el (emacs-startup-time): Rename to `before-init-time'.
7376         (before-init-time): New name for `emacs-startup-time'.
7377         (command-line): Use before-init-time rather than emacs-startup-time.
7378         * time.el (emacs-uptime): Use before-init-time rather than
7379         emacs-startup-time.
7381         * composite.el (composition-function-table): Doc fix.
7383         * calendar/time-date.el (format-seconds): Remove `nonzero' argument
7384         in favor of `%z' specifier.
7385         (emacs-uptime): Move to time.el.
7386         * time.el (emacs-uptime): Move here from time-date.el.  Add optional
7387         `format' argument.  Doc fix.  Use `%z' rather than removed `nonzero'
7388         argument of format-seconds.
7390 2008-02-16  Dan Nicolaescu  <dann@ics.uci.edu>
7392         * bindings.el (mode-line-mule-info): Make the tooltips more explicit.
7394 2008-02-15  Lawrence Mitchell  <wence@gmx.li>  (tiny change)
7396         * ielm.el (ielm-is-whitespace): Remove.
7397         (ielm-is-whitespace-or-comment): New function.
7398         (ielm-eval-input): Use it.
7400 2008-02-15  Jason Rumney  <jasonr@gnu.org>
7402         * term/mac-win.el: Fix coding tag.
7404 2008-02-15  Dan Nicolaescu  <dann@ics.uci.edu>
7406         * vc-hooks.el (vc-menu-map):
7407         * bindings.el (mode-line-mode-menu): Add tooltips.
7409         * bindings.el (help-echo): Add more tooltips.  Use a less
7410         telegraphic style for existing tooltips.
7412 2008-02-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7414         * frame.el (frame-notice-user-settings): Distinguish explicit parent-id
7415         from the auto-generated one.
7417 2008-02-14  Glenn Morris  <rgm@gnu.org>
7419         * mail/rmail-spam-filter.el (rmail-spam-filter):
7420         Let-bind message-spam-status.
7422         * mail/smtpmail.el (password-cache-add): Declare as function.
7424 2008-02-14  Justus Piater  <Justus-bulk@Piater.name>  (tiny change)
7426         * mail/smtpmail.el: Use password-cache.
7428 2008-02-14  Juanma Barranquero  <lekktu@gmail.com>
7430         * uniquify.el (uniquify-buffer-base-name): New function.
7431         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
7433         * desktop.el (uniquify-managed): Don't defvar.
7434         (desktop-buffer-info): Use `uniquify-buffer-base-name', not
7435         `uniquify-managed'.  Return also the buffer's base name.
7436         (desktop-save): When saving the buffer info, filter out the base name,
7437         and save it as buffer name if the buffer is managed by uniquify.
7438         (uniquify-item-base): Don't declare; not called anymore.
7440 2008-02-14  Dan Nicolaescu  <dann@ics.uci.edu>
7442         * vc.el (vc-annotate-find-revision-at-line): New function.
7443         (vc-annotate-mode-map): Bind it.
7444         (vc-annotate-mode-menu): Add a menu entry for it.  Add :help for
7445         some entries.
7447 2008-02-14  Glenn Morris  <rgm@gnu.org>
7449         * calendar/time-date.el (format-seconds): New function.
7450         (emacs-uptime): Use format-seconds.
7452         * Makefile.in (custom-deps, finder-data, autoloads, recompile):
7453         Remove `LC_ALL=C', since it's included in $(emacs) now.
7455 2008-02-14  Zhang Wei  <id.brep@gmail.com>
7457         * textmodes/org-publish.el (org-publish-timestamp-filename):
7458         Replace colon characters in filename too.
7460 2008-02-13  Bastien Guerry  <bzg@altern.org>
7462         * mail/rmail.el (rmail-header-name): New face.
7463         (rmail-font-lock-keywords): Use rmail-header-name.
7465         * mail/rmail-spam-filter.el (rsf-definitions-alist): Allow check
7466         against X-Spam-Status header field.
7467         (rmail-spam-filter): Also check X-Spam-Status header field.
7469 2008-02-14  Mark A. Hershberger  <mah@everybody.org>
7471         * progmodes/flymake.el (flymake-allowed-file-name-masks):
7472         Add support for .pm files and .php files.
7473         (flymake-err-line-patterns): Add pattern for PHP errors.
7474         (flymake-php-init): New function.  PHP support for flymake.
7476         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7477         Add regular expression for PHP errors.
7479 2008-02-13  Michael Albinus  <michael.albinus@gmx.de>
7481         * net/ange-ftp.el (ange-ftp-quote-string): Use `shell-quote-argument'.
7482         This DTRT even on w32 machines.
7483         (ange-ftp-cf1): Quote FILENAME.
7485 2008-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7487         * smerge-mode.el (smerge-auto-combine-max-separation): New var.
7488         (smerge-auto-combine): New fun.
7490 2008-02-12  Juri Linkov  <juri@jurta.org>
7492         * startup.el (fancy-startup-screen, normal-splash-screen):
7493         Set default-directory to command-line-default-directory.
7495         * desktop.el (after-init-hook): Set inhibit-startup-screen to t
7496         after reading the desktop.
7498         * progmodes/compile.el (compilation-auto-jump):
7499         Call compile-goto-error only when compilation-auto-jump-to-first-error
7500         is non-nil.
7501         (compilation-scroll-output): Replace :type 'boolean with a choice
7502         that has three options including a third option `first-error'.
7503         Doc fix.
7504         (compilation-start, compilation-forget-errors): Add an alternate
7505         condition comparing compilation-scroll-output with `first-error'
7506         in addition to compilation-auto-jump-to-first-error (to call
7507         compilation-auto-jump in the proper place).
7509 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7511         * international/mule.el (sgml-html-meta-auto-coding-function):
7512         Make sure the search limit is ahead.
7514         * tar-mode.el: Fix broken indentation.
7515         (tar-mouse-extract, tar-extract, tar-subfile-save-buffer):
7516         Use with-current-buffer.
7518 2008-02-12  Juanma Barranquero  <lekktu@gmail.com>
7520         * hexl.el (hexl-mode): Don't make `font-lock-defaults' buffer-local;
7521         it is already automatically buffer-local.
7523 2008-02-11  Drew Adams  <drew.adams@oracle.com>
7525         * help.el (describe-key): Join some split lines to facilitate filling.
7526         * help-fns.el (describe-function-1): Fill text of overlong lines.
7528 2008-02-12  Kenichi Handa  <handa@ni.aist.go.jp>
7530         * emacs-lisp/bytecomp.el (byte-compile-lapcode):
7531         Use unibyte-string instead of string-make-unibyte.
7533         * Makefile.in (AUTOGENEL): Remove charprop.el and uni-*.el.
7535 2008-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7537         * doc-view.el (doc-view-display): Change file arg to buffer arg, so it
7538         works also for buffers w/o buffer-file-name.  Update callers.
7539         (doc-view-clone-buffer-hook): New fun.
7540         (doc-view-mode): Use it for indirect clones.  Mark the overlays with
7541         the `doc-view' property so they can be recognized.
7543         * simple.el (clone-indirect-buffer-hook): New hook.
7544         (clone-indirect-buffer): Run it.
7546 2008-02-11  Daiki Ueno  <ueno@unixuser.org>
7548         * epa.el (epa-menu-mode): Merge into epa-mode.
7549         (epa-menu-items): Rename the label "EasyPG Assistant" to
7550         "Encryption/Decryption".
7552         * epa-dired.el: Define a new minor-mode epa-dired-mode for dired.
7553         (epa-dired-mode-map): Rename from epa-dired-map.
7554         (epa-global-dired-mode): Rename the global minor mode.
7556 2008-02-11 Drew Adams  <drew.adams@oracle.com>
7558         * isearch.el (isearch-fail): New face.
7559         (isearch-message): Highlight failure part of input.
7561 2008-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7563         * ibuffer.el (ibuffer-header-line-format): New var.
7564         (ibuffer-mode): Set it instead of header-line-format.
7565         (ibuffer-update): Use it to set header-line-format.
7567         * international/mule-cmds.el (ucs-insert): Inherit surrounding
7568         properties like self-insert-command.
7570 2008-02-11  Drew Adams  <drew.adams@oracle.com>
7572         * progmodes/etags.el: Add many doc strings.
7574 2008-02-11  Jason Rumney  <jasonr@gnu.org>
7576         * ldefs-boot.el: Regenerated.
7578 2008-02-11  Glenn Morris  <rgm@gnu.org>
7580         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7581         Shorten some names.
7583         * ffap.el (ffap-rfc-directories): Add :version.
7585 2008-02-11  Chris Moore  <christopher.ian.moore@gmail.com>
7587         * jka-cmpr-hook.el (jka-compr-compression-info-list): Handle .sifz
7588         files, and backup files of same.
7590 2008-02-11  Kevin Ryde  <user42@zip.com.au>
7592         * ffap.el (ffap-rfc-directories): New variable.
7593         (ffap-rfc): Look in those dirs before offering ffap-rfc-path.
7595         * info.el (Info-next-reference, Info-prev-reference)
7596         (Info-try-follow-nearest-node): Move to and follow https:// links too.
7598         * simple.el (completion-list-mode): Show full completion-list-mode-map
7599         in the docstring.
7601 2008-02-11  Sam Steingold  <sds@gnu.org>
7603         * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
7605 2008-02-11  Glenn Morris  <rgm@gnu.org>
7607         * startup.el (emacs-startup-time): New variable.
7608         (command-line): Set emacs-startup-time.
7610         * calendar/time-date.el (emacs-uptime): New function.
7612 2008-02-10  Bastien Guerry  <bzg@altern.org>
7614         * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
7615         (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
7616         it is nil.
7618 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
7620         * epg-config.el: Expand the contents of epg-package-info.el.
7621         (epg-package-name): New constant.
7622         (epg-version-number): New constant.
7623         (epg-bug-report-address): New constant.
7625         * epa-mail.el (epa-mail-mode): Add autoload cookie.
7626         (epa-global-mail-mode): New global minor mode.
7628         * epa-file.el (epa-file-mode): New global minor mode.
7630         * epa-dired.el (epa-dired-mode): New global minor mode.
7632         * epa.el (epa-menu): New variable.
7633         (epa-menu-items): New variable.
7634         (epa-menu-mode): New global minor mode.
7635         (epa-global-minor-modes): New user option.
7636         (epa-mode): New global minor mode.
7638 2008-02-10  Michael Albinus  <michael.albinus@gmx.de>
7640         * net/dbus.el: Remove `no-byte-compile' cookie.
7641         (dbus-call-method, dbus-register-signal, dbus-debug)
7642         (dbus-registered-functions-table): Declare them with
7643         `declare-function' or `defvar', respectively.
7644         (top): Don't assert any longer.  Require 'cl when compiling.
7645         Apply `ignore-errors' but `dbus-ignore-errors'.
7647 2008-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
7649         * diff-mode.el (diff-add-change-log-entries-other-window):
7650         Use add-change-log-entry.
7652 2008-02-09  Jason Rumney  <jasonr@gnu.org>
7654         * button.el (button-map):
7655         * wid-edit.el (widget-keymap): Avoid line-end confusion in autoloads.
7656         * ldefs-boot.el: Regenerate.
7658 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
7660         * epa.el (epa-faces, epa):
7661         * epa-file.el (epa-file):
7662         * epg-config.el (epg): Add :version.
7664 2008-02-09  Thien-Thi Nguyen  <ttn@gnuvola.org>
7666         * vc.el (vc-exec-after): Append CODE to previous fragments.
7667         (vc-diff-finish): Take BUFFER directly, not BUFFER-NAME;
7668         take MESSAGES instead of VERBOSE; use it when non-nil.
7669         (vc-diff-internal): Compute messages once; use them;
7670         update call to vc-diff-finish.
7672 2008-02-09  Michael Olson  <mwolson@gnu.org>
7674         * net/tramp.el (tramp-process-sentinel): Avoid error when process
7675         buffer has been killed, such as by
7676         `tramp-cleanup-all-connections'.
7678 2008-02-09  Miles Bader  <miles@gnu.org>
7680         * net/rcirc.el (rcirc-omit-mode): Suppress invisibility ellipsis.
7682 2008-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7684         * diff-mode.el (diff-add-change-log-entries-other-window): Avoid the
7685         splitter in context hunks.
7687 2008-02-08  Kenichi Handa  <handa@ni.aist.go.jp>
7689         * international/fontset.el (setup-default-fontset): Fix arabic otf
7690         font specification.
7692 2008-02-08  Daiki Ueno  <ueno@unixuser.org>
7694         * epa-dired.el:
7695         * epa-file.el:
7696         * epa-mail.el:
7697         * epa-setup.el:
7698         * epa.el:
7699         * epg-config.el:
7700         * epg-package-info.el:
7701         * epg.el: Initial check-in of EasyPG.
7703 2008-02-08  Glenn Morris  <rgm@gnu.org>
7705         * woman.el (woman-locale): New defcustom.
7706         (woman-expand-locale, woman-manpath-add-locales): New functions.
7707         (woman-manpath): Call woman-manpath-add-locales.  Bump :version.
7709         * international/mule-cmds.el (locale-translate): New function,
7710         with old code extracted from set-locale-environment.
7711         (set-locale-environment): Use locale-translate.  Set woman-locale.
7713         * cus-start.el (selection-coding-system): Remove, since it's now
7714         defined in select.el rather than in xselect.c.
7715         * select.el (selection-coding-system): Make it a defcustom, and
7716         add the properties from cus-start.el.  Bump :version.
7718         * custom.el (custom-theme-set-variables): Sort symbols that are
7719         dependencies before symbols that depend on them.
7720         (custom-enabled-themes): Set after custom-theme-directory.
7722         * pcmpl-unix.el (top-level): Move provide statement to end.
7723         (pcmpl-unix-group-file, pcmpl-unix-passwd-file): Remove leading
7724         `*' from doc-string.  Allow to be nil.
7725         (pcmpl-ssh-known-hosts-file): Convert comment into expanded doc-string.
7726         Allow to be nil.  Add :version.
7727         (pcmpl-ssh-hosts): Move definition before use.  Handle lines
7728         without hostnames, and multiple hostnames per line.
7730         * term/x-win.el (x-handle-parent-id): Remove free variable `parent-id'.
7732 2008-02-08  Phil Hagelberg  <phil@evri.com>
7734         * pcmpl-unix.el (pcmpl-ssh-known-hosts-file): New defcustom.
7735         (pcomplete/ssh, pcomplete/scp, pcmpl-ssh-hosts): New functions.
7737 2008-02-07  Timo Savola  <timo.savola@iki.fi>
7739         * startup.el (command-line-x-option-alist): Add --parent-id.
7741         * term/x-win.el (x-handle-parent-id): New function.
7743 2008-02-07  Chris Moore  <christopher.ian.moore@gmail.com>
7745         * mouse.el (x-fixed-font-alist): Use consistent capitalization for
7746         "Font Menu".
7748 2008-02-06  Michael Albinus  <michael.albinus@gmx.de>
7750         * net/dbus.el (dbus-interface-peer): New defconst.
7751         (dbus-ping): New defun.
7753 2008-02-06  Sam Steingold  <sds@gnu.org>
7755         * vc-hooks.el (vc-prefix-key): New user-customizable variable.
7757 2008-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7759         * net/ange-ftp.el (ange-ftp-unhandled-file-name-directory):
7760         Just return nil and let the C code provide a fallback.
7762 2008-02-05  Glenn Morris  <rgm@gnu.org>
7764         * net/tramp-cmds.el (tramp-cleanup-connection): Update calls to
7765         tramp-flush-connection-property for removed 2nd argument.
7767 2008-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7769         * diff-mode.el (diff-add-change-log-entries-other-window):
7770         Rename from diff-create-changelog.  Change users.
7771         Minor change to hopefully work with plain diffs.
7772         (diff-mode-map): Add binding for it.
7774 2008-02-04  Dan Nicolaescu  <dann@ics.uci.edu>
7776         * diff-mode.el: Add new TODO entry.
7777         (diff-create-changelog): New function.
7778         (diff-mode-menu): Bind it.
7780 2008-02-04  Kenichi Handa  <handa@ni.aist.go.jp>
7782         * international/mule-diag.el (print-fontset-element): Handle the
7783         case of inhibiting the fallback fonts.
7785 2008-02-04  Kim F. Storm  <storm@cua.dk>
7787         * ido.el (ido-magic-forward-char, ido-magic-backward-char)
7788         (ido-magic-delete-char): Use prefix arg.
7790 2008-02-03  Juanma Barranquero  <lekktu@gmail.com>
7792         * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
7793         because the latter is in fact a 1.2.8 build distributed with GTK+ (as
7794         of today, the most recent libpng is 1.2.24).
7796 2008-02-03  Michael Albinus  <michael.albinus@gmx.de>
7798         * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote files.
7800         * net/dbus.el (top): Check (featurep 'dbusbind).
7802         * net/tramp.el (tramp-process-sentinel): New defun.
7803         (tramp-do-copy-or-rename-file-out-of-band)
7804         (tramp-maybe-open-connection): Use it as process sentinel.
7805         (tramp-handle-delete-directory): Don't use the "-f" option; it
7806         isn't portable.
7807         (tramp-handle-start-file-process): Echo `tramp-end-of-output'
7808         after the command.
7809         (tramp-handle-shell-command): Set `mode-line-process' in the
7810         asynchronous case.
7812         * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
7814         * net/tramp-fish.el (tramp-fish-maybe-open-connection):
7815         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
7816         Use `tramp-process-sentinel' as process sentinel.
7818 2008-02-02  Juanma Barranquero  <lekktu@gmail.com>
7820         * whitespace.el (global-whitespace-mode): Revert last change.
7821         (whitespace-unload-function): Force `global-whitespace-mode'
7822         to deactivate local modes in a slightly less intrusive way.
7824 2008-02-02  Eli Zaretskii  <eliz@gnu.org>
7826         * view.el (kill-buffer-if-not-modified): Add an autoload cookie.
7828 2008-02-02  Glenn Morris  <rgm@gnu.org>
7830         * international/latin1-disp.el (latin1-display):
7831         * progmodes/fortran.el (fortran-comment-indent-char):
7832         * progmodes/idlw-shell.el (top-level):
7833         * term/mac-win.el (mac-keyboard-translate-char):
7834         * whitespace.el (whitespace-char-valid-p):
7835         * wid-edit.el (widget-key-sequence-read-event):
7836         Use characterp rather than char-valid-p.
7838         * progmodes/cap-words.el (capitalized-next-word-boundary): Rename
7839         to capitalized-find-word-boundary.  Doc fix.  Update callers.
7840         (capitalized-next-word-boundary-function-table): Rename to
7841         capitalized-find-word-boundary-function-table.  Doc fix.  Update users.
7843         * ps-bdf.el (bdf-read-font-info): Use string-to-number rather than
7844         string-to-int.
7846         * ps-def.el (declare-function): Add compatibility definition.
7847         (ps-plot-with-face, ps-plot-string): Declare as functions.
7848         (ps-bold-faces, ps-italic-faces): Declare variables.
7850         * ps-print.el (ps-mule-initialize, ps-mule-begin-job)
7851         (ps-mule-end-job): Declare as functions.
7853         * wid-edit.el (widget-string-complete): Use assoc-string rather
7854         than assoc-ignore-case.
7856 2008-02-01  Chong Yidong  <cyd@stupidchicken.com>
7858         * progmodes/etags.el (next-file): Improve revert message.
7860 2008-02-01  Andreas Schwab  <schwab@suse.de>
7862         * loadup.el: Load language/burmese instead of language/myanmar.
7864 2008-02-01  Richard Stallman  <rms@gnu.org>
7866         * language/burmese.el: Rename from myanmar.el.
7867         ("Burmese"): Rename from "Myanmar".
7869 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7871         * international/fontset.el (script-representative-chars): Add cham
7872         and tai-viet.
7873         (setup-default-fontset): Add iso10646-1 font for latin and ipa.
7874         Add fontconfig spec for cjk-misc.  Explicitly specify font font
7875         for U+E000..U+F8FF.
7877         * international/characters.el (script-list): Add cham.
7879         * language/cham.el: New file.
7881 2008-02-01  Mark A. Hershberger  <mah@everybody.org>
7883         * xml.el (xml-escape-string): Don't do any encoding changes on the
7884         string.
7886 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7888         * language/ind-util.el (in-is13194-post-read-conversion):
7889         Delete unnecessary call of indian-compose-region.
7891 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7893         * ps-print.el: Some face attributes (like :strike-through) were not
7894         being recognised.  Reported by Leo <sdl.web@gmail.com>.
7895         (ps-print-version): New version 7.3.2.
7896         (ps-screen-to-bit-face): Fix code.  Call ps-face-strikout-p,
7897         ps-face-overline-p and ps-face-box-p functions.
7899         * ps-def.el (ps-face-strikout-p, ps-face-overline-p, ps-face-box-p):
7900         New functions.
7902 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7904         * international/fontset.el (font-encoding-alist): Add an entry for
7905         iso8859-16.
7906         (setup-default-fontset): Add iso8859-16 to latin.
7908         * descr-text.el (describe-char-display): Convert a GLYPH-CODE to a
7909         hexadigit string.
7910         (describe-char): Adjust for the above change.
7912 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7914         * international/fontset.el (font-encoding-alist): Don't set the
7915         repertory of GB18030 fonts.
7917 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7919         * language/indian.el: Set font-shape-text for all Indic characters
7920         in composition-function-table.
7922         * language/khmer.el: New file.
7924         * language/myanmar.el: New file.
7926         * loadup.el: Load "language/khmer" and "language/myanmar".
7928 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7930         * international/fontset.el (setup-default-fontset): Fix lao OTF
7931         script name.
7933 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7935         * composite.el (terminal-composition-modification): Delete it.
7937 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7939         * international/fontset.el (x-complement-fontset-spec):
7940         Complement size too.
7942 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7944         * international/fontset.el (font-encoding-charset-alist):
7945         Initialize it.
7946         (otf-script-alist): Fix typo of canadian-aboriginal.
7947         (setup-default-fontset): Specify font-specs for many more scripts.
7948         (x-complement-fontset-spec): Change the first argument to a
7949         font-spec object.
7950         (create-fontset-from-fontset-spec): Adjust for the above change.
7952 2008-02-01  Kenichi Handa  <handa@m17n.org>
7954         * language/devanagari.el: Register font-shape-text in
7955         composition-function-table.
7957         * language/tibetan.el: Register font-shape-text in
7958         composition-function-table.
7960         * language/thai-util.el (thai-composition-function): Fix arguments.
7962         * language/tamil.el: Register font-shape-text in
7963         composition-function-table.
7965         * language/malayalam.el: Register font-shape-text in
7966         composition-function-table.
7968         * language/lao.el: Register font-shape-text in
7969         composition-function-table.
7971         * language/kannada.el: Register font-shape-text in
7972         composition-function-table.
7974         * language/european.el (diacritic-composition-function): Fix arguments.
7976         * language/ethio-util.el (ethio-composition-function): Fix arguments.
7978         * language/tv-util.el (tai-viet-composition-function): Fix arguments.
7980         * composite.el (composition-function-table): Fix docstring.
7981         (terminal-composition-function): Fix arguments.
7982         (auto-compose-current-font): Delete it.
7983         (auto-compose-chars): Adjust for the change of
7984         composition-function-table.
7986 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7988         * international/fontset.el (font-encoding-alist): Add the entry of
7989         "unicode-bmp".
7991 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
7993         * composite.el (auto-compose-chars): Be sure to calculate
7994         composition at least at POS.
7996 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7998         * printing.el: Fix pr-interface-map initialization code.
7999         (pr-version): New version 6.9.3.
8000         (pr-f-set-keymap-parents): Replace by pr-set-keymap-parents.
8001         (pr-f-set-keymap-name): Replace by pr-set-keymap-name.
8002         (pr-f-read-string): Replace by pr-read-string.
8003         (pr-set-keymap-parents, pr-set-keymap-name, pr-read-string):
8004         New function name.
8005         (pr-interactive-n-up, pr-interactive-regexp): Code fix.
8007 2008-02-01  Kenichi Handa  <handa@m17n.org>
8009         * language/tv-util.el (tai-viet-re): Include '-'.
8010         (tai-viet-glyph-info): Handle '-'.
8012 2008-02-01  Kenichi Handa  <handa@m17n.org>
8014         * descr-text.el (describe-char): Handle a composition of the new
8015         format.  Show font name.
8017 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8019         * language/tibet-util.el (tibetan-composition-function): Use
8020         font-shape-text if auto-compose-current-font is non-nil.
8022         * language/tibetan.el: Fix the range for recording
8023         tibetan-composition-function in composition-function-table.
8025         * language/mlm-util.el (malayalam-composition-function): Use
8026         font-shape-text if auto-compose-current-font is non-nil.
8028         * international/mule-conf.el: Flag many charsets as supplementary.
8030         * international/mule.el (define-charset): Update the docstring for
8031         :supplementary-p.
8033         * international/fontset.el (setup-default-fontset): Add OpenType
8034         fonts for malayalam and tibetan.
8036 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8038         * international/fontset.el (x-complement-fontset-spec): Use font-spec.
8040 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8042         * international/fontset.el (otf-script-alist): Make all otf tags
8043         4-letters.
8044         (setup-default-fontset): Add OpenType fonts for devanagari and tamil.
8046         * language/tml-util.el (tamil-composition-function): Use
8047         font-shape-text if auto-compose-current-font is non-nil.
8049         * language/devan-util.el (devanagari-composition-function): Use
8050         font-shape-text if auto-compose-current-font is non-nil.
8052         * composite.el (auto-compose-chars): Change argument font-object
8053         to window.
8055 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8057         * ps-print.el (ps-lpr-switches): Docstring fix.
8058         (ps-string-list): New function.
8059         (ps-do-despool): Code fix.
8061 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
8063         * international/utf-7.el (utf-7-imap-post-read-conversion)
8064         (utf-7-imap-pre-write-conversion): New functions.
8066         * international/mule-conf.el (utf-7-imap): New coding system.
8068 2008-02-01  Kenichi Handa  <handa@m17n.org>
8070         * term/x-win.el (x-selection-value): If x-select-request-type is
8071         nil, try also STRING at last.
8072         (x-select-request-type): Doc fix for the change of x-selection-value.
8074         * select.el (selection-coding-system, next-selection-coding-system):
8075         Move declarations from xselect.c.
8076         (x-get-selection): Decode by selection-coding-system if it is non-nil.
8077         If it is nil, decode by a proper coding system.  Handle C_STRING.
8078         (ccl-check-utf-8, string-utf-8-p): Delete them.
8079         (xselect-convert-to-string): Fix determining data-type in the case
8080         that TEXT is requested.  Don't use selection-coding-system if it's
8081         not proper for the data-type.
8083 2008-02-01  Kenichi Handa  <handa@m17n.org>
8085         * term/x-win.el (x-selection-value): If x-select-request-type is
8086         nil, simply try UTF8_STRING and COMPOUND-TEXT in this order.
8088 2008-02-01  Jason Rumney  <jasonr@gnu.org>
8090         * term/w32-win.el (w32-initialize-window-system): Use t, not nil
8091         to signify default fontset.
8093 2008-02-01  Kenichi Handa  <handa@m17n.org>
8095         * international/mule-cmds.el (describe-language-environment):
8096         Check if the specified input method exists or not.
8098 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8100         * ps-print.el (ps-begin-job): Error if ps-lpr-switches is not a list.
8101         (ps-face-background-name): Remove this function.  It's already defined
8102         in ps-def.el file.
8104 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8106         * ps-print.el: Eliminate the check if ps-print was running on Lucid or
8107         Epoch emacsen.
8109 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8111         * ps-print.el: Now detect if text foreground and background colors are
8112         equals and replace the foreground color by another color, so the text
8113         becomes visible.  Doc fix.
8114         (ps-print-version): New version 7.3.
8115         (ps-default-fg, ps-default-bg): Docstring fix.
8116         (ps-fg-list, ps-fg-validate-p): New options.
8117         (ps-foreground-list): New variable.
8118         (ps-generate-header-line): Replace fboundp by functionp.
8119         (ps-setup, ps-begin-job, ps-plot-region): Fix code.
8121 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8123         * printing.el: Pacify byte compiler, that is, no compiler warnings.
8124         Move (again) some variable definitions before use, define some
8125         function aliases, no code change.
8126         (pr-version): New version 6.9.2.
8127         (pr-path-style, pr-auto-region, pr-menu-char-height)
8128         (pr-menu-char-width, pr-menu-lock, pr-ps-printer-alist)
8129         (pr-txt-printer-alist, pr-ps-utility-alist): Options declaration
8130         via (defvar VAR).
8131         (pr-menu-lookup, pr-menu-lock, pr-menu-alist, pr-even-or-odd-pages)
8132         (pr-menu-get-item, pr-menu-set-item-name, pr-menu-set-utility-title)
8133         (pr-menu-set-ps-title, pr-menu-set-txt-title, pr-region-active-p)
8134         (pr-do-update-menus, pr-update-mode-line, pr-f-read-string)
8135         (pr-f-set-keymap-parents, pr-keep-region-active): Function aliases.
8136         (pr-menu-print-item, pr-ps-printer-menu-modified)
8137         (pr-txt-printer-menu-modified, pr-ps-utility-menu-modified)
8138         (pr-even-or-odd-alist): Move variable definitions.
8140 2008-02-01  Kenichi Handa  <handa@m17n.org>
8142         * language/chinese.el (cp936): Delete duplicated alias.
8144         * international/mule-diag.el (list-block-of-chars): Don't insert
8145         non-Unicode characters.
8147 2008-02-01  Jason Rumney  <jasonr@gnu.org>
8149         * loadup.el [windows-nt]: Don't load code-pages and ccl.
8150         * term/w32-win.el: Don't require code-pages.
8152 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8154         Fix up multi-tty merge.
8156         * version.el (emacs-version): Bump to 23.0.60.
8158         * term/x-win.el (x-initialize-window-system): Don't try to create
8159         a fontset from a font-specification anymore.  This was removed on the
8160         unicode branch and mistakenly re-added by the multi-tty merge.
8162         * term/w32-win.el: Remove duplicate code that's now in
8163         w32-initialize-window-system.
8164         (w32-initialize-window-system): Don't try to create a fontset from
8165         a font-specification anymore.  This was removed on the unicode branch
8166         and mistakenly re-added by the multi-tty merge.
8168         * term/mac-win.el: Remove duplicate top-level code.
8170         * language/ethio-util.el:
8171         * international/characters.el: Use utf-8 rather than utf-8-emacs
8172         since it works as well and has the advantage of working with
8173         non-unicode versions of Emacs.
8175         * international/encoded-kb.el (encoded-kbd-setup-display): Use the new
8176         multi-tty code, which includes the previous local change.
8178 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8180         * ps-print.el (ps-print-version): New version 7.2.5.
8181         (ps-background, ps-begin-file, ps-build-reference-face-lists):
8182         Use `mapc' rather than `mapcar'.
8184 2008-02-01  Kenichi Handa  <handa@m17n.org>
8186         * skeleton.el (skeleton-internal-1): Use integerp and stringp
8187         instead of char-or-string-p to catch -1.
8189 2008-02-01  Kenichi Handa  <handa@m17n.org>
8191         * international/mule-cmds.el (inactivate-input-method):
8192         Set input-method-function to nil before calling
8193         inactivate-current-input-method-function.
8195 2008-02-01  Kenichi Handa  <handa@m17n.org>
8197         * play/gamegrid.el (gamegrid-setup-default-font): Calculate a font
8198         height that doesn't exceed the requested height by rounding off.
8200 2008-02-01  Andreas Schwab  <schwab@suse.de>
8202         * international/mule-diag.el (print-fontset-element):
8203         Use fontp only if defined.
8205 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8207         * ps-mule.el (ps-mule-prepare-font, ps-mule-encode-region)
8208         (ps-mule-plot-composition, ps-mule-encode-header-string): Docstring fix.
8209         (ps-mule-prologue-generated): Code fix.
8211 2008-02-01  Kenichi Handa  <handa@m17n.org>
8213         * dnd.el (dnd-get-local-file-name): Call replace-regexp-in-string
8214         with FIXEDCASE t.
8216 2008-02-01  Kenichi Handa  <handa@m17n.org>
8218         * international/mule-diag.el (print-fontset-element): Fix for the
8219         format change of a fontset element for font-backend feature.
8221 2008-02-01  Kenichi Handa  <handa@m17n.org>
8223         * descr-text.el (describe-char): Fix for the case that a component
8224         character is TAB.
8226 2008-02-01  Kenichi Handa  <handa@m17n.org>
8228         * international/mule-cmds.el (select-safe-coding-system-interactively):
8229         Fix printing of rejected and unsafe coding-systems.
8231         * international/fontset.el (setup-default-fontset): Add tai-viet.
8233         * international/characters.el: Setup syntax/category table for Tai Viet.
8234         (script-list): Add tai-viet.
8236         * loadup.el: Load "language/tai-viet".
8238         * language/tai-viet.el: New file.
8240         * language/tv-util.el: New file.
8242 2008-02-01  Jason Rumney  <jasonr@gnu.org>
8244         * faces.el (font-weight-table): Use defaults on w32 that match
8245         LOGFONT.lfWeight.
8247         * term/w32-win.el: Don't create fontset from command-line font.
8249 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
8251         * international/mule-cmds.el (toggle-enable-multibyte-characters)
8252         (sort-coding-systems, search-unencodable-char): Doc fixes.
8253         (default-input-method, input-method-verbose-flag)
8254         (input-method-highlight-flag): Remove * in defcustom's docstrings.
8255         (exit-language-environment-hook, set-default-coding-systems)
8256         (coding-system-change-eol-conversion, prefer-coding-system)
8257         (find-multibyte-characters, leim-list-entry-regexp)
8258         (set-input-method, input-method-exit-on-first-char, princ-list)
8259         (locale-language-names, locale-charset-language-names)
8260         (define-char-code-property): Fix typos in docstrings.
8262 2008-02-01  Kenichi Handa  <handa@m17n.org>
8264         * disp-table.el (make-glyph-code, glyph-char, glyph-face):
8265         Fix for a new character code space (22-bit).
8267 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
8269         * printing.el (pr-ps-fast-fire): Fix typos in docstring.
8271 2008-02-01  Kenichi Handa  <handa@m17n.org>
8273         * international/characters.el: Add more cases/syntaxes from Latin
8274         characters.
8276 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8278         * ps-def.el (installation-directory): Must be initialized when defining
8279         it in XEmacs.
8280         (coding-system-for-read): Eliminate duplicated definition.
8282 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8284         * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil).
8286 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8288         * ps-print.el: Replace (defvar VAR nil) by (defvar VAR).
8289         (ps-print-emacs-type): Eliminate variable.
8290         (ps-setup): Remove ps-print-emacs-type.  Print which Emacsen is
8291         running ps-print package.
8293         * ps-def.el: Replace (defvar VAR nil) by (defvar VAR).
8294         (ps-frame-parameter): Replace defun by defalias.
8295         (mark-active): Eliminate defvar.
8297         * ps-samp.el (ps-prsc, ps-c-prsc, ps-s-prsc): Eliminate macros.
8298         (ps-rmail-mode-hook, ps-vm-mode-hook, ps-gnus-summary-setup)
8299         (ps-jts-ps-setup): Replace macros by vector key definition.
8301 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8303         * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
8304         * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
8305         * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
8306         * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
8307         * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
8308         * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
8309         New command actions for EPS header and EPS footer.
8311         * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
8312         footer.  Fix some problems with one-or-more, zero-or-more and
8313         alternative constructions generation.  Some implementation of log
8314         messages.  Doc fix.
8315         (ebnf-version): New version 4.4.
8316         (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
8317         (ebnf-eps-footer, ebnf-log): New options.
8318         (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
8319         (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
8320         (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
8321         (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
8322         (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New functions.
8323         (ebnf-style-custom-list, ebnf-style-database): Put new values.
8324         (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
8325         (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
8326         (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
8327         (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
8328         (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
8329         (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
8330         (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
8331         (ebnf-non-terminal-dimension, ebnf-special-dimension)
8332         (ebnf-terminal-dimension1, ebnf-repeat-dimension)
8333         (ebnf-except-dimension, ebnf-alternative-dimension)
8334         (ebnf-optional-dimension, ebnf-one-or-more-dimension)
8335         (ebnf-zero-or-more-dimension, ebnf-sequence-dimension):
8336         Insert log message function.
8337         (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
8338         (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
8339         (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
8340         (ebnf-terminal-dimension1, ebnf-alternative-dimension)
8341         (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
8342         (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
8343         (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
8344         compatibility with Emacs 20 & 21.
8345         (ebnf-eps-header-comment, ebnf-eps-footer-comment)
8346         (ebnf-eps-file-alist, ebnf-basic-width-extra)
8347         (ebnf-basic-empty-height): New variables.
8348         (ebnf-prologue): Fix PostScript code.
8349         (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
8350         (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
8351         (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
8352         (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
8354 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8356         * printing.el: Group together all XEmacs/Emacs definitions.
8357         (pr-version): New version 6.9.
8358         (pr-global-menubar, pr-menu-char-height, pr-menu-char-width):
8359         New functions.
8360         (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
8361         (pr-menu-bind): Fix code.
8362         (pr-e-frame-char-height, pr-e-frame-char-width)
8363         (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
8364         (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
8365         (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
8366         (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
8367         (pr-x-event-y-pixel): Eliminate aliases.
8368         (pr-xemacs-global-menubar): Move macro.
8369         (current-menubar, current-mouse-event, zmacs-region-stays)
8370         (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
8371         (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
8372         Move variables.
8373         (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
8374         (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
8375         (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
8376         (pr-menu-set-utility-title, pr-even-or-odd-pages)
8377         (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
8378         (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name):
8379         Move functions.
8381 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8383         * ps-print.el: The ps-print commands without face printing should not
8384         print background color.  Reported by Leo <sdl.web@gmail.com>.
8385         (ps-print-version): New version 7.2.2.
8386         (ps-begin-job): New arg.  Fix ps-default-background and
8387         ps-default-foreground initialization.
8388         (ps-face-attributes): Fix doc string.
8389         (ps-face-background, ps-generate-postscript, ps-generate): Fix code.
8391         * printing.el: Fix ps-print link.
8393 2008-02-01  Kenichi Handa  <handa@m17n.org>
8395         * international/mule-diag.el (list-character-sets-2): Don't print width.
8397 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8399         * ps-print.ps: Fix background height.
8400         (ps-print-version): New version 7.2.1.
8402 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8404         * ps-print.el: Split XEmacs/Emacs definitions and sample setup code
8405         into separate files.
8406         (ps-print-version): New version 7.2.
8407         (ps-postscript-code-directory): Fix XEmacs initialization.
8408         (ps-generate-postscript-with-faces):
8409         Call ps-generate-postscript-with-faces1 (new function).
8410         (ps-color-format, ps-float-format): Move variables to ps-def.el.
8411         (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
8412         (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
8413         (ps-face-background-name, ps-frame-parameter, ps-color-device)
8414         (ps-color-values, ps-face-bold-p, ps-face-italic-p):
8415         Move functions to ps-def.el.
8416         (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
8417         (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
8418         (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
8419         (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
8420         (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
8421         (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
8422         Move functions to ps-samp.el.
8424         * ps-bdf.el (installation-directory, coding-system-for-read):
8425         Move variables to ps-def.el.
8427         * ps-mule.el (leading-code-private-22): Move variables to ps-def.el.
8428         (charset-bytes, charset-dimension, charset-id, charset-width)
8429         (find-charset-region, char-width, chars-in-region, forward-point)
8430         (decompose-composite-char, encode-coding-string, coding-system-p)
8431         (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
8432         (string-make-multibyte, encode-char): Move functions to ps-def.el.
8434         * ps-def.el: New file.  XEmacs/Emacs definitions.
8435         (ps-generate-postscript-with-faces1): New function.
8436         (ps-color-format, ps-float-format): Move variables from ps-print.el.
8437         (ps-xemacs-color-name, ps-mapper, ps-extent-sorter)
8438         (ps-xemacs-face-kind-p, ps-mark-active-p, ps-face-foreground-name)
8439         (ps-face-background-name, ps-frame-parameter, ps-color-device)
8440         (ps-color-values, ps-face-bold-p, ps-face-italic-p):
8441         Move functions from ps-print.el.
8442         (installation-directory, coding-system-for-read):
8443         Move variables from ps-bdf.el.
8444         (leading-code-private-22): Move variable from ps-mule.el.
8445         (charset-bytes, charset-dimension, charset-id, charset-width)
8446         (find-charset-region, char-width, chars-in-region, forward-point)
8447         (decompose-composite-char, encode-coding-string, coding-system-p)
8448         (ccl-execute-on-string, define-ccl-program, multibyte-string-p)
8449         (string-make-multibyte, encode-char): Move functions from ps-mule.el.
8451         * ps-samp.el: New file.  Sample setup code.
8452         (ps-prsc, ps-c-prsc, ps-s-prsc, ps-rmail-mode-hook)
8453         (ps-rmail-print-message-from-summary, ps-print-message-from-summary)
8454         (ps-article-subject, ps-article-author, ps-gnus-article-prepare-hook)
8455         (ps-vm-mode-hook, ps-gnus-print-article-from-summary)
8456         (ps-vm-print-message-from-summary, ps-gnus-summary-setup, ps-info-file)
8457         (ps-info-node, ps-info-mode-hook, ps-jts-ps-setup, ps-jack-setup):
8458         Move functions from ps-print.el.
8460 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8462         * ps-print.el: Handle frame parameters (background and/or foreground
8463         colors) changing dynamically.  Reported by Leo <sdl.web@gmail.com>.
8464         (ps-print-version): New version 7.1.
8465         (ps-x-frame-property, ps-e-frame-parameter): New aliases.
8466         (ps-frame-parameter): New function.
8467         (ps-default-fg, ps-default-bg): New default value ('frame-parameter).
8468         Fix doc and customization.
8469         (ps-begin-job): Get frame parameters (background and/or foreground
8470         colors).
8471         (ps-do-despool): Ensure ps-printer-name has a valid value.
8473 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8475         * progmodes/ebnf-abn.el:
8476         * progmodes/ebnf-bnf.el:
8477         * progmodes/ebnf-dtd.el:
8478         * progmodes/ebnf-ebx.el:
8479         * progmodes/ebnf-iso.el:
8480         * progmodes/ebnf-otz.el:
8481         * progmodes/ebnf-yac.el:
8482         * progmodes/ebnf2ps.el:
8483         * delim-col.el:
8484         * printing.el:
8485         * ps-bdf.el:
8486         * ps-mule.el:
8487         * ps-print.el: Remove 'Time-stamp' comment mark.
8489         * printing.el (pr-menu-bind): Replace 'easy-menu-change' by
8490         'easy-menu-add-item' when called in Emacs 21 or higher.
8492 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8494         * ps-print.el : Fix doc.
8495         (ps-print-version): New version 7.0.
8497 2008-02-01  Kenichi Handa  <handa@m17n.org>
8499         * mail/emacsbug.el (report-emacs-bug): Insert also the value of
8500         XMODIFIERS.
8502 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8504         * ps-print.el: Fix maintainer email.  Eliminate function declaration
8505         that kept compatibility with older Emacs version.
8506         (ps-print-version): New version 6.7.
8508 2008-02-01  Kenichi Handa  <handa@m17n.org>
8510         * international/quail.el (quail-get-translations):
8511         Make quail-current-key multibyte if not yet done.
8513 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8515         * language/chinese.el ("Chinese-GBK"): Add tutorial.
8516         ("Chinese-GB18030"): Add sample-text and tutorial.
8518         * international/fontset.el (font-encoding-alist)
8519         (setup-default-fontset): Add gb18030.
8520         (x-pixel-size-width-font-regexp, vertical-centering-font-regexp)
8521         (charset-script-alist): Add gbk and gb18030.
8523         * international/characters.el: Put property
8524         preferred-coding-system on gbk and gb18030.
8526         * international/mule-cmds.el (locale-language-names): Add an entry
8527         for "zh_CN.UTF-8" and change "chs" to "Chinese-GBK".
8529         * faces.el (face-font-registry-alternatives): Add gb18030.
8531 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8533         * ps-mule.el: Fix maintainer email.
8535 2008-02-01  Kenichi Handa  <handa@m17n.org>
8537         * international/quail.el (quail-insert-kbd-layout): Check the
8538         length of (cdr translation).
8539         (quail-get-current-str): Check the length of (cdr def).
8541 2008-02-01  Kenichi Handa  <handa@m17n.org>
8543         * ruler-mode.el (ruler-mode-ruler): Make the string `ruler' multibyte.
8545 2008-02-01  Kenichi Handa  <handa@m17n.org>
8547         * international/mule-cmds.el (ucs-insert): Re-implement.
8549 2008-02-01  Kenichi Handa  <handa@m17n.org>
8551         * composite.el (terminal-composition-modification): New function.
8552         (terminal-composition-function): Create composition with the above
8553         modification function.
8555 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8557         * international/characters.el: Add more full-width characters in
8558         char-width-table.
8560 2008-02-01  Kenichi Handa  <handa@m17n.org>
8562         * international/fontset.el (create-fontset-from-fontset-spec):
8563         Fix script name handling.
8565 2008-02-01  Kenichi Handa  <handa@m17n.org>
8567         * composite.el (terminal-composition-function): New function.
8568         (terminal-composition-function-table): New variable.
8569         (auto-compose-chars): If running on a terminal, use
8570         terminal-composition-function-table.
8572         * loadup.el: Load "composite" after "international/characters".
8574         * international/characters.el: Delete codes for setting up charset
8575         property nospace-between-words.  Fix setting up of
8576         char-width-table.  Don't make ethiopic and tibetan double column.
8578         * textmodes/fill.el (fill-find-break-point-function-table):
8579          Don't set it up in defvar.
8580         (fill-nospace-between-words-table): New variable.
8581         (fill-delete-newlines): Check fill-nospace-between-words-table
8582         instead of charset property nospcae-between-words.
8584 2008-02-01  Kenichi Handa  <handa@m17n.org>
8586         * composite.el (global-auto-composition-mode): Make the initial
8587         value not depend on emacs-basic-display.
8589         * textmodes/fill.el: Don't use charset property
8590         `fill-find-break-point-function'.
8591         (fill-find-break-point-function-table): New variable.
8592         (fill-find-break-point): Lookup fill-find-break-point-function-table.
8594 2008-02-01  Kenichi Handa  <handa@m17n.org>
8596         * international/mule.el (coding-system-list): Be sure to exclude
8597         subsidiary coding systems.
8599 2008-02-01  Kenichi Handa  <handa@m17n.org>
8601         * composite.el (auto-composition-after-change)
8602         (toggle-auto-composition): Remove `auto-composed' property instead
8603         of setting it to nil.
8605 2008-02-01  Kenichi Handa  <handa@m17n.org>
8607         * language/misc-lang.el (iso-8859-6): New coding system.
8609 2008-02-01  Kenichi Handa  <handa@m17n.org>
8611         * dnd.el (dnd-get-local-file-name): Give a unibyte string to
8612         replace-regexp-in-string as replacement.
8614 2008-02-01  Kenichi Handa  <handa@m17n.org>
8616         * international/fontset.el (otf-script-alist): Add byzm, math,
8617         musc, and nko.
8619         * international/characters.el (script-list): Add nko,
8620         byzantine-musical-symbol, musical-symbol, and mathematical.
8622 2008-02-01  Kenichi Handa  <handa@m17n.org>
8624         * composite.el (auto-compose-current-font): New variable.
8625         (auto-compose-chars): New arg FONT-OBJECT.
8627 2008-02-01  Kenichi Handa  <handa@m17n.org>
8629         * international/characters.el: Modify category-table and
8630         script-table for new Ethiopic character range.
8632 2008-02-01  Kenichi Handa  <handa@m17n.org>
8634         * international/mule-cmds.el (set-language-environment-fontset):
8635         Delete it.
8637 2008-02-01  Kenichi Handa  <handa@m17n.org>
8639         * international/fontset.el (otf-script-alist): Set it.
8641 2008-02-01  Kenichi Handa  <handa@m17n.org>
8643         * international/fontset.el (font-encoding-alist):
8644         Fix for "ethiopic-unicode".
8646 2008-02-01  Kenichi Handa  <handa@m17n.org>
8648         * international/fontset.el (script-representative-chars):
8649         Add an entry for latin script.
8651 2008-02-01  Kenichi Handa  <handa@m17n.org>
8653         * faces.el (font-weight-table): Treat regular and normal as the
8654         same as medium.
8655         (font-slant-table): Add (roman . 100).
8657 2008-02-01  Kenichi Handa  <handa@m17n.org>
8659         These changes are for the new font handling codes.
8661         * faces.el (font-weight-table, font-slant-table)
8662         (font-swidth-table): New customizable variables.
8664         * international/fontset.el (font-encoding-alist): Add koi8-4.
8665         (script-representative-chars): Set the default value.
8666         (create-fontset-from-x-resource): Delete `message'.
8668 2008-02-01  Kenichi Handa  <handa@m17n.org>
8670         * tar-mode.el (tar-untar-buffer, tar-summarize-buffer):
8671         Call set-buffer-multibyte with arg `to'.
8673 2008-02-01  Kenichi Handa  <handa@m17n.org>
8675         * info.el (Info-fontify-node): Check if already fontified or not
8676         by next-single-property-change.
8678 2008-02-01  Kenichi Handa  <handa@m17n.org>
8680         * international/mule.el (ctext-pre-write-conversion): Produce
8681         extra designation sequence for ASCII at the end off extended segment.
8683 2008-02-01  Kenichi Handa  <handa@m17n.org>
8685         * international/mule.el (ctext-non-standard-encodings-table):
8686         Reverse the returning list.
8687         (ctext-pre-write-conversion): Fix encoding with extended segments.
8689         * international/mule-conf.el (compound-text)
8690         (compound-text-with-extensions): Add long-form in :flags.
8692 2008-02-01  Kenichi Handa  <handa@m17n.org>
8694         * international/fontset.el (create-fontset-from-fontset-spec): Fix
8695         regexp for paring FONTSET-SPEC (allow spaces after `:').
8697 2008-02-01  Kenichi Handa  <handa@m17n.org>
8699         * international/fontset.el (create-fontset-from-fontset-spec): Fix
8700         for the case that a charset is specified as target.
8702 2008-02-01  Kenichi Handa  <handa@m17n.org>
8704         * international/ccl.el (ccl-embed-string): Check string length.
8705         Set special flag for multibyte character sequence.
8706         (ccl-compile-write-string, ccl-compile-write-repeat): Don't make
8707         str unibyte.
8708         (ccl-compile-write): If the character code doesn't fit in 22-bit
8709         (ccl-dump-write-const-string): Check special flag for multibyte
8710         character sequence.
8712 2008-02-01  Kenichi Handa  <handa@m17n.org>
8714         * ps-mule.el (ps-mule-eight-bit-char): Delete this function.
8715         (ps-mule-encode-region, ps-mule-plot-composition): Don't use
8716         ps-mule-eight-bit-char.
8718 2008-02-01  Kenichi Handa  <handa@m17n.org>
8720         * language/chinese.el ("Chinese-BIG5"):
8721         Set ctext-non-standard-encodings property to "big5-0".
8723         * international/mule.el (ctext-non-standard-encodings):
8724         Initialize to nil.
8725         (ctext-non-standard-encodings-alist): Set charset `big5' in the
8726         entry for "big5-0".
8727         (ctext-non-standard-encodings-table): Return a list instead of
8728         char-table.
8729         (ctext-pre-write-conversion): Adjust for the above change.
8731 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8733         * international/mule.el (ctext-non-standard-encodings-alist):
8734         Add an entry for gbk-0.
8735         (ctext-post-read-conversion): Use multibyt-char-to-unibyte to read
8736         a row 8-bit.
8738         * language/chinese.el ("Chinese-GBK"):
8739         Set ctext-non-standard-encodings property to "gbk-0".
8740         Add sample-text property.
8742 2008-02-01  Kenichi Handa  <handa@m17n.org>
8744         * international/kkc.el (kkc-region): Use
8745         this-single-command-raw-keys on pushing back an unhandled key sequence.
8747 2008-02-01  Kenichi Handa  <handa@m17n.org>
8749         * international/encoded-kb.el (encoded-kbd-mode):
8750         Check saved-input-mode on turning off Encoded Kbd mode.
8752         * composite.el (auto-composition-after-change): Use save-buffer-state.
8753         (turn-on-auto-composition-if-enabled): Don't turn on
8754         auto-composition-mode in a unibyte buffer.
8756 2008-02-01  Kenichi Handa  <handa@m17n.org>
8758         * startup.el (command-line): Use custom-reevaluate-setting for
8759         global-auto-composition-mode.
8761         * composite.el (auto-composition-function): Make it buffer local.
8762         (auto-composition-mode): New minor mode.
8763         (turn-on-auto-composition-if-enabled): New function.
8764         (global-auto-composition-mode): New global minor mode.
8766 2008-02-01  Kenichi Handa  <handa@m17n.org>
8768         * descr-text.el (describe-char): Use insert-text-button instead of
8769         widget-create for "customize what to show" button.
8771 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
8773         * language/ethiopic.el: Fix copyright.
8774         (composition-function-table): Support a new character in Unicode 4.1.
8776         * language/ethio-util.el (ethio-fidel-to-tex-buffer)
8777         (ethio-tex-to-fidel-buffer, ethio-composition-function)
8778         ("ethiopic-tex"): Support new characters in Unicode 4.1.
8780 2008-02-01  Kenichi Handa  <handa@m17n.org>
8782         * international/characters.el: Register characters in
8783         auto-fill-chars.  Put nospace-between-words to more charsets.
8785 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8787         * international/mule-cmds.el (locale-language-names): Add entries
8788         for zh_CN.GB2312, zh_CN.GBK, and zh_CN.GB18030.
8789         (locale-preferred-coding-systems): Fix entries for Chinese locales.
8791 2008-02-01  Kenichi Handa  <handa@etlken>
8793         * international/utf-7.el: Delete the definition of utf-7.
8794         (utf-7-post-read-conversion, utf-7-pre-write-conversion):
8795         Add autoload cookies.
8797 2008-02-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8799         * term/mac-win.el: Delete the code to create a fontset from the X
8800         resource "Font".
8802 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
8804         * international/robin.el (robin-define-package): Be sure to call
8805         put-char-code-property.
8807 2008-02-01  Kenichi Handa  <handa@m17n.org>
8809         * language/korean.el (iso-2022-kr): Set :suitable-for-keyboard
8810         property to 1.
8812         * international/mule-conf.el (cp1125): Set :ascii-compatible-p
8813         property to t.
8815         * international/mule.el (coding-system-get):
8816         Check `ascii-incompatible' for backward compatiblity.
8817         (set-file-name-coding-system): Signal an error for a coding system
8818         not suitable for file name.
8819         (set-keyboard-coding-system): Signal an error for a coding system
8820         not suitable for keyboard.
8822         * language/chinese.el (iso-2022-cn, iso-2022-cn-ext):
8823         Set :suitable-for-keyboard property to 1.
8825         * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
8826         (iso-2022-jp-2004): Set :suitable-for-keyboard property to 1.
8828         * language/vietnamese.el (vietnamese-viscii, vietnamese-vscii)
8829         (vietnamese-tcvn): Set :suitable-for-file-name property to t.
8831 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
8833         * international/robin.el (robin-define-package): Delete redundant code.
8834         (robin-add-rule): Allow N-1 reverse conversion.
8836 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
8838         * international/robin.el (robin-define-package): Make the
8839         expanded form shorter.
8841 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8843         * language/chinese.el (chinese-iso-8bit): Fix mime-charset of
8844         chiense-iso-8bit.
8846 2008-02-01  Kenichi Handa  <handa@m17n.org>
8848         * loadup.el: If we are byte-compiling unidata-gen.el or running
8849         unidata-ge-files, set purify-flag to nil.
8851 2008-02-01  Kenichi Handa  <handa@m17n.org>
8853         * loadup.el: Load international/charprop.el with NOERROR t.
8855         * Makefile.in (AUTOGENEL): Add charprop.el and uni-*.el.
8857 2008-02-01  Kenichi Handa  <handa@m17n.org>
8859         * term/mac-win.el (mac-centraleurroman, mac-cyrillic):
8860         New charsets and coding systems.
8861         (mac-symbol, mac-dingbats): New charsets.
8863 2008-02-01  Kenichi Handa  <handa@m17n.org>
8865         * international/characters.el: Set syntax of NBSP to punctuation.
8867 2008-02-01  Kenichi Handa  <handa@m17n.org>
8869         * international/mule-cmds.el: Don't require wid-edit.
8871 2008-02-01  Naoto Takahashi  <ntakahas@m17n.org>
8873         * international/robin.el: New file.
8875         * language/ethiopic.el: Change encoding to utf-8-emacs.
8876         Register ethio-composition-function in composition-function-table.
8877         ("Ethiopic"): Change coding-systems to utf-8-emacs.
8879         * language/ethio-util.el: Change encoding to utf-8-emacs.
8880         Rewrite all transliteration functions to use robin.el.
8881         (ethio-fidel-to-sera-map, ethio-fidel-to-tex-map)
8882         (ethio-sera-to-fidel-table, ethio-implicit-period-conversion)
8883         (ethio-prefer-ascii-punctuation): Delete variables.
8884         (ethio-char-to-ethiocode, ethio-convert-digit)
8885         (ethio-ethiocode-to-char, ethio-fidel-to-sera-mail)
8886         (ethio-fidel-to-sera-mail-or-marker, ethio-lone-consonant-p)
8887         (ethio-sera-to-fidel-english, ethio-sera-to-fidel-ethio)
8888         (ethio-sera-to-fidel-mail, ethio-sera-to-fidel-mail-or-marker)
8889         (ethio-tilde-escape, ethio-toggle-punctuation): Delete functions.
8890         (ethio-adjust-robin, ethio-composition-function)
8891         (ethio-get-consonant, ethio-prefer-amharic, ethio-process-digits)
8892         (ethio-sera-to-fidel-region-ethio)
8893         (ethio-sera-to-fidel-region-noethio)
8894         (ethio-use-colon-for-colon, ethio-use-three-dot-question):
8895         New functions.
8897 2008-02-01  Miles Bader  <miles@gnu.org>
8899         * international/mule.el (auto-coding-regexp-alist)
8900         (ctext-pre-write-conversion): Replace embedded control characters
8901         with octal escapes; this prevents diff from thinking the file is binary.
8903 2008-02-01  Miles Bader  <miles@gnu.org>
8905         * descr-text.el (describe-char-unidata-list):
8906         * emacs-lisp/bytecomp.el (byte-compile-fix-header)
8907         (byte-compile-insert-header):
8908         * international/mule.el (charset-list, set-coding-priority)
8909         (ignore-relative-composition):
8910         * international/mule-util.el (detect-coding-with-priority):
8911         * international/mule-diag.el:
8912         * international/mule-cmds.el (language-info-custom-alist):
8913         * international/codepage.el (codepage-setup):
8914         Replace references to Emacs version "22" with "23".
8916 2008-02-01  Kenichi Handa  <handa@m17n.org>
8918         * Makefile.in (DONTCOMPILE): Include charprop.el and uni-*.el.
8920         * international/fontset.el (font-encoding-alist): Add an entry for
8921         microsoft-cp1251.
8922         (setup-default-fontset): Add entries for microsoft-cp1251 and
8923         koi8-r for cyrillic.
8925         * international/mule-cmds.el (char-code-property-alist): New variable.
8926         (define-char-code-property): New function.
8927         (get-char-code-property, put-char-code-property): Handle a
8928         char-table registerd in char-code-property-alist.
8929         (set-language-environment): Check :ascii-compatible-p property of
8930         nonascii charset instead of its dimension.
8932         * international/uni-bidi.el, international/uni-category.el:
8933         * international/uni-combining.el, international/uni-comment.el:
8934         * international/uni-decimal.el, international/uni-decomposition.el:
8935         * international/uni-digit.el, international/uni-lowercase.el:
8936         * international/uni-mirrored.el, international/uni-name.el:
8937         * international/uni-numeric.el, international/uni-old-name.el:
8938         * international/uni-titlecase.el, international/uni-uppercase.el:
8939         * international/charprop.el: New files automatically generated by
8940         admin/unidata/Makefile.
8942         * loadup.el: Load internationnal/charprop.el.
8944         * descr-text.el (describe-char-unidata-list): New variable.
8945         (describe-char-unicode-data): Use char-code-property-description.
8946         (describe-char): Add lines for describing Unicode-based character
8947         properties.
8949 2008-02-01  Kenichi Handa  <handa@m17n.org>
8951         * textmodes/ispell.el: These changes are to fix the code merged
8952         from trunk for the change on 2008-02-01.
8953         (ispell-unified-chars-table): Delete it.
8954         (ispell-get-decoded-string): Don't check ispell-unified-chars-table.
8956 2008-02-01  Kenichi Handa  <handa@m17n.org>
8958         * international/mule-util.el (char-displayable-p): Check
8959         :charset-list property of CODING.
8961 2008-02-01  Kenichi Handa  <handa@m17n.org>
8963         * international/mule-cmds.el (select-safe-coding-system-interactively):
8964         Change 'mime-charset to :mime-charset.
8965         (select-safe-coding-system): Use above.
8966         (set-language-environment): Delete unnecessary code for handling
8967         overriding-fontspec.
8969 2008-02-01  Kenichi Handa  <handa@m17n.org>
8971         * international/mule-conf.el: New coding system aliases unix, dos,
8972         and mac.
8974 2008-02-01  Kenichi Handa  <handa@m17n.org>
8976         * international/titdic-cnv.el (tit-process-header): Fix embedded
8977         coding tag.
8978         (titdic-convert): Bind coding-system-for-write to the coding
8979         system specfied in the map file.  Remove `charset' property after
8980         decoding.
8981         (miscdic-convert): Bind coding-system-for-write to the coding
8982         system specfied for the map file.  Fix LANGUAGE arg to
8983         quail-define-package.
8984         (batch-miscdic-convert): Check if a file is directory or not.
8986 2008-02-01  Kenichi Handa  <handa@m17n.org>
8988         * international/mule.el (coding-system-equal): Move from mule-util.el.
8990         * international/mule-util.el (coding-system-equal): Move to mule.el.
8992 2008-02-01  Kenichi Handa  <handa@m17n.org>
8994         * international/encoded-kb.el (encoded-kbd-decode-code-list):
8995         New function.
8996         (encoded-kbd-self-insert-charset, encoded-kbd-setup-keymap):
8997         Support multibyte charsets.
8999 2008-02-01  Kenichi Handa  <handa@m17n.org>
9001         * language/china-util.el (hz-set-msb-table): Turn chars beyond 128
9002         to eight-bit chars.
9004         * international/mule-conf.el: Don't define coding system
9005         `undecided' here.
9007 2008-02-01  Kenichi Handa  <handa@m17n.org>
9009         * international/mule-cmds.el (locale-language-names): Fix for
9010         gb18030 and gdk.
9012 2008-02-01  Kenichi Handa  <handa@m17n.org>
9014         * international/fontset.el (font-encoding-alist): Add gbk.
9015         (charset-script-alist): Add chinese-gbk.
9017 2008-02-01  Kenichi Handa  <handa@m17n.org>
9019         * language/chinese.el (chinese-gbk): Include ascii in charset-list.
9021 2008-02-01  Kenichi Handa  <handa@m17n.org>
9023         * language/japanese.el ("Japanese"): Fix ordering of charsets.
9025 2008-02-01  Kenichi Handa  <handa@m17n.org>
9027         * international/encoded-kb.el (encoded-kbd-self-insert-charset)
9028         (encoded-kbd-self-insert-utf-8, encoded-kbd-setup-keymap)
9029         (encoded-kbd-mode): Adjust code merged from trunk for unicode branch.
9031 2008-02-01  Kenichi Handa  <handa@m17n.org>
9033         * descr-text.el (describe-char): Fix for the case CODE is a cons
9034         of integers.
9036 2008-02-01  Steven Tamm  <steventamm@mac.com>
9038         * term/mac-win.el: Use mac-standard-fontset-spec to create fontset-mac.
9039         (mac-standard-fontset-spec): Create.
9041 2008-02-01  Kenichi Handa  <handa@m17n.org>
9043         * international/mule-diag.el (unicode-data):
9044         Call find-file-noselect with NOWARN t.
9046 2008-02-01  Kenichi Handa  <handa@m17n.org>
9048         * international/mule-conf.el (cp932-2-byte): Fix :code-space.
9050 2008-02-01  Kenichi Handa  <handa@m17n.org>
9052         * international/characters.el: Give more CJK characters the
9053         category `|'.
9055         * descr-text.el (describe-char): Make it work on *Help* buffer.
9056         Suppress auto-composition on a region describing about composition.
9058         * language/european.el (diacritic-compose-region)
9059         (diacritic-compose-string, diacritic-composition-function):
9060         Compose diacritical marks only with a character whose syntax is
9061         word constituent.
9062         (diacritic-post-read-conversion): Delete it.
9064 2008-02-01  Kenichi Handa  <handa@m17n.org>
9066         * composite.el (auto-compose-chars): Execute the main code in
9067         condition-case.
9069 2008-02-01  Kenichi Handa  <handa@m17n.org>
9071         * international/fontset.el (x-complement-fontset-spec):
9072         Don't change CHARSET_REGISTRY and CHARSET_ENCODING fields.
9074 2008-02-01  Kenichi Handa  <handa@m17n.org>
9076         * international/characters.el (next-word-boundary-kana):
9077         Handle half-width kana.
9079 2008-02-01  Kenichi Handa  <handa@m17n.org>
9081         * international/mule-conf.el (indian-1-column): Fix :emacs-mule-id.
9083 2008-02-01  Kenichi Handa  <handa@m17n.org>
9085         * language/japanese.el (japanese-iso-8bit): Fix order of :charset-list.
9087         * mail/rmail.el (rmail-decode-babyl-format):
9088         Use with-coding-priority instead of detect-coding-with-priority.
9090 2008-02-01  Kenichi Handa  <handa@m17n.org>
9092         * international/mule.el (make-translation-table)
9093         (make-translation-table-from-vector): Set the second extra slot of
9094         the char table to 1.
9095         (make-translation-table-from-alist): Fix handling of multiple entries.
9097 2008-02-01  Kenichi Handa  <handa@m17n.org>
9099         * language/japanese.el (jisx0213-to-unicode, unicode-to-jisx0213):
9100         New translation tables.
9102         * international/mule.el (make-translation-table-from-alist):
9103         New function.
9105 2008-02-01  Kenichi Handa  <handa@m17n.org>
9107         * international/mule.el (translate-region): Re-implement it here.
9108         Make it interactive.
9110 2008-02-01  Kenichi Handa  <handa@m17n.org>
9112         * ps-mule.el (ps-mule-font-info-database): Doc fix.
9114 2008-02-01  Kenichi Handa  <handa@m17n.org>
9116         * international/mule-conf.el (chinese-cns11643-15): New charset.
9118 2008-02-01  Kenichi Handa  <handa@m17n.org>
9120         * international/fontset.el (font-encoding-alist): Add entries for
9121         variations of cns11643 fonts.
9122         (setup-default-fontset): Add cns11643 fonts as fallback fonts.
9124 2008-02-01  Kenichi Handa  <handa@m17n.org>
9126         * international/mule-diag.el (list-charset-chars): Put charset
9127         text property.
9129         * international/fontset.el (setup-default-fontset): Delete the
9130         entry for symbol script, add JISX0213 to kana script, specify
9131         fallback fonts.
9133 2008-02-01  Kenichi Handa  <handa@m17n.org>
9135         * international/fontset.el (setup-default-fontset)
9136         (font-encoding-alist): Register "JISX0213.2004-1".
9138         * international/mule-diag.el (list-character-sets): Fix the first
9139         line message.
9140         (sort-listed-character-sets): Adjust for the change of
9141         list-characters-sets-1.
9142         (list-character-sets-1): List supplementary character sets in a
9143         different section.
9144         (list-charset-chars): Validate charset at early stage.
9146         * international/characters.el: Fix `han' script range.
9148         * international/mule-conf.el (japanese-jisx0213.2004-1):
9149         Specify :code-space.
9150         (cp932-2-byte): Fix :code-space.
9151         (unicode-smp, unicode-sip, unicode-ssp): New charsets.
9153 2008-02-01  Kenichi Handa  <handa@m17n.org>
9155         * international/mule-conf.el (japanese-jisx0213.2004-1):
9156         Specify :dimension 2.
9158         * language/japanese.el (iso-2022-jp): Exclude japanese-jisx0212.
9159         (iso-2022-jp-2004, euc-jis-2004, japanese-shift-jis-2004):
9160         New coding systems.
9161         (iso-2022-jp-3, euc-jisx0213, shift_jis-2004): New coding system
9162         aliases.
9163         ("Japanese"): Add new charsets and coding systems.
9165 2008-02-01  Kenichi Handa  <handa@m17n.org>
9167         * language/japanese.el (japanese-ucs-cp932-to-jis-map):
9168         Rename from japanese-ucs-cp932-map.
9169         (japanese-ucs-jis-to-cp932-map): Rename from japanese-ucs-jis-map.
9170         (japanese-ucs-glibc-map): Delete this translation table.
9171         (japanese-ucs-glibc-to-jis-map, japanese-ucs-jis-to-glibc-map):
9172         New translation tables.
9174 2008-02-01  Kenichi Handa  <handa@m17n.org>
9176         * cus-start.el: Handle charset-map-path, not charset-map-directory.
9178 2008-02-01  Kenichi Handa  <handa@m17n.org>
9180         * term/x-win.el (x-selection-value): Optimize for ASCII only case.
9182 2008-02-01  Kenichi Handa  <handa@m17n.org>
9184         * language/japanese.el: Add map #x00A6 <-> #xFFE4 to translation
9185         tables japanese-ucs-*-map.
9187 2008-02-01  Kenichi Handa  <handa@m17n.org>
9189         * international/eucjp-ms.el: New file (automatically generated by
9190         admin/charsets/Makefile).
9192         * international/cp51932.el: New file (automatically generated by
9193         admin/charsets/Makefile).
9195         * language/japanese.el: Load cp51932 and eucjp-ms.
9196         (japanese-ucs-cp932-map, japanese-ucs-jis-map)
9197         (japanese-ucs-glibc-map): New translation tables.
9198         (eucjp-ms): New coding system.
9200         * international/mule.el (coding-system-put): Delete it.
9201         It's implemented in C now.
9203         * international/mule-conf.el (katakana-sjis): Fix :superset to :subset.
9204         (japanese-jisx0213-a): New supplementary charset.
9205         (japanese-jisx0213.2004-1): New charset.
9207 2008-02-01  Kenichi Handa  <handa@m17n.org>
9209         * language/japanese.el (japanese-cp932): New coding system.
9210         (cp932): New alias of it.
9212         * international/mule-conf.el (katakana-sjis, cp932-2-byte)
9213         (cp932): New charsets.
9215         * international/mule.el (define-charset): If :code-space is not
9216         given, generate it from :dimension.
9218 2008-02-01  Kenichi Handa  <handa@m17n.org>
9220         * composite.el (reference-point-alist): Doc fix.
9221         (encode-composition-rule, decode-composition-rule):
9222         Handle a rule (GREF NREF XOFF YOFF).
9224 2008-02-01  Kenichi Handa  <handa@m17n.org>
9226         * language/european.el (diacritic-composition-function): Fix for
9227         the case that POS is at the head.  Allow combining with more characters.
9229 2008-02-01  Kenichi Handa  <handa@m17n.org>
9231         * descr-text.el (describe-char): Check `charset' property.
9232         Show the code point in the charset in hexadigits.
9234         * international/mule-diag.el (stretches-for-character-list):
9235         Delete it.
9236         (list-block-of-chars): Use tabs instead of `display' property for
9237         aligning characters.
9238         (print-fontset-element): Fix the printing of XLFD.
9240 2008-02-01  Kenichi Handa  <handa@m17n.org>
9242         * international/encoded-kb.el (encoded-kbd-self-insert-utf-8):
9243         New function.
9244         (encoded-kbd-setup-keymap, encoded-kbd-mode): Add code for
9245         handling utf-8.
9247 2008-02-01  Kenichi Handa  <handa@m17n.org>
9249         * faces.el (read-face-font): Include fontsets in the completion list.
9251         * international/mule-cmds.el (set-locale-environment):
9252         Insert locale-translation-file-name in a unibyte buffer.
9254         * international/characters.el: Fix setting of category `|'.
9256 2008-02-01  Kenichi Handa  <handa@m17n.org>
9258         * language/chinese.el (chinese-gb18030): Fix :charset-list.
9260 2008-02-01  Kenichi Handa  <handa@m17n.org>
9262         * international/mule-cmds.el (select-safe-coding-system): Fix for
9263         the case that the first element of default-coding-system is t.
9264         Fix a message when some coding systems are rejected.
9266 2008-02-01  Kenichi Handa  <handa@m17n.org>
9268         * international/mule-cmds.el (set-language-environment): Put
9269         higher priority to charsets listed in `charset' property of the
9270         language environment.
9272 2008-02-01  Kenichi Handa  <handa@m17n.org>
9274         * composite.el (auto-compose-chars): Don't do unnecessary
9275         save-exclusion and save-restriction.
9277 2008-02-01  Kenichi Handa  <handa@m17n.org>
9279         * international/mule-conf.el (ctext-no-compositions):
9280         Remove garbage arguments.
9282         * international/mule.el (make-coding-system): Fix generation of
9283         properties.
9285         * international/fontset.el (setup-default-fontset): Specify fonts
9286         for `symbol' script.
9288         * international/characters.el (script-list): Include `currency'
9289         in `symbol'.
9291 2008-02-01  Alex Schroeder  <alex@gnu.org>
9293         * timezone.el (timezone-parse-date): Fix style 8 to accept ISO
9294         8601 format (a capital T between the date and the time).
9296 2008-02-01  Kenichi Handa  <handa@m17n.org>
9298         * international/mule.el (private-char-area-1-min)
9299         (private-char-area-1-max, private-char-area-2-min)
9300         (private-char-area-2-max, emacs-mule-charset-table): New variables.
9301         (convert-define-charset-argument): New function.
9302         (define-charset): Handle the old calling style.
9303         Update emacs-mule-charset-table.
9304         (make-char-internal): New function.
9306 2008-02-01  Jason Rumney  <jasonr@gnu.org>
9308         * w32-charset-info-alist: Define iso10646-1 always.
9310 2008-02-01  Kenichi Handa  <handa@m17n.org>
9312         * composite.el (compose-region): Doc fix (delete duplicated line).
9314 2008-02-01  Kenichi Handa  <handa@m17n.org>
9316         * international/characters.el: Fix syntax for Ethiopic.
9318 2008-02-01  Jason Rumney  <jasonr@gnu.org>
9320         * w32-fns.el (w32-charset-info-alist): Accept more charset aliases.
9322         * makefile.w32-in (DONTCOMPILE): Remove old languages.
9323         Add international/latin1-disp.el.
9324         (LC_ALL): Define as C.
9326 2008-02-01  Jason Rumney  <jasonr@gnu.org>
9328         * term/w32-win.el: Don't set fontsets to use sjis.
9330 2008-02-01  Kenichi Handa  <handa@m17n.org>
9332         * language/japanese.el (iso-2022-jp, iso-2022-jp-2)
9333         (japanese-iso-8bit): Fix the order of charsets in :charset-list.
9335 2008-02-01  Kenichi Handa  <handa@m17n.org>
9337         * composite.el (auto-composition-chunk-size): Delete variable.
9338         (auto-compose-chars): Always stop after processing a newline.
9340 2008-02-01  Kenichi Handa  <handa@m17n.org>
9342         * international/mule.el (define-coding-system): Fix attribute
9343         name :for-unibyte.
9345 2008-02-01  Kenichi Handa  <handa@m17n.org>
9347         * ps-bdf.el: Largely re-write.
9349         * ps-mule.el: Largely re-write.
9351         * ps-print.el (ps-generate-string-list): Delete function.
9352         (ps-rh-cache, ps-lf-cache, ps-rf-cache): Delete variables.
9353         (ps-header-footer-string): Delete function.
9354         (ps-encode-header-string-function): New variable.
9355         (ps-generate-header-line): Call ps-encode-header-string-function.
9356         (ps-basic-plot-string-function): New variable
9357         (ps-begin-job): Set ps-basic-plot-string-function and
9358         ps-encode-header-string-function.  For setting up headers and
9359         footers, don't use caches such as ps-rh-cache.  Don't call
9360         ps-mule-begin-page.
9361         (ps-basic-plot-str, ps-basic-plot-string, ps-control-character):
9362         Don't call ps-mule-prepare-ascii-font.
9363         (ps-plot-region): Don't pay attention to composition and
9364         non-ASCII characters.
9365         (ps-generate): Call ps-mule-end-job.
9366         (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
9367         (ps-mule-plot-string, ps-mule-begin-page): Delete autoload.
9368         (ps-mule-end-job): Declare autoload.
9370         * composite.el (auto-compose-region): New function.
9372 2008-02-01  Dave Love  <fx@gnu.org>
9374         * international/mule-util.el
9375         (detect-coding-with-language-environment): Doc fix.
9377         * composite.el: Doc fixes.
9378         (auto-compose-chars): Use functionp, not fboundp.
9380         * international/mule-diag.el (list-charset-chars): Set buffer file
9381         coding system.
9383         * progmodes/cap-words.el (capitalized-words-mode): Add autoload
9384         cookie.  Doc fix.
9386 2008-02-01  Dave Love  <fx@gnu.org>
9388         * international/mule-diag.el (list-charset-chars): Set buffer file
9389         coding system.
9391         * progmodes/cap-words.el (capitalized-words-mode): Add autoload
9392         cookie.  Doc fix.
9394         * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
9395         * progmodes/sh-script.el (sh-font-lock-syntactic-face-function):
9396         * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
9397         * eshell/esh-opt.el (eshell-process-option):
9398         * emulation/keypad.el (keypad-setup):
9399         * emacs-lisp/lisp-mode.el (prin1-char):
9400         * emacs-lisp/generic.el (generic-mode-set-comments):
9401         * edmacro.el (edmacro-parse-keys):
9402         * disp-table.el (standard-display-default): Use characterp.
9404 2008-02-01  Kenichi Handa  <handa@m17n.org>
9406         * international/mule-conf.el (utf-16-be): Make it an alias of
9407         utf-16be-with-signature.
9408         (utf-16-le): Make it an alias of utf-16le-with-signature.
9409         (utf-16-be-with-signature, utf-16-le-with-signature): Remove these
9410         coding system aliases.
9412         * international/utf-7.el (utf-7-decode, utf-7-encode):
9413         Use utf-16be, not utf-16-be.
9415 2008-02-01  Kenichi Handa  <handa@m17n.org>
9417         * international/mule.el (coding-system-category): New function.
9418         (set-coding-priority): Re-write.
9419         (make-translation-table): Re-write.
9421         * international/mule-cmds.el (universal-coding-system-argument):
9422         Check the coding system type `undecided', not `t'.
9423         (sort-coding-systems): Fix for iso-2022 coding systems.
9424         (find-multibyte-characters): Fix for eight-bit chars.
9425         (set-language-environment): Set charset priorities according to
9426         the charsets supported by the coding systems of higher priorities.
9428 2008-02-01  Kenichi Handa  <handa@m17n.org>
9430         * font-lock.el
9431         (font-lock-match-c-style-declaration-item-and-skip-to-next):
9432         Check (match-end 2) before going there.
9434 2008-02-01  Kenichi Handa  <handa@m17n.org>
9436         * international/mule.el (ctext-non-standard-designations-alist):
9437         Exclude entries for iso8859-1[03456].  Fix docstring.
9438         (ctext-pre-write-conversion): Make it work for the case that FROM
9439         is a string.  Don't do unnecessary save-restriction and
9440         narrow-to-region.
9442 2008-02-01  Kenichi Handa  <handa@m17n.org>
9444         * international/mule.el (ctext-non-standard-encodings-alist):
9445         Rename from non-standard-icccm-encodings-alist.
9446         (ctext-non-standard-encodings-regexp): New variable
9447         (ctext-post-read-conversion): Full rewrite.
9448         (ctext-non-standard-designations-alist): Rename from
9449         non-standard-designations-alist.
9450         (ctext-pre-write-conversion): Full rewrite.
9451         (define-coding-system): Doc fix (escape '"' by '\').
9453 2008-02-01  Dave Love  <fx@gnu.org>
9455         * international/mule-conf.el (utf-16le, utf-16be-16be)
9456         (utf-16le-with-signature, utf-16be-with-signature, utf-16):
9457         Define :mime-text-unsuitable.  Rename `utf-16{b,l}e...' from
9458         `-16-{b,l}e-' and define aliases for the old names.
9460         * international/mule.el (define-coding-system): Doc fix.
9462 2008-02-01  Dave Love  <fx@gnu.org>
9464         * international/utf-7.el: New file.
9466         * international/mule-conf.el (utf-7): New.
9468 2008-02-01  Kenichi Handa  <handa@m17n.org>
9470         * international/mule-conf.el (utf-16): Add :endian 'big.
9472         * international/mule.el (define-coding-system): Fix docstring
9473         about :bom and :endian.
9475 2008-02-01  Dave Love  <fx@gnu.org>
9477         * international/mule-diag.el (describe-character-set):
9478         Fix printing dimensions.  Use `×', not `x'.
9480 2008-02-01  Kenichi Handa  <handa@m17n.org>
9482         * international/fontset.el: Register CDAC fonts in
9483         face-font-rescale-alist instead of face-resizing-fonts.
9485 2008-02-01  Kenichi Handa  <handa@m17n.org>
9487         * international/mule-conf.el (utf-16-le): Rename from utf-16-le-nosig.
9488         (utf-16-be): Rename from utf-16-be-nosig.
9489         (utf-16-le-with-signature): Rename from utf-16-le.
9490         (utf-16-be-with-signature): Rename from utf-16-be.
9491         (utf-16): Set :bom to (utf-16-le-with-signature .
9492         utf-16-be-with-signature).
9494 2008-02-01  Dave Love  <fx@gnu.org>
9496         * language/georgian.el (georgian-ps, georgian-academy): New coding
9497         system.
9499         * language/chinese.el (chinese-big5-hkscs): New coding system.
9500         (big5-hkscs, cn-big5-hkscs): New aliases.
9502         * international/mule-conf.el (big5-hkscs, georgian-academy):
9503         New charset.
9504         (ibm1047): Doc fix.
9505         (pt154): Add mime-charset.
9506         (ptcp154, cp154): New aliases.
9508 2008-02-01  Dave Love  <fx@gnu.org>
9510         * international/mule.el (charset-iso-final-char, define-coding-system):
9511         Doc fix.
9513 2008-02-01  Kenichi Handa  <handa@m17n.org>
9515         * international/ccl.el (define-ccl-program): Fset charset-id
9516         to charset-id-internal temporarily.
9518 2008-02-01  Kenichi Handa  <handa@m17n.org>
9520         * international/mule-diag.el (list-block-of-chars):
9521         Use decode-char instead of make-char.
9523 2008-02-01  Kenichi Handa  <handa@m17n.org>
9525         * international/fontset.el: Enable the default fontset to use
9526         unicode fonts for ASCII characters.
9527         (x-decompose-font-name): Don't try to resolve PATTERN by
9528         x-resolve-font-name.
9529         (x-complement-fontset-spec): Never prepend an ASCII font.
9530         (create-fontset-from-fontset-spec): If a fontset of the same name
9531         already exists, override it instead of signalling an error.  Don't
9532         turn `ascii' into `latin'.  Don't update fontset-alias-alist here.
9534         * international/mule-conf.el (unicode-bmp): Delete duplicated
9535         definition.  Give it :code-offset 0.
9537         * international/mule-diag.el (print-fontset-element): New function.
9538         (print-fontset): Use print-fontset-element to print the elements
9539         of a fontset.  Use it also to print fonts fallen back to the
9540         default fontsets.
9542         * term/x-win.el: Delete the code to create a fontset from the X
9543         resource "Font".
9545 2008-02-01  Kenichi Handa  <handa@m17n.org>
9547         * international/mule-diag.el (print-fontset): Insert proper
9548         newline and indentation spaces.
9550 2008-02-01  Dave Love  <fx@gnu.org>
9552         * emacs-lisp/byte-opt.el (side-effect-free-fns): Add langinfo,
9553         multibyte-char-to-unibyte.
9555         * emacs-lisp/cl-macs.el (cl-make-type-test): Use characterp.
9557         * international/mule-cmds.el (find-coding-systems-for-charsets):
9558         Use coding-system-type, coding-system-charset-list.
9559         (standard-keyboard-coding-systems): Delete.
9560         (set-locale-environment): Maybe set keyboard coding system.
9561         Avoid typical warning about codeset in C locale.
9563 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9565         * international/fontset.el (x-complement-fontset-spec): If a
9566         fontname doesn't conform to XLFD format, try to get XLFD name by
9567         x-list-fonts.
9569 2008-02-01  Dave Love  <fx@gnu.org>
9571         * international/mule-conf.el (mik, pt154): New charsets.
9573         * language/cyrillic.el (mik, pt154): New coding systems.
9575 2008-02-01  Dave Love  <fx@gnu.org>
9577         * international/characters.el: Move parts around so that syntax
9578         definitions aren't overwritten wrongly.
9580         * international/mule-diag.el (unicode-data): Fix treatment of
9581         numeric-value fields.
9583 2008-02-01  Dave Love  <fx@gnu.org>
9585         * progmodes/cap-words.el: New file.
9587 2008-02-01  Kenichi Handa  <handa@m17n.org>
9589         The following changes are to make character composition happen
9590         automatically on displaying.
9592         * composite.el: Remove all autoload cookies.
9593         (composition-function-table): Move variable declaration from
9594         composite.c.  Change format.
9595         (save-buffer-state): Copy from font-lock.el.
9596         (auto-composition-chunk-size): New variable.
9597         (auto-compose-chars): New function.  Set
9598         auto-composition-function to it.
9599         (toggle-auto-composition): New function.
9601         * international/characters.el: Make all chararacters in the
9602         charset tibetan to tibetan script.
9604         * international/mule-conf.el (tibetan): Fix :code-space property.
9605         (tibetan-1-column): Delete :superset property, add :code-offset
9606         property.
9608         * international/quail.el (quail-input-string-to-events): Don't
9609         generate compose-chars-after events.
9611         * language/devanagari.el: Register devanagari-composable-function
9612         in composition-function-table for Devanagari characters.
9614         * language/devan-util.el: Register devanagari-composable-pattern
9615         in indian-composable-pattern.
9616         (devanagari-composition-function): Add autoload cookie.  Change
9617         arguments to conform to composition-function-table.
9619         * language/european.el: Register combining characters in
9620         composition-function-table.
9621         (diacritic-composition-function): Change arguments to conform to
9622         composition-function-table.
9624         * language/indian.el (indian-composable-pattern): New variable.
9626         * language/ind-util.el (indian-compose-region): Don't call
9627         compose-chars-after, instead call a function registered in
9628         composition-function-table.
9630         * language/lao.el: Register lao-composition-function in
9631         composition-function-table for Lao vowels and tones.
9632         (lao): Don't use lao-post-read-conversion.
9634         * language/lao-util.el (lao-post-read-conversion): Delete this function.
9635         (lao-composition-function): Change arguments to conform to
9636         composition-function-table.
9638         * language/thai.el: Register thai-composition-function in
9639         composition-function-table for Thai vowels and tones.
9640         (thai-tis620): Don't use thai-post-read-conversion.
9642         * language/thai-util.el (thai-post-read-conversion): Delete function.
9643         (thai-composition-function): Change arguments to conform to
9644         composition-function-table.
9646         * language/tibetan.el: Register tibetan-composition-function in
9647         composition-function-table for Tibetan characters.
9649         * language/tibet-util.el (tibetan-composition-function):
9650         Change arguments to conform to composition-function-table.
9652         * loadup.el: Load composite.
9654 2008-02-01  Dave Love  <fx@gnu.org>
9656         * international/mule-diag.el (unicode-data): Find unicodedata-file
9657         literally.
9659 2008-02-01  Dave Love  <fx@gnu.org>
9661         * international/fontset.el: Doc fixes.
9662         ("fontset-default"): Add iso8859-15.
9664 2008-02-01  Kenichi Handa  <handa@m17n.org>
9666         * international/fontset.el ("fontset-default"): Add an entry for
9667         `indian-is13194' charset.
9669         * international/mule-conf.el (indian-is13194): Delete :unify-map
9670         property.  Don't unify this charset.
9671         (indian-2-column): Delete :superset property, add :code-offset property.
9673         * language/devan-util.el: Delete the superfluous autoload cookie
9674         near the head of the file.
9675         (devanagari-compose-region): Add autoload cookie.
9677         * language/ind-util.el (indian-2-column-to-ucs-region):
9678         Add autoload cookie.
9680 2008-02-01  Kenichi Handa  <handa@m17n.org>
9682         * international/fontset.el ("fontset-default"): Add an entry for
9683         `devanagari' script and `malayalam-glyph' charset.
9684         (face-resizing-fonts): Register CDAC fonts.
9686         * international/mule-conf.el (malayalam-glyph): New charset.
9688 2008-02-01  Dave Love  <fx@gnu.org>
9690         * term/x-win.el: Fix typo in loop setting x-keysym-table.
9692 2008-02-01  Dave Love  <fx@gnu.org>
9694         * international/mule-conf.el (utf-8-emacs): Delete :mime-charset.
9696         * term/x-win.el: Remove some ancient compatibility code.  Populate
9697         x-keysym-table.
9699         * international/mule-cmds.el (wid-edit): Require when compiling.
9700         (set-locale-environment): Check locale against coding system
9701         aliases too.
9703 2008-02-01  Kenichi Handa  <handa@m17n.org>
9705         * language/indian.el (in-is13194-devanagari):
9706         Fix :post-read-conversion and :pre-write-conversion.
9708 2008-02-01  Dave Love  <fx@gnu.org>
9710         * international/mule-cmds.el (charset): Supply doc, :tag.
9712 2008-02-01  Kenichi Handa  <handa@m17n.org>
9714         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Be sure to
9715         return a unibyte string.
9717 2008-02-01  Kenichi Handa  <handa@m17n.org>
9719         * international/mule-cmds.el (set-locale-environment):
9720         Delete superfluous ')'s at the tail.
9722 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9724         * international/mule.el (define-coding-system): Fix typo;
9725         "docode" -> "decode".
9727 2008-02-01  Dave Love  <fx@gnu.org>
9729         * emacs-lisp/byte-opt.el (side-effect-free-fns):
9730          Add string-make-unibyte string-make-multibyte string-to-multibyte
9731          string-as-multibyte string-as-unibyte.
9733 2008-02-01  Dave Love  <fx@gnu.org>
9735         * language/english.el (ibm1047, cp1047): New.
9737         * international/mule-conf.el (alternativnyj): Use new table.
9738         (cp866): Define standalone, not as alias.
9739         (ibm866): Change alias.
9740         (ibm1047): New.
9742         * language/cyrillic.el (cyrillic-alternativnyj):
9743         Remove mime-charset.  Use alternativnj charset.
9744         (cp866): Remove alias.  Define standalone.
9746 2008-02-01  Dave Love  <fx@gnu.org>
9748         * language/european.el ("Latin-2", "Latin-5"): Doc fix.
9750         * language/cyrillic.el ("Bulgarian"): Fix input method and charset.
9751         ("Tajik", "Belarusian"): Fix charset.
9753         * international/mule-cmds.el (describe-language-environment):
9754         Be case-insensitive when looking for input methods.
9755         (locale-name-match): Doc fix.
9756         (locale-charset-match-p): New.
9757         (set-locale-environment): Warn if coding system doesn't agree
9758         with system locale.
9760 2008-02-01  Kenichi Handa  <handa@m17n.org>
9762         * international/mule-cmds.el (select-safe-coding-system): If
9763         :mime-charset property of a coding system is not equal to that
9764         coding system, don't show that :mime-charset name.
9766 2008-02-01  Dave Love  <fx@gnu.org>
9768         * international/quail.el (quail-help): Fix underlining.
9770         * language/chinese.el (chinese-gb18030, gb18030)
9771         ("Chinese-GB18030"): New.
9773         * international/mule-cmds.el (locale-language-names): Add GB18030.
9775         * international/swedish.el: Don't require latin-1.
9777 2008-02-01  Dave Love  <fx@gnu.org>
9779         * language/czech.el ("Czech"):
9780         * language/slovak.el ("Slovak"):
9781         * language/romanian.el ("Romanian"): Remove unibyte-syntax property.
9783         * language/greek.el ("Greek"): Remove unibyte-syntax property.
9784         (cp737): New coding system.
9786         * language/european.el: Remove unibyte-syntax properties.
9787         Augment some coding-system properties.
9789         * international/mule-cmds.el (set-language-environment):
9790         Check for charset property of environment.
9791         (language-info-alist): Doc fix.
9793         * Makefile.in (DONTCOMPILE): Remove latin-N.el.
9795         * international/characters.el: Add Latin-1.
9797         * international/latin-1.el, international/latin-2.el,
9798         * international/latin-3.el, international/latin-4.el,
9799         * international/latin-5.el, international/latin-8.el,
9800         * international/latin-9.el: Delete.
9802         * loadup.el: Remove international/latin-N.el.
9804         * case-table.el (set-case-syntax-charset, set-case-syntax-1)
9805         (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
9806         Undo last changes.
9808         * international/mule-diag.el (unicode-data): Check that
9809         `unicodedata-file' exists.
9811 2008-02-01  Kenichi Handa  <handa@m17n.org>
9813         * international/fontset.el (charset-script-alist): Fix script names.
9815 2008-02-01  Kenichi Handa  <handa@m17n.org>
9817         * international/latin-1.el: Bind set-case-syntax-charset to
9818         iso-8859-1.  Never provide latin-1.
9820         * international/latin-2.el: Bind set-case-syntax-charset to
9821         iso-8859-2.  Never provide latin-2.
9823         * international/latin-3.el: Bind set-case-syntax-charset to
9824         iso-8859-3.  Never provide latin-3.
9826         * international/latin-4.el: Bind set-case-syntax-charset to
9827         iso-8859-4.  Never provide latin-4.
9829         * international/latin-5.el: Bind set-case-syntax-charset to
9830         iso-8859-9.  Never provide latin-5.
9832         * international/latin-8.el: Bind set-case-syntax-charset to
9833         iso-8859-14.  Never provide latin-8.
9835         * international/latin-9.el: Bind set-case-syntax-charset to
9836         iso-8859-15.  Never provide latin-9.
9838         * case-table.el (set-case-syntax-set-multibyte): Delete variable.
9839         (set-case-syntax-charset): New variable.
9840         (set-case-syntax-1): New function.
9841         (set-case-syntax-delims, set-case-syntax-pair, set-case-syntax):
9842         Call set-case-syntax-1 on arguments.
9844         * international/mule-cmds.el (set-language-environment): Delete
9845         unnecessary setup of syntax/case for unibyte case.
9847 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9849         * international/fontset.el (generate-fontset-menu): Exclude the
9850         default fontset.
9852         * faces.el (describe-face): Describe :fontset property too.
9854 2008-02-01  Dave Love  <fx@gnu.org>
9856         * international/characters.el: Don't set char width of CJK
9857         charsets generally.  Add some non-word syntax cases.
9858         (korean-ksc5601): Fix ranges with symbol syntax.
9860 2008-02-01  Dave Love  <fx@gnu.org>
9862         * Makefile.in (DONTCOMPILE): Add indian.el.
9864         * language/ind-util.el:
9865         (ucs-bengali-to-is13194-alist, ucs-assamese-to-is13194-alist)
9866         (ucs-gurmukhi-to-is13194-alist, ucs-gujarati-to-is13194-alist)
9867         (ucs-oriya-to-is13194-alist, ucs-tamil-to-is13194-alist)
9868         (ucs-telugu-to-is13194-alist, ucs-malayalam-to-is13194-alist):
9869         Remove declarations and let-bind them in re-written top-level loop
9870         over scripts, including ucs-devanagari-to-is13194-alist.
9872 2008-02-01  Dave Love  <fx@gnu.org>
9874         * international/mule-cmds.el (charset): Move.
9875         (language-info-custom-alist): Move.  Alter :set.
9876         (find-coding-systems-for-charsets): Check charset type before
9877         getting :charset-list.
9879         * language/ind-util.el (iscii-to-ucs-region): Fix typo.
9881 2008-02-01  Dave Love  <fx@gnu.org>
9883         * wid-edit.el (widget-string-complete): New.
9884         (widget-coding-system-prompt-value-history): Delete.
9885         (coding-system): Use coding-system-value-history.
9887         * international/mule-cmds.el (charset): New widget.
9888         (language-info-custom-alist): Use it.
9889         (default-input-method): Modify :type.
9891 2008-02-01  Dave Love  <fx@gnu.org>
9893         * language/ind-util.el (ucs-devanagari-to-is13194-alist)
9894         (indian-glyph-char, indian-char-glyph): Delete.
9895         (is13194-default-repertory): Rename from is13194-default-repartory.
9896         (iscii-to-ucs-region): Hoist evals from loop.
9898         * language/devan-util.el (dev-charseq): Avoid indian-glyph-char.
9900         * language/indian.el (indian-script-table)
9901         (ccl-encode-indian-glyph-font): Delete.
9903         * international/mule-cmds.el (language-info-custom-alist): New.
9904         (input-method-activate-hook, input-method-inactivate-hook)
9905         (input-method-after-insert-chunk-hook)
9906         (input-method-use-echo-area, set-language-environment-hook)
9907         (exit-language-environment-hook): Customize.
9908         (find-coding-systems-for-charsets): Rewrite.
9909         (default-input-method): Add :link.
9911 2008-02-01  Dave Love  <fx@gnu.org>
9913         * international/mule-conf.el (eight-bit): Add :docstring,
9914         :short-name properties.
9915         (cp851): Doc fix.
9916         (unicode-bmp): New.
9918         * case-table.el (set-case-syntax-pair): Remove check on byte lengths.
9920         * language/european.el (cp858): New.
9921         ("Turkish"): Add special case rules.
9923 2008-02-01  Dave Love  <fx@gnu.org>
9925         * international/characters.el: Make Ÿ and ÿ a case pair.
9927 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9929         * international/mule-conf.el: Don't define the charset iso-8859-1
9930         here, just setup its properties.
9932 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9934         * international/mule-conf.el (utf-8): Give :mime-charset property.
9936 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9938         * international/characters.el: Remove duplicated case setting for
9939         Cyrillic and Greek letters.  Don't setup printable-chars here.
9941         * case-table.el (describe-buffer-case-table): Handle the case
9942         that KEY is a cons within map-char-table.
9944 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9946         * international/characters.el: Fix categories ?A and ?C.
9947         Treat ASCII characters as `latin' script.
9949 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9951         * international/fontset.el (fontset-plain-name): If the fontset
9952         name doesn't ends with "-fontset-*", use family name as the first
9953         part of the plain name.
9954         (create-fontset-from-ascii-font): If "fontset-startup" is not yet
9955         created, use that name for the fontset.  Fix arguments to
9956         subst-char-in-string.
9958 2008-02-01  Dave Love  <fx@gnu.org>
9960         * term.el (term-char-mode): Remove generic-character-list code.
9962         * ruler-mode.el (ruler-mode-character-validate): Use characterp.
9964         * wid-edit.el (character): Use characterp.
9966         * international/mule-diag.el (describe-coding-system): Add utf-16 case.
9968         * language/viet-util.el (viet-encode-viscii-char): Use encode-char.
9970         * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
9971         Add charset.
9972         ("Ukrainian"): New.
9974         * language/georgian.el (georgian-ps): New coding system.
9976 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9978         * international/mule-cmds.el (reset-language-environment):
9979         Don't set nonascii-translation-table and nonascii-insert-offset.
9980         Call set-unibyte-charset, not set-primary-charset.
9981         (nonascii-translation-table, nonascii-insert-offset):
9982         Declare these variable as obsolete ones.
9983         (set-language-environment): Call set-unibyte-charset, not
9984         set-primary-charset.  Call set-charset-priority with `charset'
9985         info of the language environment.
9987 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9989         * international/characters.el (next-word-boundary-han):
9990         Don't treat katakana following han characters as a part of a word.
9992 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
9994         * international/characters.el: Call map-charset-chars on big5 (not
9995         chinese-big5-1/2) to set categories `c', `C', and `|'.
9996         (next-word-boundary-han, next-word-boundary-kana): New function.
9997         Register it in next-word-boundary-function-table.
9999 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10001         * arc-mode.el (archive-file-name-coding-system): New variable.
10002         Make it permanent-local.
10003         (byte-after, bref, insert-unibyte): New function.  Change most of
10004         char-after, aref, insert to them respectively.
10005         (archive-mode): Set archive-file-name-coding-system.
10006         (archive-summarize): Don't change the buffer's multibyteness.
10007         (archive-extract): Inherit archive-file-name-coding-system from
10008         archive-superior-buffer.  Bind coding-system-for-write to
10009         archive-file-name-coding-system.
10010         (archive-*-write-file-member): Encode ENAME by
10011         archive-file-name-coding-system.  Bind coding-system-for-write to
10012         no-conversion.
10013         (archive-rename-entry): Encode the filename by
10014         archive-file-name-coding-system.
10015         (archive-mode-revert): Don't change the buffer's multibyteness.
10016         (archive-arc-summarize, archive-lzh-summarize)
10017         (archive-zoo-summarize): Don't change the buffer's multibyteness.
10018         Decode filenames by archive-file-name-coding-system.
10019         (archive-arc-rename-entry, archive-zip-chmod-entry): Don't change
10020         the buffer's multibyteness.
10022         * tar-mode.el (tar-file-name-coding-system): New variable.
10023         Make it permanent-local.
10024         (tar-header-block-tokenize): Decode filename and linkname by
10025         tar-file-name-coding-system.
10026         (tar-header-block-checksum): Call multibyte-char-to-unibyte to get
10027         the byte value of eight-bit chars.
10028         (tar-summarize-buffer): Call set-buffer-multibyte with METHOD
10029         `to'.  Delete unnecessary call of position-bytes.
10030         (tar-mode): Set tar-file-name-coding-system.  Delete unnecessary
10031         call of position-bytes.
10032         (tar-extract): Simplify by calling decode-coding-region with
10033         DESTINATION argument.  Don't toggle multibyteness of tar buffer.
10034         (tar-copy, tar-expunge): Don't toggle multibyteness of tar buffer.
10035         (tar-clear-modification-flags): Delete unnecessary call of
10036         position-bytes.
10037         (tar-rename-entry): Call tar-alter-one-field with encoded new name.
10038         (tar-alter-one-field): Don't toggle multibyteness of tar buffer.
10039         Convert new-data-string by string-to-multibyte before inserting it.
10040         (tar-subfile-save-buffer): Don't toggle multibyteness of tar
10041         buffer.  Simplify by calling encoding-coding-region with
10042         DESTINATION argument.
10043         (tar-mode-write-file): Delete unnecessary call of byte-to-position.
10045 2008-02-01  Dave Love  <fx@gnu.org>
10047         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Doc fix.
10049         * emacs-lisp/copyright.el (copyright-regexp): Remove redundancy.
10051 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10053         * international/characters.el: Setup char-script-table.
10055         * international/fontset.el: Setup the default fontset by the new
10056         script-based way.
10057         (x-complement-fontset-spec): Change the format of arg FONTLIST to
10058         an alist of charsets vs font name lists.
10059         (charset-script-alist): New variable.
10060         (create-fontset-from-fontset-spec): Allow script name in
10061         FONTSET-SPEC.  If charset is specified in FONTSET-SPEC, change it
10062         to the corresponding script name.
10063         (create-fontset-from-ascii-font): Slight tuning.
10065         * international/mule-conf.el (devanagari-glyph): New charset.
10066         Unify these charsets: korean-ksc5601, ipa, tibetan, ethiopic,
10067         japanese-jisx0208, japanese-jisx0212, japanese-jisx0213-1,
10068         japanese-jisx0213-2.
10070         * international/mule-diag.el (print-fontset): Use describe-vector
10071         to handle a char table returned by fontset-info.
10073         * language/indian.el: Don't register ccl-encode-indian-glyph-font
10074         and ccl-encode-unicode-font in font-ccl-encoder-alist.
10076 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10078         * international/mule-util.el (detect-coding-with-priority):
10079         Fix the place of using `,' marker in backquote form.
10081 2008-02-01  Dave Love  <fx@gnu.org>
10083         * international/mule-conf.el (mule-unicode-e000-ffff): Set :max-code.
10085         * international/mule-util.el (with-coding-priority): Fix.
10087         * international/mule.el (set-coding-priority): Fix obsolete spec.
10089 2008-02-01  Dave Love  <fx@gnu.org>
10091         * international/mule-cmds.el (leim-list-header): Add coding tag.
10093 2008-02-01  Dave Love  <fx@gnu.org>
10095         * international/mule-cmds.el (find-coding-systems-region)
10096         (language-info-alist, reset-language-environment, princ-list): Doc fix.
10097         (input-method-verbose-flag): Fix :type.
10099 2008-02-01  Dave Love  <fx@gnu.org>
10101         * international/mule.el (set-char-table-default): Make obsolete.
10103 2008-02-01  Dave Love  <fx@gnu.org>
10105         * language/devanagari.el ("Devanagari"): Fix coding-system,
10106         coding-priority.
10108         * international/mule-diag.el (describe-char-after): Modify display
10109         list processing.
10110         (unicodedata-file, unicodedata-find): New.
10112 2008-02-01  Dave Love  <fx@gnu.org>
10114         * emacs-lisp/bytecomp.el (batch-byte-compile-if-not-done): Add
10115         autoload cookie.
10117         * international/ja-dic-cnv.el (skkdic-convert): Add coding tag.
10119 2008-02-01  Dave Love  <fx@gnu.org>
10121         * international/mule-util.el (detect-coding-with-priority): Rewrite.
10123 2008-02-01  Dave Love  <fx@gnu.org>
10125         * composite.el (compose-string): Doc fix.
10127         * language/georgian.el ("Georgian"): Delete code-pages feature,
10128         add nonascii-translation.
10130         * language/european.el ("German", "French", "Spanish"):
10131         Add latin-9 as alternative coding system.
10132         ("Slovenian", "Polish"): Add windows-1250 as alternative coding system.
10133         ("Dutch"): Add latin-9 as alternative coding system.  Add input method.
10134         ("Turkish"): Add windows-1254 and latin-3 as alternative coding systems.
10135         ("Lithuanian", "Latvian"): Add windows-1257 as alternative coding
10136         system.
10138         * emacs-lisp/byte-opt.el (side-effect-free-fns): Add decode-char,
10139         encode-coding-char.
10140         (side-effect-and-error-free-fns): Add charsetp, max-char,
10141         primary-charset.
10143         * simple.el: Don't require cl when compiling.
10145         * Makefile.in (DONTCOMPILE): Fix duplicates.
10147         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Fix typo.
10149         * international/mule.el: Doc fixes.
10150         (load-with-code-conversion): Fix coding-system-type test.
10152         * international/mule-cmds.el (sort-coding-systems): Comment out
10153         iso-2022 case.
10154         (encoded-string-description): Fix coding-system-type test.
10156 2008-02-01  Dave Love  <fx@gnu.org>
10158         * international/characters.el: Make korean-ksc5601 double-width.
10160         * international/mule.el (auto-coding-regexp-alist):
10161         Recognize Emacs 20/1 byte-compiled files.
10163         * international/mule-conf.el (file-coding-system-alist):
10164         Change .elc to utf-8-emacs.
10166         * emacs-lisp/bytecomp.el (byte-compile-fix-header): Adjust for use
10167         of utf-8-emacs.
10168         (byte-compile-insert-header): Update magic number.  Add ballast.
10169         (map-char-table): Use byte-compile-funarg-2.
10171 2008-02-01  Dave Love  <fx@gnu.org>
10173         * language/cyrillic.el ("Belarusian"): Doc fix.
10174         (cp1125, koi8-t): Doc fix.
10176         * international/mule-cmds.el (find-multibyte-characters): Doc fix.
10177         (find-multibyte-characters): Don't test for charset `unknown'.
10178         (locale-language-names): Change or add: be, bs, cy, mk, ru.koi8,
10179         ru, sr_YU, tg, wa, zh.gbk.
10180         (locale-language-names): Change sp to Cyrillic.
10181         (locale-charset-language-names): Match @euro after utf-8.
10183 2008-02-01  Dave Love  <fx@gnu.org>
10185         * language/chinese.el (chinese-gbk, gbk, cp936, windows-936):
10186         New coding systems.
10187         ("Chinese-GBK"): New environment.
10189         * language/thai-util.el: Remove redundant unicodes in category-setting.
10191         * language/lao-util.el: Remove redundant unicodes in category-setting.
10193         * international/mule-conf.el (japanese-jisx0213-1)
10194         (japanese-jisx0213-2): Add unify-map.
10196 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10198         * international/quail.el (quail-update-leim-list-file):
10199         Force writing the file by iso-2022-7bit.
10201         * international/titdic-cnv.el (miscdic-convert): Force writing the
10202         file by iso-2022-7bit.
10204         * international/mule.el (define-charset): Change the attribute
10205         :parents to :subset or :superset.
10207         * international/mule-conf.el: Adjust for the change of
10208         define-charset (:parent -> :subset or :superset).
10210         * international/characters.el: Fix the last change.
10212 2008-02-01  Dave Love  <fx@gnu.org>
10214         * language/cyril-util.el (cyrillic-encode-koi8-r-char)
10215         (cyrillic-encode-alternativnyj-char): Fix.
10216         (standard-display-cyrillic-translit): Remove redundant unicodes.
10218 2008-02-01  Dave Love  <fx@gnu.org>
10220         * language/cyrillic.el ("Tajik", "Bulgarian", "Belarusian"):
10221         New environments.
10223         * international/mule-conf.el (control-1): New charset.
10224         (eight-bit-control, eight-bit-graphic): Redefine to use raw-bytes space.
10225         (korean-ksc5601): Redefine to use code-offset and unify-map.
10227 2008-02-01  Dave Love  <fx@gnu.org>
10229         * international/mule-conf.el (tcvn-5712): New charset.
10231         * language/vietnamese.el (vietnamese-tcvn, tcvn): New coding system.
10232         ("Vietnamese"): Doc fix.
10234 2008-02-01  Dave Love  <fx@gnu.org>
10236         * international/mule-conf.el (windows-936): New alias.
10238         * cus-start.el: Add scalable-fonts-allowed.
10240         * international/characters.el: Reinstate various CJK syntax and
10241         category setup.  Remove obsolete syntax setting in Greek section.
10242         Optimize the char tables.
10244         * language/thai.el ("Thai"): Add cp874, iso-8859-11 coding systems.
10246         * language/vietnamese.el ("Vietnamese"): Add windows-1258 coding system.
10248         * language/greek.el ("Greek"): Add windows-1253, cp851, cp869
10249         coding systems.
10251         * language/romanian.el ("Romanian"): Add iso-latin-10 coding system.
10253 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10255         * international/characters.el (printable-chars): Setup correctly.
10257 2008-02-01  Dave Love  <fx@gnu.org>
10259         * cus-start.el: Add selection-coding-system.
10261         * language/hebrew.el ("Hebrew"): Add windows-1255, cp862 coding systems.
10263         * language/china-util.el (post-read-decode-hz)
10264         (pre-write-encode-hz): Move from chinese.el.
10265         (big5-to-flat-code, flat-code-to-big5, euc-to-flat-code)
10266         (flat-code-to-euc, expand-euc-big5-alist, big5-to-cns): Delete.
10268         * language/chinese.el (post-read-decode-hz)
10269         (pre-write-encode-hz): Move to china-util.el.
10271         * case-table.el (set-case-syntax-pair): Test again for equal byte
10272         lengths of the pair.
10274         * international/characters.el: Add Vietnamese category to
10275         equivalent unicodes.
10277 2008-02-01  Dave Love  <fx@gnu.org>
10279         * international/mule-conf.el (chinese-sisheng, ipa)
10280         (indian-is13194, tibetan, ethiopic): Add :unify-map.
10282         * international/mule-diag.el (describe-character-set): Account for
10283         more than two dimensions of possibly different size.
10284         (describe-current-coding-system): Add selection-coding-system.
10286         * international/mule-cmds.el (unify-8859-on-encoding-mode)
10287         (unify-8859-on-decoding-mode): Move from mule.el.
10289         * international/mule.el (unify-8859-on-encoding-mode)
10290         (unify-8859-on-decoding-mode): Remove :init-value.
10291         (charset-chars): Add optional dimension arg.
10292         (unify-8859-on-encoding-mode, unify-8859-on-decoding-mode):
10293         Move to mule-cmds.el.
10295 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10297         * international/fontset.el: Change registry for japanese-jisx0208
10298         to "JISX0208*" in the default fontset.
10299         (font-encoding-alist): Add an entry for "JISX0208.1983" and
10300         "ISO10646.indian-1".
10302 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10304         * language/japanese.el (japanese-iso-7bit-1978-irv):
10305         Add `designation' to :flags, `ascii' to :charset-list.
10307         * international/mule.el (define-charset): New args :min-code and
10308         :max-code.
10309         (coding-system-iso-2022-flags): Add use-roman, use-oldjis.
10311         * international/mule-conf.el (chinese-gbk): Change :code-offset to
10312         #x160000.
10313         (gb18030-2-byte, gb18030-4-byte-bmp, gb18030-4-byte-smp)
10314         (gb18030-4-byte-ext-1, gb18030-4-byte-ext-2, gb18030): New charsets.
10316 2008-02-01  Dave Love  <fx@gnu.org>
10318         * language/thai.el (iso-8859-11): New coding system.
10320         * international/mule-conf.el: Doc fixes.
10321         (iso-8859-11): New.
10323 2008-02-01  Dave Love  <fx@albion.dl.ac.uk>
10325         * cus-start.el (scalable-fonts-allowed): Add.
10327 2008-02-01  Dave Love  <fx@gnu.org>
10329         * international/mule.el (unify-8859-on-encoding-mode)
10330         (unify-8859-on-decoding-mode): Dummy versions.
10332         * international/ucs-tables.el: Remove.
10334         * Makefile.in (DONTCOMPILE): Add language/chinese.el,
10335         language/japanese.el.
10337         * international/mule-conf.el: Doc fixes.
10338         (cp936): New alias.
10339         (cp720, cp858): New charsets.
10341         * mail/sendmail.el (mail-recover-1, mail-recover): Use utf-8-emacs
10342         coding system, not emacs-mule.
10344         * files.el (revert-buffer, recover-file): Likewise.
10346         * desktop.el (desktop-save): Likewise.
10348 2008-02-01  Dave Love  <fx@gnu.org>
10350         * international/mule.el (with-category-table): Use make-symbol.
10351         (coding-system-list): Use coding-system-aliases.
10352         (make-translation-table): Don't deal with generic characters.
10354         * international/mule-util.el (coding-system-post-read-conversion)
10355         (coding-system-pre-write-conversion)
10356         (coding-system-translation-table-for-decode)
10357         (coding-system-translation-table-for-encode): Get the right properties.
10358         (with-coding-priority): New macro.
10359         (detect-coding-with-language-environment): Use it.
10360         (coding-system-equal): Use coding-system-plist.
10362         * international/encoded-kb.el (encoded-kbd-setup-keymap) <ccl>:
10363         Use :valid property.
10365         * international/mule-cmds.el (encode-coding-char):
10366         Use find-coding-systems-string.  Don't use make-char.
10367         (describe-language-environment): Use coding-system-aliases.
10368         (prefer-coding-system): Doc fix.
10370         * international/mule-diag.el (describe-current-coding-system):
10371         Fix aliases listing.
10372         (print-iso-2022-flags): Delete.
10373         (print-designation): Partial re-write.
10374         (describe-coding-system): Deal with iso-2022 designations, flags.
10375         Fix shift_jis case.
10376         (describe-char-after): Use characterp.  Print explicit unicode.
10377         Remove some obsolete code.
10378         (print-coding-system-briefly): Fix printing aliases.
10379         (print-coding-system): Use coding-system-aliases.
10380         (mule-diag): Don't list coding categories.
10382         * international/mule-conf.el: Doc fixes.  Remove redundant :long-name properties.
10383         Re-order charset priorities.
10384         (binary): New alias.
10385         (iso-8859-16): Fix nickname.
10386         (define-iso-single-byte-charset): Un-define after use.
10388 2008-02-01  Dave Love  <fx@gnu.org>
10390         * international/characters.el: Additional double width specifications.
10392         * international/mule-diag.el (print-coding-system): Incomplete updates.
10393         (describe-character-set): List more properties.
10394         (print-fontset): Fix case of vector font-spec.
10395         (describe-current-coding-system): Fix iso-7, iso-7-else.
10397         * international/mule-conf.el (ibm866): Fix alias.
10398         (iso-8859-16): Fix nickname.
10400 2008-02-01  Dave Love  <fx@gnu.org>
10402         * language/ind-util.el: Avoid decode-char.
10403         (indian--puthash-char, indian--puthash-c, indian--puthash-cv):
10404         Use characterp, not char-valid-p.
10406         * language/devan-util.el: Add coding tag, avoid decode-char.
10408         * international/titdic-cnv.el: Add coding tag.
10409         (tit-process-header): Add coding tag to output.
10411         * language/thai.el (cp874, ibm874): New coding systems.
10413         * emacs-lisp/byte-opt.el <side-effect-and-error-free-fns>:
10414         Add character-p.
10416         * language/european.el (cp852, ibm852, cp857, ibm857, cp860)
10417         (ibm860, cp861, ibm861, cp863, cp865, ibm865, cp437, ibm437):
10418         New coding systems.
10419         <set-language-info-alist>: Avoid decode-char.
10421         * language/hebrew.el (cp862, ibm862): New coding systems.
10423         * language/greek.el (cp851, ibm851, cp869, ibm869): New coding systems.
10425         * language/cyrillic.el (cp855, ibm855): New coding systems.
10427         * international/mule-conf.el: Avoid decode-char in top-level code
10428         for self-inserting multibyte chars.
10429         (cp437, cp737, cp775, cp851, cp852, cp855, cp857, cp855, cp857)
10430         (cp860, cp861, cp862, cp863, cp864, cp865, cp869, cp874):
10431         New charsets.
10433         * international/characters.el: Various simplifications and additions.
10435 2008-02-01  Dave Love  <fx@gnu.org>
10437         * international/mule-conf.el (code-pages): Provide, for compatibility.
10439         * international/code-pages.el: Remove.
10441 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10443         * Makefile.in: Cancel the 2008-02-01 change of mine.
10445         * international/fontset.el: Add setting for unicode font at the
10446         end of the default fontset.
10448 2008-02-01  Dave Love  <fx@gnu.org>
10450         * international/mule-conf.el (adobe-standard-encoding, symbol):
10451         Adjust :code-space.
10452         (ibm850): Add :ascii-compatible-p.
10454 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10456         * international/mule-conf.el (vietnamese-viscii-lower)
10457         (vietnamese-viscii-upper): Supply them :code-offset, then unify by
10458         mapping table.
10460 2008-02-01  Dave Love  <fx@gnu.org>
10462         * cus-start.el: Add charset-map-directory.
10464         * international/fontset.el (font-encoding-alist): Add adobe-symbol.
10466         * format.el (format-alist): Remove ibm, mac, hp entries (available
10467         natively).
10469         * language/romanian.el (iso-latin-10): Add :mime-charset.
10470         ("Romanian"): Add doc.
10472         * international/mule-conf.el (iso-8859-10, symbol)
10473         (adobe-standard-encoding, ibm850): New charsets.
10474         (iso-8859-13): Fix IR number, final char.
10475         (file-coding-system-alist): Add .xml.
10477         * language/european.el (iso-latin-6, iso-8859-10, latin-6)
10478         (iso-latin-7, iso-8859-13, latin-7, hp-roman8, roman8)
10479         (adobe-standard-encoding, cp850, ibm850): New coding systems.
10480         ("Latin-6", "Latin-7"): New language environments.
10482 2008-02-01  Dave Love  <fx@gnu.org>
10484         * Makefile.in (DONTCOMPILE): Remove ucs-tables, utf-8,
10485         utf-8-subst; add vietnamese, cyrillic, czech.
10487         * language/romanian.el (iso-latin-10): New coding system.
10489         * international/mule-conf.el (emacs-mule): Set :charset-list,
10490         consistent with coding-system-charset-list doc.
10491         (iso-8859-16): New charset.
10493         * international/mule-diag.el (describe-coding-system): Avoid error
10494         for iso-2022, emacs-mule.
10496 2008-02-01  Dave Love  <fx@gnu.org>
10498         * international/codepage.el: Remove or comment out most of code.
10499         (codepage-setup): Re-write as trivial, obsolete function.
10501         * language/utf-8-lang.el ("UTF-8"): Use utf-8, not mule-utf-8.
10502         Remove setup function.
10504         * language/english.el (ebcdic-us, ebcdic-uk): New coding systems.
10506         * Makefile.in (DONTCOMPILE): Add language/vietnamese.el,
10507         language/cyrillic.el, language/czech.el.
10509         * language/vietnamese.el (windows-1258, cp1258): New coding systems.
10510         (font-ccl-encoder-alist): Remove viscii, vscii.
10512         * language/hebrew.el (windows-1255, cp1255): New coding systems.
10514         * language/european.el (windows-1254, cp1254, windows-1257)
10515         (cp1257, next, iso-latin-7, iso-8859-13, latin-7): New coding systems.
10516         ("Latin-7", "Lithuanian", "Latvian"): Don't require code-pages.
10518         * language/greek.el (windows-1253, cp1253): New coding systems.
10520         * international/mule-conf.el (ebcdic-us, ebcdic-uk): Change map
10521         file name.
10522         (windows-1253, windows-1254, windows-1255, windows-1256)
10523         (windows-1257, windows-1258, next): New charsets.
10525         * international/utf-8.el, international/utf-8-subst.el: Remove.
10527         * international/mule.el: Doc fixes.
10528         (charset-list, generic-char-p, set-coding-priority): Make obsolete.
10529         (coding-system-get): Try to convert old-style symbol to keyword.
10530         (define-charset): Purecopy strings in property list.
10531         (define-coding-system): Purecopy docstring.
10533         * international/mule-diag.el (list-character-sets-2): Avoid
10534         charset-bytes.
10535         (list-iso-charset-chars, list-non-iso-charset-chars): Delete.
10536         (list-block-of-chars): Re-write.
10537         (describe-character-set): Show more properties.
10538         (describe-char-after): Correct codepoint display.
10539         (print-coding-system): Use symbolic types.
10541 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10543         * Makefile.in: Be sure also to run emacs with LANG=C.
10545 2008-02-01  Dave Love  <fx@gnu.org>
10547         * international/mule-diag.el: Doc fixes.
10548         (sort-charset-list, charset-multibyte-form-string): Remove.
10549         (list-character-sets, list-character-sets-1)
10550         (list-character-sets-2): Re-write.
10551         (non-iso-charset-alist): Set to nil and made obsolete.
10552         (decode-codepage-char): Re-write and made obsolete.
10553         (read-charset): Don't use non-iso-charset-alist.
10554         (describe-coding-system): Use keyword properties.
10555         (describe-character-set): Re-write.
10557         * international/mule-conf.el (koi8-u, koi8-t, georgian-ps)
10558         (windows-1250, windows-1251, windows-1252, cp1125, ebcdic-us)
10559         (ebcdic-uk): New charsets.
10561         * language/cyrillic.el (koi8-u, koi8-t, windows-1251, cp1125):
10562         New coding systems.
10564         * language/european.el (windows-1252): New coding system.
10566 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10568         * Makefile.in: By sure to run emacs with LC_ALL=C.
10570         * international/encoded-kb.el (encoded-kbd-handle-8bit): Call
10571         encoded-kbd-self-insert-iso2022-8bit with argument 1.
10572         (encoded-kbd-self-insert-charset): New function.
10573         (encoded-kbd-setup-keymap, encoded-kbd-mode): Handle a
10574         coding-system of type charset.
10576 2008-02-01  Dave Love  <fx@gnu.org>
10578         * international/mule-cmds.el (set-locale-environment): Comment out
10579         set-keyboard-coding-system stuff.
10581 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10583         * international/mule.el (define-coding-system): Doc fix;
10584         sjis->shift-jis.
10586         * international/mule-conf.el: Use decode-char instead of make-char.
10588         * international/encoded-kb.el (encoded-kbd-self-insert-iso2022-8bit):
10589         New arg ARG.  Directly call self-insert-command.  This is a
10590         temporary workaround to make it work with latin-1.
10591         (encoded-kbd-mode): Change `sjis' to `shift-jis'.
10593         * international/characters.el: Setup char-width-table for CJK
10594         characters.
10596 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10598         * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
10599         Fix the initial value to specify character range of
10600         japanese-jisx0208, not unicode.
10602         * international/characters.el: Set syntax/category for
10603         japanese-jisx0208.
10605 2008-02-01  Dave Love  <fx@gnu.org>
10607         * mail/sendmail.el (sendmail-send-it): Use :mime-charset, not
10608         mime-charset.
10610         * language/vietnamese.el, language/korean.el, language/japanese.el:
10611         * language/hebrew.el, language/greek.el, language/chinese.el:
10612         Fix :mime-charset properties.
10614         * language/cyrillic.el (cyrillic-iso-8bit, cyrillic-koi8)
10615         (cyrillic-alternativnyj): Fix :mime-charset.
10616         (cp878, cp866): New alias.
10618         * language/european.el: Fix mime-charset properties.
10620         * international/mule-cmds.el (sort-coding-systems)
10621         (select-safe-coding-system, select-message-coding-system): Use
10622         :mime-charset, not 'mime-charset.
10624         * international/mule-conf.el: Add various :mime-charset properties.
10626 2008-02-01  Dave Love  <fx@gnu.org>
10628         * international/encoded-kb.el (encoded-kbd-self-insert-ccl): Fix
10629         getting decoder.
10630         (encoded-kbd-mode): Fix code for coding system type and designations.
10632         * international/mule-conf.el: Spelling fixes.
10634 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10636         * international/fontset.el (fontset-plain-name): Handle the case
10637         that size, weight, slant are not specified in the fontset name.
10639 2008-02-01  Yong Lu  <lyongu@asia-infonet.com>
10641         * language/greek.el (greek-iso-8bit): Fix typo.
10643 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10645         * language/chinese.el (chinese-big5): Change :coding-type to `charset'.
10647 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10649         * international/characters.el: Change encoding to utf-8-emacs.
10650         Remove apparent duplicate codes.
10652 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10654         * international/fontset.el: Change the registry for
10655         chinese-gb2312 and add the registry for chinese-gbk.
10657         * international/mule.el (charset-chars): Fix typo.
10659         * international/mule-conf.el (chinese-gbk): New charset.
10661         * international/titdic-cnv.el (titdic-convert): Read into a
10662         unibyte buffer then make the buffer multibyte.
10664 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10666         * international/mule-conf.el (utf-16-le, utf-16-be): Use :bom attribute
10667         instead of :signature.
10669 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10671         * language/czech.el ("Czech"): Set `iso-8859-2' for
10672         `nonascii-translation'.
10674         * language/romanian.el ("Romanian"): Likewise.
10676         * language/slovak.el ("Slovak"): Likewise.
10678         * international/characters.el: Optimize calls of modify-category-entry.
10680 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
10682         * bindings.el: Don't bind multibyte characters to
10683         self-insert-command here.  It's done in mule-conf.el.
10685         * case-table.el (set-case-syntax-offset): Delete variable.
10686         (set-case-syntax-1): Delete function.  Change callers.
10687         (set-case-syntax-delims): Don't check byte length of characters.
10689         * isearch.el (isearch-mode-map): Call set-char-table-range to bind
10690         characters to isearch-printing-char.
10692         * loadup.el: Don't load "international/utf-8".  Don't call
10693         update-coding-systems-internal.  Bind coding-system-for-write to
10694         `utf-8' while writing fns-XXX.el.  Call clear-charset-maps before
10695         dumping.
10697         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Adjust for the
10698         change of map-char-table.
10700         * eshell/esh-mode.el: Adjust for the change of map-char-table.
10702         * international/characters.el: Adjust for the deletion of
10703         generic characters.
10705         * international/code-pages.el (cp-make-translation-table)
10706         (cp-valid-codes, cp-fix-safe-chars): Delete.  Change caller.
10707         (cp-make-coding-system): Call define-coding-system.
10709         * international/fontset.el: Rewrite most code.
10711         * international/ja-dic-cnv.el (skkdic-get-kana-compact-codes):
10712         Call encode-char instead of split-char.
10714         * international/ja-dic-utl.el (skkdic-jisx0208-hiragana-block):
10715         Change value.
10716         (skkdic-lookup-key): Call encode-char instead of split-char.
10718         * international/titdic-cnv.el (titdic-convert): Bind
10719         coding-system-for-write to 'iso-2022-7bit.  Don't work on unibyte
10720         buffer.
10722         * international/latin-1.el: Don't bind set-case-syntax-offset.
10724         * international/latin-2.el: Don't bind set-case-syntax-offset.
10726         * international/latin-3.el: Don't bind set-case-syntax-offset.
10728         * international/latin-4.el: Don't bind set-case-syntax-offset.
10730         * international/latin-5.el: Don't bind set-case-syntax-offset.
10732         * international/latin-8.el: Don't bind set-case-syntax-offset.
10734         * international/latin-9.el: Don't bind set-case-syntax-offset.
10736         * international/mule-cmds.el: Don't use coding category.
10737         Call set-coding-system-priority instead of set-coding-priority.
10738         (sort-coding-systems, select-safe-coding-system):
10739         Call coding-system-priority-list to get the most preferred one.
10740         (reset-language-environment): Order of coding system priority
10741         changed.  Set primary charset to iso-8859-1.
10742         (set-language-environment-coding-systems):
10743         Call set-coding-system-priority instead of set-coding-priority.
10744         (get-charset-property, put-charset-property): Move to mule.el.
10746         * international/mule-conf.el: Ful re-write.
10748         * international/mule-diag.el (print-designation): Change arguments.
10749         (print-iso-2022-flags): New function.
10750         (describe-coding-system, describe-current-coding-system):
10751         Adjust for the new structure of coding system.
10753         * international/mule.el (char-valid-p): Make it an alias of characterp.
10754         (define-charset): Full re-design.
10755         (charset-quoted-standard-p): Delete.
10756         (charsetp): Move to charset.c.
10757         (charset-info, charset-id, charset-bytes, charset-width)
10758         (charset-directioin, charset-iso-graphic-plane)
10759         (charset-reverse-charset): Delete.
10760         (charset-dimension, charset-chars, charset-iso-final-char)
10761         (charset-description, charset-short-name, charset-long-name):
10762         Call charset-plist instead of charset-info.
10763         (charset-plist, set-charset-plist): Move to charset.c.
10764         (get-charset-property, put-charset-property): Move from
10765         mule-cmds.el.  Call charset-plist and set-charset-plist.
10766         (make-char): Delete.
10767         (generic-char-p): Make it always return nil.
10768         (decode-char, encode-char): Move to charset.c.
10769         (coding-spec-XXX-idx): Delete variables.
10770         (coding-system-iso-2022-flags): New variable.
10771         (define-coding-system): New function.
10772         (transform-make-coding-system-args, make-coding-system): Delete.
10773         (set-coding-priority): Make it obsolete.
10774         (after-insert-file-set-buffer-file-coding-system)
10775         (find-new-buffer-file-coding-system): Adjust for the new coding
10776         system structure.
10778         * language/chinese.el, language/cyrillic.el, language/european.el:
10779         * language/greek.el, language/hebrew.el, language/indian.el:
10780         * language/japanese.el, language/korean.el, language/lao.el:
10781         * language/thai.el, language/tibetan.el, language/vietnamese.el:
10782         Call define-coding-system instead of make-coding-system.
10783         Delete all CCL program.
10785         * textmodes/sgml-mode.el (sgml-mode-map): Use encode-char instead
10786         of make-char.
10787         (sgml-char-names-table): Fix iteration limit.
10789         * term/mac-win.el: Delete unnecessary calls of set-fontset-font.
10790         (ccl-encode-mac-roman-font): Delete.
10792         * Makefile.in (DONTCOMPILE): Add latin1-disp.el, ucs-tables.el,
10793         utf-8.el, and utf-8-subst.el as they can't be bytecompiled
10794         currently.  This is just a temporary workaround.
10796 2008-02-01  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
10798         * whitespace.el (global-whitespace-mode): Use `find-file-hook' instead
10799         of `find-file-hooks'.
10800         (global-whitespace-toggle-options): Doc fix.
10802 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
10804         * whitespace.el (whitespace): Set :version tag to 23.1.
10805         (whitespace-turn-off, whitespace-toggle-options): Fix typos.
10806         (whitespace-style, whitespace-chars, whitespace-space)
10807         (whitespace-hspace, whitespace-tab, whitespace-newline)
10808         (whitespace-trailing, whitespace-line, whitespace-space-before-tab)
10809         (whitespace-indentation, whitespace-empty, whitespace-space-after-tab)
10810         (whitespace-hspace-regexp, whitespace-space-regexp)
10811         (whitespace-tab-regexp, whitespace-trailing-regexp)
10812         (whitespace-space-before-tab-regexp, whitespace-indentation-regexp)
10813         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
10814         (whitespace-space-after-tab-regexp, whitespace-line-column)
10815         (whitespace-display-mappings, global-whitespace-toggle-options)
10816         (whitespace-cleanup, whitespace-cleanup-region)
10817         (whitespace-interactive-char): Doc fixes.
10819 2008-02-01  Juanma Barranquero  <lekktu@gmail.com>
10821         * whitespace.el (global-whitespace-mode): Fix modeline lighter.
10822         When turning off the global mode, turn off the local modes too
10823         if whitespace is being unloaded.
10824         (whitespace-unload-function): New function.
10826 2008-02-01  Thien-Thi Nguyen  <ttn@gnuvola.org>
10828         * vc.el (vc-update): Fix bug: Specify branch tip as
10829         vc-checkout REVISION.  Reported by Dan Nicolaescu.
10831 2008-02-01  Glenn Morris  <rgm@gnu.org>
10833         * info.el (bookmark-make-cell-function, bookmark-search-size)
10834         (bookmark-current-bookmark): Declare variables for compiler.
10835         (bookmark-buffer-file-name, bookmark-get-filename)
10836         (bookmark-get-front-context-string)
10837         (bookmark-get-rear-context-string, bookmark-get-position)
10838         (bookmark-get-info-node, bookmark-file-or-variation-thereof)
10839         (bookmark-jump-noselect): Declare functions for compiler.
10840         (Info-bookmark-make-cell): Fix argument list to match example of
10841         `bookmark-make-cell-for-text-file'.
10842         (Info-bookmark-jump): Don't require info inside info.el.
10844 2008-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
10846         * progmodes/verilog-mode.el (verilog-sk-prompt-msb)
10847         (verilog-sk-module, verilog-sk-function, verilog-sk-begin)
10848         (verilog-sk-if, verilog-sk-wire, verilog-sk-for)
10849         (verilog-sk-state-machine): Quote all calls to
10850         "auxiliary skeleton"s to prevent infloops.
10852 2008-02-01  Jason Rumney  <jasonr@gnu.org>
10854         * w32-fns.el: Partially revert 2007-11-10 change.
10856 2008-02-01  Martin Rudalics  <rudalics@gmx.at>
10858         * mail/rmail.el (rmail-highlight): Fix specification.
10859         Reported by pod <pod@herald.ox.ac.uk>.
10861 2008-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10863         * image-mode.el (image-mode-current-vscroll)
10864         (image-mode-current-hscroll): Make buffer-local.
10865         (image-set-window-vscroll, image-set-window-hscroll): Simplify.
10866         (image-reset-current-vhscroll): Use the latest setting when displaying
10867         for the first time in a window.  Apply to all windows in the frame.
10868         (image-mode): Don't make image-mode-current-[vh]scroll buffer-local.
10870         * progmodes/grep.el (grep-compute-defaults):
10871         Don't mix up defaults for different connections to the same host.
10873 2008-01-31  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
10875         * blank-mode.el: Rename to whitespace.el.
10877         * obsolete/whitespace.el: Rename to obsolete/old-whitespace.el.
10879 2008-01-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10881         * net/rcompile.el (remote-compile): Remove broken code.
10883 2008-01-31  Jason Rumney  <jasonr@gnu.org>
10885         * term/w32-win.el (image-library-alist): Prefer libxpm.dll.
10887 2008-01-31  Juanma Barranquero  <lekktu@gmail.com>
10889         * linum.el (linum-unload-function): New function.
10891 2008-01-30  Nick Roberts  <nickrob@snap.net.nz>
10893         * progmodes/gdb-ui.el (gdb-var-set-format-regexp): New constant.
10894         (gdb-var-set-format-handler): New function.
10895         (gdb-var-set-format): Use it.
10897 2008-01-30  Juanma Barranquero  <lekktu@gmail.com>
10899         * emacs-lisp/check-declare.el (check-declare-directory):
10900         * emacs-lisp/authors.el (authors): Use `find-program' and
10901         `grep-program' instead of hardcoded program names.
10903         * emacs-lisp/cl-loaddefs.el: Update.
10905 2008-01-30  Tassilo Horn  <tassilo@member.fsf.org>
10907         * info.el (Info-bookmark-make-cell, Info-bookmark-jump): New functions.
10908         Implement bookmark support the new make-cell/handler way.
10909         (Info-mode): Bind bookmark-make-cell-function to
10910         Info-bookmark-make-cell buffer locally.
10912 2008-01-30  Richard Stallman  <rms@gnu.org>
10914         * progmodes/etags.el (tags-query-replace): Delete unused optional args.
10915         Doc fix.
10917         * files.el (hack-local-variables): Don't query about fake variables.
10919 2008-01-30  Markus Triska  <markus.triska@gmx.at>
10921         * linum.el: New file.
10923 2008-01-29  Michael Albinus  <michael.albinus@gmx.de>
10925         * net/tramp.el (tramp-methods): Use "-H" option for "sudo".
10926         Suggested by Trent W. Buck <trentbuck@gmail.com>.  Make ("%h")
10927         a single element in "plinkx".
10928         (tramp-handle-shell-command): Reuse "*Async Shell Command*" or
10929         "*Shell Command Output*" buffers.  Check, whether there is already
10930         an asynchronous process running.  Display always the buffer of the
10931         asynchronous process.
10932         (tramp-compute-multi-hops): Adapt error message.
10934 2008-01-29  Alan Mackenzie  <acm@muc.de>
10936         * progmodes/cc-langs.el (c-specifier-key): Exclude "template"
10937         from this regexp; part of same fix as next change to cc-engine.el.
10939         * progmodes/cc-engine.el (c-guess-basic-syntax, CASE 5A.5):
10940         Anchor the "{" of a template function correctly on "template", not the
10941         following "<".
10943         * progmodes/cc-defs.el (c-version): Increase to 5.31.5.
10945 2008-01-29  Tassilo Horn  <tassilo@member.fsf.org>
10947         * doc-view.el (doc-view-mode): Adapt to image-mode-current-vscroll
10948         and image-mode-current-hscroll being alists now.
10950         * image-mode.el (image-mode-current-vscroll)
10951         (image-mode-current-hscroll): Add doc strings.
10952         (image-set-window-vscroll, image-set-window-hscroll)
10953         (image-reset-current-vhscroll, image-mode): Adapt to
10954         image-mode-current-vscroll and image-mode-current-hscroll being
10955         alists now.
10957 2008-01-29  Martin Rudalics  <rudalics@gmx.at>
10959         * emacs-lisp/find-func.el (find-function-search-for-symbol):
10960         Strip extension from .emacs.el to make sure symbol is searched
10961         in .emacs too.
10963 2008-01-29  Tassilo Horn  <tassilo@member.fsf.org>
10965         * doc-view.el (doc-view-mode): Use facilities below to
10966         restore [vh]scroll when switching buffers.
10968         * image-mode.el (image-mode-current-vscroll)
10969         (image-mode-current-hscroll): New variables.
10970         (image-set-window-hscroll, image-set-window-vscroll): New functions.
10971         (image-forward-hscroll, image-next-line, image-bol, image-eol)
10972         (image-bob, image-eob): Use them.
10973         (image-reset-current-vhscroll): New function.
10974         (image-mode): Make new variables buffer-local and reset [vh]scroll
10975         on window configuration changes.
10977 2008-01-27  Nick Roberts  <nickrob@snap.net.nz>
10979         * progmodes/gdb-ui.el (gdb-create-define-alist): Don't call
10980         gdb-cpp-define-alist-program if file is nil (currently only
10981         " *partial-output-...").
10983 2008-01-27  Richard Stallman  <rms@gnu.org>
10985         * allout.el: Many doc fixes.
10986         (allout-encrypt-string): Fix error message.
10988 2008-01-26  Eli Zaretskii  <eliz@gnu.org>
10990         * progmodes/etags.el (tags-query-replace): Doc fix.
10992 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
10994         * allout.el (allout-unload-function): New function.
10996 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
10998         * allout.el (allout-prefix-data): Doc fix.
10999         (allout-show-current-subtree): Reflow docstring.
11000         (allout-use-mode-specific-leader, allout-use-hanging-indents)
11001         (produce-allout-mode-map, allout-overlay-interior-modification-handler)
11002         (allout-next-heading, allout-previous-heading, allout-rebullet-heading)
11003         (allout-rebullet-topic, allout-rebullet-topic-grunt, allout-kill-topic)
11004         (allout-copy-topic-as-kill, allout-listify-exposed)
11005         (allout-process-exposed, allout-encrypted-key-info)
11006         (allout-update-passphrase-mnemonic-aids)
11007         (allout-next-topic-pending-encryption)
11008         (allout-tests-globally-true): Fix typos in docstrings.
11010 2008-01-23  Jason Rumney  <jasonr@gnu.org>
11012         * lpr.el (printer-name): Do not set on MS Windows.
11014 2008-01-28  Michael Albinus  <michael.albinus@gmx.de>
11016         * net/tramp.el (tramp-handle-shell-command): Use "/bin/sh -c" for
11017         the command.
11019 2008-01-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11021         * whitespace.el: Moved to obsolete dir.
11023         * blank-mode.el: New version 9.2.  Replace whitespace functions by
11024         aliases in blank-mode.
11025         (whitespace-buffer): New fun.
11026         (whitespace-region): Alias for whitespace-buffer, because there is no
11027         blank-region fun.
11028         (whitespace-cleanup): Alias for blank-cleanup.
11029         (whitespace-cleanup-region): Alias for blank-cleanup-region.
11031 2008-01-27  Juanma Barranquero  <lekktu@gmail.com>
11033         * server.el (server-log-time-function): Doc fix.
11034         (server-buffer): Fix typo in docstring.
11036 2008-01-27  Martin Rudalics  <rudalics@gmx.at>
11038         * view.el (view-buffer): Explain in doc-string why exit-action
11039         should not be set to kill-buffer.
11041         * arc-mode.el (archive-extract):
11042         * tar-mode.el (tar-extract): Use kill-buffer-if-not-modified as
11043         exit-action when viewing the buffer.
11045 2008-01-27  Dan Nicolaescu  <dann@ics.uci.edu>
11047         * add-log.el (change-log-search-file-name): Work harder to find
11048         the correct file name.
11049         (change-log-find-file): Fix typo.
11050         (change-log-start-entry-re): Move definition earlier.
11052 2007-01-27  Jan Nieuwenhuizen  <janneke@gnu.org>
11054         * add-log.el (change-log-search-file-name, change-log-find-file):
11055         New function.
11056         (change-log-font-lock-keywords): Move file name matching ...
11057         (change-log-file-names-re): ... here.  New defconst.
11058         (change-log-mode-map): New binding C-c C-f to change-log-find-file.
11060 2008-01-27  Alan Mackenzie  <acm@muc.de>
11062         * progmodes/cc-awk.el, progmodes/cc-engine.el: Correct typos,
11063         enhance comments.
11065 2008-01-27  Michael Albinus  <michael.albinus@gmx.de>
11067         * net/tramp.el (tramp-compute-multi-hops): In case of su(do)?
11068         methods, the host name must be a local host.
11070 2008-01-27  Dan Nicolaescu  <dann@ics.uci.edu>
11072         * vc.el: Add TODO item about not defaulting to RCS.
11074         * server.el (server-process-filter): Check for non-nil before
11075         calling file-directory-p.
11077 2008-01-27  Alan Mackenzie  <acm@muc.de>
11079         * progmodes/cc-vars.el (c-hanging-braces-alist): New element for
11080         arglist-cont-nonempty.
11082         * progmodes/cc-cmds.el (c-brace-newlines): Determine the newlines
11083         for a brace with syntax arglist-cont-nonempty.
11085         * progmodes/cc-styles.el (c-style-alist): Add elements for
11086         arglist-cont-nonempty into 5 styles (gnu, ellemtel, linux, python, awk).
11088 2008-01-27  Thien-Thi Nguyen  <ttn@gnuvola.org>
11090         * button.el (define-button-type): Clarify type of NAME in docstring.
11092 2008-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11094         * server.el (server-buffer): New const.
11095         (server-log): New var.
11096         (server-log): Use them.
11097         (server-process-filter): (Try to) run the continuation in the same cwd
11098         as the client's.
11100 2008-01-26  Alan Mackenzie  <acm@muc.de>
11102         * progmodes/cc-defs.el (c-save-buffer-state):
11103         Bind buffer-file-name and buffer-file-truename to nil, to prevent
11104         primitives generating "buffer is read only" messages.
11106 2008-01-20  Ulf Jasper  <ulf.jasper@web.de>
11108         * calendar/icalendar.el (icalendar-version): Increase to "0.17".
11109         (icalendar-import-format): Doc fix.  Allow function type.
11110         (icalendar--read-element): Doc fix.
11111         (icalendar--parse-summary-and-rest): Doc fix.  Handle function
11112         type icalendar-import-format.  Make regexps non-greedy.
11113         (icalendar--format-ical-event): Handle function type
11114         icalendar-import-format.
11115         (icalendar-import-format-sample): New function.
11117 2008-01-26  Thien-Thi Nguyen  <ttn@gnuvola.org>
11119         * vc.el (vc-exec-after): For mode-line-process highlighting, if
11120         `compile' is not available, fall back to font-lock-warning-face.
11122 2008-01-26  Phil Sung  <psung@mit.edu>  (tiny change)
11124         * wdired.el (wdired-get-filename): Change `(1+ beg)' to `beg' so
11125         that the filename end is found even when the filename is empty.
11126         Fixes error and spurious newlines when marking files for deletion.
11128 2008-01-26  Martin Rudalics  <rudalics@gmx.at>
11130         * subr.el (find-tag-default): Simplify using exclusively
11131         skip-syntax-backward/-forward.
11133 2008-01-26  Michael Albinus  <michael.albinus@gmx.de>
11135         * vc.el (vc-directory, vc-update-change-log): Remove check for
11136         Tramp.  Both functions work for it, though pretty slow
11137         (`vc-directory').  Maybe the implementation can be optimized.
11139         * net/tramp.el (tramp-dissect-file-name): Raise an error when
11140         Tramp 2.0 syntax is used.
11141         Suggested by Trent W. Buck <trentbuck@gmail.com>.
11143 2008-01-26  Eli Zaretskii  <eliz@gnu.org>
11145         * ls-lisp.el (ls-lisp-insert-directory): If -n switch is used,
11146         invoke directory-files-and-attributes with last argument `integer'
11147         instead of `string'.
11148         (insert-directory): Add -n to the list of supported switches
11149         mentioned in the doc string.
11151 2008-01-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11153         * blank-mode.el: New version 9.1.  Handle "long" line tail
11154         visualization.  Doc fix.
11155         (blank-line-length): Rename to blank-line-column.
11156         (blank-chars-value-list, blank-toggle-option-alist, blank-help-text):
11157         Initialization fix.
11158         (blank-replace-spaces-by-tabs): New fun.
11159         (blank-cleanup, blank-cleanup-region, blank-color-on): Code fix.
11161 2008-01-25  Richard Stallman  <rms@gnu.org>
11163         * subr.el (add-hook): Implement `permanent-local-hook' property.
11165         * loadhist.el (file-provides, file-requires): Push the filename right.
11167 2008-01-25  Martin Rudalics  <rudalics@gmx.at>
11169         * emacs-lisp/find-func.el (find-library): Wrap search for
11170         library name in condition-case to avoid reporting a scan-error.
11172 2008-01-25  Juanma Barranquero  <lekktu@gmail.com>
11174         * server.el (server-process-filter): Don't force
11175         the authentication string to be followed by "\n".
11177 2008-01-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11179         * blank-mode.el: New version 9.0.  New commands to clean up some blank
11180         problems like trailing blanks.  New faces and regexp for visualizing
11181         the blank problems.  Doc fix.
11182         (blank-chars, blank-global-modes, blank-chars-value-list)
11183         (blank-toggle-option-alist, blank-help-text): Initialization fix.
11184         (blank-indentation, blank-empty, blank-space-after-tab): New faces.
11185         (blank-indentation, blank-empty, blank-space-after-tab)
11186         (blank-indentation-regexp, blank-empty-at-bob-regexp)
11187         (blank-empty-at-eob-regexp, blank-space-after-tab-regexp): New options.
11188         (blank-cleanup, blank-cleanup-region): New commands.
11189         (blank-color-on): Code fix.
11191 2008-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
11193         * ibuffer.el (ibuffer-default-sorting-mode): Add option to sort by
11194         file name.
11195         (ibuffer-mode-map): Add binding to sort by file name.
11196         (ibuffer-filename/process-header-map): New variable.
11197         (filename-and-process): Add a header that sorts by file name.
11198         (ibuffer-mode): Mention sorting by file name.
11200         * ibuf-ext.el (filename/process): New sorter.
11202 2008-01-25  Sven Joachim  <svenjoac@gmx.de>
11204         * view.el (kill-buffer-if-not-modified): Don't pass t to
11205         buffer-modified-p.
11207 2008-01-24  Michael Albinus  <michael.albinus@gmx.de>
11209         * net/tramp.el (tramp-do-copy-or-rename-file): Flush the cache of
11210         the source file in case of `rename'.
11211         Reported by Pete Forman <pete.forman@westerngeco.com>.
11213 2008-01-24  Ken Manheimer  <ken.manheimer@gmail.com>
11215         * allout.el (allout-keybindings-list): In initial setting, express
11216         meta-prefixed allout keys as vectors instead of strings, since the
11217         string form is interpreted in some cases as composed key
11218         modifiers, eg, accented keys.
11220         (allout-line-boundary-regexp): Clarify description.
11222         (set-allout-regexp): Repair the expressions so that the formfeed
11223         part is identified as one of the top-level groups, and is
11224         included in all the forms, not just the -line-boundary-regexp one.
11226         (allout-prefix-data): Incorporate information from the various
11227         allout regexp's formfeed alternative group, when present.
11229         (allout-write-file-hook-handler): Rectify mangling of the error
11230         handling.  It was broken in 2007-12-06T19:56:41Z!deego@gnufans.org, where an `error'
11231         condition-case handler was apparently reformatted as if it was a
11232         call to the error function.  An apparent repair attempt in version
11233         1.101 situated the original body of the error handling code as
11234         bogus condition-case handlers.  I've returned to just about the
11235         working code that was originally there, removing an unnecessary -
11236         but benign - enclosing 'progn'.  (Automated or cursory code fixes
11237         often aren't.)
11239         (allout-region-active-p): Fallback to value of mark-active if
11240         neither use-region-p nor region-active-p are present, for
11241         compatability with current and recent emacs major releases.
11243 2008-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
11245         * textmodes/reftex-toc.el (reftex-toc-next, reftex-toc-previous)
11246         (reftex-toc-restore-region):
11247         * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer)
11248         (reftex-index-phrases-apply-to-region):
11249         * textmodes/ispell.el (ispell-word):
11250         * progmodes/vhdl-mode.el (vhdl-keep-region-active):
11251         * progmodes/pascal.el (pascal-mark-defun):
11252         * progmodes/f90.el (f90-mark-subprogram, f90-indent-region)
11253         (f90-fill-region):
11254         * emulation/tpu-edt.el (tpu-set-mark):
11255         * emulation/crisp.el (crisp-region-active):
11256         * winner.el (winner-active-region):
11257         * ansi-color.el (ansi-color-set-extent-face): Use featurep instead
11258         of bound tests in order to resolve conditionals at compile time.
11260 2008-01-24  Juanma Barranquero  <lekktu@gmail.com>
11262         * delsel.el (delsel-unload-function): Don't use `remprop'; it is
11263         not autoloaded, and we wouldn't want to load CL just to unload
11264         delsel.el anyway.  Suggested by Martin Rudalics <rudalics@gmx.at>.
11266 2008-01-24  Martin Rudalics  <rudalics@gmx.at>
11268         * delsel.el (delete-selection-pre-hook): Avoid clearing out
11269         pre-command-hook when text is read-only.
11271 2008-01-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
11273         * vc.el (vc-process-filter): Do nothing if buffer not live.
11274         (vc-diff-finish): Rename from vc-diff-sentinel.
11275         No longer take REV1-NAME and REV2-NAME.
11276         Instead, take BUFFER-NAME.  Do nothing if buffer not live.
11277         Don't do window resize if no window displays buffer.
11278         (vc-diff-internal): Use vc-diff-finish.
11280         * vc.el (vc-next-action): Fix two instances of "free-var file" bug:
11281         In both cases, convert single call to one wrapped in dolist.
11283 2008-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
11285         * vc.el: Add a TODO item about missing files.
11286         (vc-exec-after): Add a tooltip to the new mode-line item.
11288 2008-01-24  Glenn Morris  <rgm@gnu.org>
11290         * t-mouse.el (gpm-mouse-start): Declare as a function.
11292 2008-01-23  Michael Albinus  <michael.albinus@gmx.de>
11294         * net/tramp.el (tramp-remote-process-environment): Set "LC_ALL=C".
11295         (tramp-end-of-output): Add `tramp-rsh-end-of-line' into the regexp.
11296         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11297         Don't send `tramp-rsh-end-of-line' additionally, when setting the
11298         prompt.
11299         (tramp-wait-for-output): Distinguish different prompt formats.
11300         (tramp-get-test-nt-command): Don't check for "\n" in the prompt.
11301         (tramp-local-host-p): Check whether temp directory is writable.
11303 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11305         * vc.el: Add TODO items.
11307 2008-01-23  Carsten Dominik  <dominik@science.uva.nl>
11309         * replace.el (occur-mode-find-occurrence-hook): New hook that can
11310         be used to reveal or highlight the location of a match.
11311         (occur-mode-goto-occurrence, occur-mode-goto-occurrence-other-window)
11312         (occur-mode-display-occurrence): Run `occur-mode-find-occurrence-hook'.
11314 2008-01-23  Martin Rudalics  <rudalics@gmx.at>
11316         * progmodes/hideif.el (hide-ifdef-shadow): Add version number
11317         for defcustom.
11318         (hide-ifdef-shadow): Add version number for defface.
11320 2008-01-23  Glenn Morris  <rgm@gnu.org>
11322         * textmodes/org.el (org-export-latex-cleaned-string): Fix declaration.
11324 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11326         * progmodes/sh-script.el (sh-basic-offset):
11327         * progmodes/cc-vars.el (c-syntactic-indentation)
11328         (c-syntactic-indentation-in-macros): Mark as safe.
11330 2008-01-23  Richard Stallman  <rms@gnu.org>
11332         * icomplete.el (icomplete-get-keys):
11333         Look up KEYS using all maps in proper buffer.
11335 2008-01-23  Juanma Barranquero  <lekktu@gmail.com>
11337         * frame.el (display-mm-height, display-mm-width):
11338         * whitespace.el (whitespace-check-leading-whitespace)
11339         (whitespace-check-trailing-whitespace)
11340         (whitespace-check-spacetab-whitespace)
11341         (whitespace-check-indent-whitespace)
11342         (whitespace-check-ateol-whitespace):
11343         * progmodes/ada-xref.el (ada-convert-file-name): Fix typo in docstring.
11345 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11347         * vc-arch.el (vc-arch-delete-rej-if-obsolete): Remove the
11348         after-save-hook so that it is not called multiple times.
11350         * vc-svn.el (vc-svn-resolve-when-done): Likewise.
11352 2008-01-23  Eli Zaretskii  <eliz@gnu.org>
11354         * view.el (view-file-other-window, view-file-other-frame):
11355         Don't kill the buffer if it is modified.  Doc fixes.
11356         (kill-buffer-if-not-modified): New function.
11357         (view-file): Don't kill the buffer if it is modified.
11359         * progmodes/ebrowse.el (ebrowse-view-file-other-window): Delete.
11360         (ebrowse-view/find-file-and-search-pattern):
11361         Call view-file-other-window instead of ebrowse-view-file-other-window.
11362         (ebrowse-view-file-other-frame): Don't call
11363         current-window-configuration.  Fix second argument in the call to
11364         view-mode-enter.  Doc fix.
11366 2008-01-23  Richard Stallman  <rms@gnu.org>
11368         * subr.el (atomic-change-group): Prevent undo list truncation.
11370 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11372         * files.el (safe-local-eval-forms):
11373         Mark (add-hook 'write-file-hooks 'time-stamp) as safe.
11375 2008-01-23  Nick Roberts  <nickrob@snap.net.nz>
11377         * comint.el (comint-insert-input): Set point first.
11379         * progmodes/gdb-ui.el (gdb-dequeue-input): Make doubly sure
11380         session doesn't hang because gdb-pending-triggers is non-nil.
11381         (gdb-frame-handler): Use buffer-file-name instead of
11382         buffer-name in case of duplicate file names.
11384 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11386         * progmodes/verilog-mode.el (verilog-mode-map): Don't bind C-M-a,
11387         C-M-e and C-M-h for emacs, they work by default.
11388         (verilog-emacs-features): Remove.
11389         (verilog-setup-dual-comments, verilog-populate-syntax-table):
11390         Remove.  Move syntax table initialization ...
11391         (verilog-mode-syntax-table): ... here.
11392         (verilog-mode): Don't initialize the syntax table here.
11393         (verilog-mark-defun): Only do something useful for XEmacs, Emacs
11394         does not need it.
11396 2008-01-23  Wilson Snyder  <wsnyder@wsnyder.org>
11398         * progmodes/verilog-mode.el (verilog-booleanp): New function for
11399         backward compatibility.  Replace all uses of booleanp with
11400         verilog-booleanp.
11402 2008-01-23  Dan Nicolaescu  <dann@ics.uci.edu>
11404         * vc-hg.el (vc-hg-diff): Don't pass an empty string.
11406 2008-01-23  Wilson Snyder  <wsnyder@wsnyder.org>
11408         * progmodes/verilog-mode.el (top-level): Fix spacing.
11409         (verilog-mode-version, verilog-mode-release-date):
11410         Update version number.
11411         (verilog-mode-release-emacs): New variable.
11412         (compile-command, reporter-prompt-for-summary-p):
11413         Define for byte compiler.
11414         (verilog-startup-message-lines, verilog-startup-message-displayed)
11415         (verilog-display-startup-message): Remove.
11416         (verilog-highlight-p1800-keywords): Improve docstring.
11417         (sigs-in, sigs-out, got-sig, got-rvalue, uses-delayed)
11418         (vector-skip-list): Only defvar at compile time.
11419         (verilog-highlight-translate-off, verilog-indent-level)
11420         (verilog-indent-level-module, verilog-indent-level-declaration)
11421         (verilog-indent-declaration-macros, verilog-indent-lists)
11422         (verilog-indent-level-behavioral, verilog-indent-level-directive)
11423         (verilog-cexp-indent, verilog-case-indent, verilog-auto-newline)
11424         (verilog-auto-indent-on-newline, verilog-tab-always-indent)
11425         (verilog-tab-to-comment, verilog-indent-begin-after-if)
11426         (verilog-align-ifelse, verilog-minimum-comment-distance)
11427         (verilog-auto-lineup, verilog-highlight-p1800-keywords)
11428         (verilog-auto-endcomments, verilog-auto-read-includes)
11429         (verilog-auto-star-expand, verilog-auto-star-save)
11430         (verilog-library-flags, verilog-library-directories)
11431         (verilog-library-files, verilog-library-extensions)
11432         (verilog-active-low-regexp, verilog-auto-sense-include-inputs)
11433         (verilog-auto-sense-defines-constant, verilog-auto-reset-widths)
11434         (verilog-assignment-delay, verilog-auto-inst-vector)
11435         (verilog-auto-inst-template-numbers, verilog-auto-input-ignore-regexp)
11436         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
11437         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
11438         Add safe-local-variable properties.
11439         (verilog-statement-menu, verilog-company, verilog-re-search-forward)
11440         (verilog-re-search-backward, verilog-error-regexp-add)
11441         (verilog-end-block-re, verilog-emacs-features)
11442         (verilog-populate-syntax-table, verilog-setup-dual-comments)
11443         (verilog-type-font-keywords, verilog-inside-comment-p)
11444         (electric-verilog-backward-sexp, verilog-backward-sexp)
11445         (verilog-forward-sexp, verilog-font-lock-init, verilog-mode)
11446         (electric-verilog-terminate-line, electric-verilog-semi)
11447         (electric-verilog-tab, verilog-insert-1, verilog-insert-indices)
11448         (verilog-generate-numbers, verilog-comment-region, verilog-label-be)
11449         (verilog-beg-of-statement, verilog-in-case-region-p)
11450         (verilog-in-struct-region-p, verilog-in-generate-region-p)
11451         (verilog-in-fork-region-p, verilog-backward-case-item)
11452         (verilog-set-auto-endcomments, verilog-get-expr)
11453         (verilog-expand-vector-internal, verilog-surelint-off)
11454         (verilog-batch-execute-func, verilog-calculate-indent)
11455         (verilog-calc-1, verilog-calculate-indent-directive)
11456         (verilog-leap-to-head, verilog-continued-line)
11457         (verilog-backward-token, verilog-backward-syntactic-ws)
11458         (verilog-forward-syntactic-ws, verilog-backward-ws&directives)
11459         (verilog-forward-ws&directives, verilog-at-constraint-p)
11460         (verilog-skip-backward-comments, verilog-indent-line-relative)
11461         (verilog-do-indent, verilog-indent-comment, verilog-more-comment)
11462         (verilog-pretty-declarations, verilog-pretty-expr)
11463         (verilog-just-one-space, verilog-indent-declaration)
11464         (verilog-get-completion-decl, verilog-goto-defun, verilog-showscopes)
11465         (verilog-header, verilog-signals-combine-bus, verilog-read-decls)
11466         (verilog-read-always-signals-recurse, verilog-read-instants)
11467         (verilog-read-auto-template, verilog-set-define)
11468         (verilog-read-defines, verilog-read-signals, verilog-getopt)
11469         (verilog-is-number, verilog-expand-dirnames, verilog-modi-lookup)
11470         (verilog-modi-cache-results, verilog-insert-one-definition)
11471         (verilog-make-width-expression, verilog-delete-autos-lined)
11472         (verilog-auto-save-check, verilog-auto-arg, verilog-auto-inst-port)
11473         (verilog-auto-inst, verilog-auto-inst-param, verilog-auto-reg)
11474         (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
11475         (verilog-auto-output-every, verilog-auto-input, verilog-auto-inout)
11476         (verilog-auto-inout-module, verilog-auto-sense, verilog-auto-reset)
11477         (verilog-auto-tieoff, verilog-auto-unused, verilog-auto-ascii-enum)
11478         (verilog-auto, verilog-sk-define-signal, verilog-mode-mouse-map)
11479         (verilog-load-file-at-mouse, verilog-load-file-at-point)
11480         (verilog-library-files): Cleanup spacing of )'s they should not be
11481         on unique lines.  Fix checkdoc warnings.
11483 2008-01-22  Glenn Morris  <rgm@gnu.org>
11485         * progmodes/hideif.el (hide-ifdef-initially, hide-ifdef-read-only)
11486         (hide-ifdef-lines, hide-ifdef-shadow): Remove autoload cookies
11487         from defcustoms.
11488         (hide-ifdef-shadow): Remove autoload cookie from defface.
11490         * vc.el (vc-diff-sentinel): Do not write a footer if there were
11491         differences.
11493 2008-01-21  Reiner Steib  <Reiner.Steib@gmx.de>
11495         * pcvs-defs.el (cvs-menu): Improve cvs-mode-find-file,
11496         cvs-mode-find-file-other-window.  Add cvs-mode-diff-yesterday and
11497         manual entry.
11499 2008-01-21  Michael Albinus  <michael.albinus@gmx.de>
11501         * net/dbus.el (dbus-ignore-errors): New macro.
11502         (dbus-unregister-object): New defun.  Moved from dbusbind.c.
11503         (dbus-handle-event, dbus-list-activatable-names, dbus-list-names)
11504         (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect)
11505         (dbus-get-signatures): Apply `dbus-ignore-errors'.
11507 2008-01-21  Martin Rudalics  <rudalics@gmx.at>
11509         * outline.el (outline-up-heading): Fix check for top level to
11510         avoid infinite looping in hide-other.
11512 2008-01-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
11514         * vc.el (vc-process-sentinel): After calling the previous
11515         sentinel, do nothing if the process' buffer is not live.
11517 2008-01-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11519         * blank-mode.el: Fix a problem of cleaning blank faces when turning off
11520         blank-mode in some buffers (like *info* buffers).  Reported by Juanma
11521         Barranquero <lekktu@gmail.com>.  Eliminate `-face' suffix of all
11522         blank-mode faces.  Doc fix.  New version 8.1.
11523         (blank-turn-on, blank-turn-off): Replace (and CONDITION BODY) by (when
11524         CONDITION BODY).
11525         (blank-space-face): Face/option name replaced by blank-space.
11526         (blank-hspace-face): Face/option name replaced by blank-hspace.
11527         (blank-tab-face): Face/option name replaced by blank-tab.
11528         (blank-newline-face): Face/option name replaced by blank-newline.
11529         (blank-trailing-face): Face/option name replaced by blank-trailing.
11530         (blank-line-face): Face/option name replaced by blank-line.
11531         (blank-space-before-tab-face): Face/option name replaced by
11532         blank-space-before-tab.
11533         (blank-color-on, blank-color-off, blank-display-char-on): Fix code.
11535 2008-01-21  Juanma Barranquero  <lekktu@gmail.com>
11537         * blank-mode.el (blank-style, blank-chars, blank-hspace-regexp)
11538         (blank-space-regexp, blank-tab-regexp, blank-trailing-regexp)
11539         (blank-space-before-tab-regexp, blank-global-modes, blank-mode)
11540         (global-blank-mode): Doc fixes.
11541         (blank, blank-space-face, blank-hspace-face, blank-tab-face)
11542         (blank-newline-face, blank-trailing-face, blank-line-face)
11543         (blank-space-before-tab-face, blank-display-mappings)
11544         (blank-chars-value-list, blank-style-value-list, blank-toggle-options)
11545         (global-blank-toggle-options, blank-help-text, blank-interactive-char)
11546         (blank-turn-on, blank-turn-off, blank-color-on, blank-color-off):
11547         Fix typos in docstrings.
11549 2008-01-21  Juanma Barranquero  <lekktu@gmail.com>
11551         * server.el (server-log-time-function): New variable.
11552         (server-log): Use it.
11554 2008-01-21  Glenn Morris  <rgm@gnu.org>
11556         * progmodes/hideif.el: Move defcustoms and defface to start of file.
11558         * textmodes/org.el (org-entry-properties): Let-bind `clocksum'.
11560 2008-01-21  Juanma Barranquero  <lekktu@gmail.com>
11562         * textmodes/org.el (org-unmodified, org-cycle-emulate-tab)
11563         (org-descriptive-links, org-link-file-path-type)
11564         (org-remember-use-refile-when-interactive)
11565         (org-agenda-skip-timestamp-if-done, org-agenda-scheduled-leaders)
11566         (org-export-ascii-bullets, org-agenda-deadline-faces)
11567         (turn-on-orgstruct++, orgtbl-to-texinfo, org-mhe-get-header)
11568         (org-batch-agenda, org-batch-agenda-csv, org-fix-agenda-info)
11569         (org-kill-note-or-show-branches): Fix typos in docstrings.
11571 2008-01-20  Thien-Thi Nguyen  <ttn@gnuvola.org>
11573         * vc.el (vc-process-sentinel): Set mode-line-process.
11574         (vc-exec-after): Likewise, for the `run' process status.
11576 2008-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11578         * ibuffer.el (ibuffer-mode): Fix last change.
11580 2008-01-20  Dan Nicolaescu  <dann@ics.uci.edu>
11582         * vc-hg.el (vc-hg-registered):
11583         * vc-svn.el (vc-svn-registered): Make it work for non-existent files.
11585 2008-01-20  Martin Rudalics  <rudalics@gmx.at>
11587         * repeat.el (repeat-undo-count): New variable.
11588         (repeat): For self-insertions make undo boundary only after 20
11589         repetitions.  Inhibit point recording unless repeat-repeat-char is nil.
11591 2008-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
11593         * net/imap.el (imap-ping-server): New variable.
11594         (imap-opened): On add extra ping if imap-ping-server is non-nil.
11595         (imap-ping-server): Minor doc string fixes.
11597 2008-01-19  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
11599         * net/imap.el (imap-ping-server): New function.
11600         (imap-opened): Call imap-ping-server.
11602 2008-01-20  Glenn Morris  <rgm@gnu.org>
11604         * progmodes/python.el: Quote all calls to "auxiliary skeleton"s to
11605         prevent infloops.
11607 2008-01-20  Martin Svenson  <phromo@gmail.com>  (tiny change)
11609         * progmodes/python.el (python-imports): Default to "None".
11611 2008-01-19  Tom Tromey  <tromey@redhat.com>
11613         * vc-svn.el (vc-svn-after-dir-status): New function.
11614         (vc-svn-dir-status): Run svn asynchronously.
11616 2008-01-19  Martin Rudalics  <rudalics@gmx.at>
11618         * progmodes/hideif.el (hide-ifdef-shadow): New option.
11619         (hide-ifdef-shadow): New face.
11620         (hide-ifdef-toggle-shadowing): New function to toggle between
11621         shadowing and making code invisible.
11622         (hide-ifdef-mode-submap): Add binding for hide-ifdef-toggle-shadowing.
11623         (hide-ifdef-mode-menu): Add entry for hide-ifdef-toggle-shadowing.
11624         (hide-ifdef-region-internal): Give new overlay hide-ifdef
11625         property.  Shadow text when hide-ifdef-shadow is non-nil.
11626         (hif-show-ifdef-region): Remove overlays with hide-ifdef property set.
11627         (hif-hide-line): Use when instead of if.
11628         (hide-ifdef-initially, hide-ifdef-read-only, hide-ifdef-lines):
11629         Remove unneeded * from doc-strings.
11631 2008-01-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11633         * doc-view.el (doc-view-goto-page): Don't move point any more, now that
11634         the hscroll behavior was fixed.
11635         (doc-view-mode): Disable auto-hscroll-mode.
11637 2008-01-18  Tom Tromey  <tromey@redhat.com>
11639         * vc-svn.el (vc-svn-dir-status): New function.
11641 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
11643         * vc.el: Make vc-status asynchronous.
11644         (vc-update-vc-status-buffer): New function broken out of ...
11645         (vc-status-refresh): ... here.  Pass vc-update-vc-status-buffer to
11646         the dir-status backend function.
11648         * vc-hg.el (vc-hg-dir-status): Compute the status asynchronously.
11649         Move the output processing to ...
11650         (vc-hg-after-dir-status): ... here.  Call the function passed as
11651         an argument with the results.
11653 2008-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11655         * doc-view.el (doc-view-pdf/ps->png): Make sure we a have a valid cwd.
11656         (doc-view-insert-image): Do something if the image is missing.
11657         (doc-view-mode): Don't use file-remote-p.
11659 2008-01-18  Bastien Guerry  <Bastien.Guerry@ens.fr>
11661         * textmodes/org-export-latex.el (org-export-latex-cleaned-string): Fix.
11662         (org-export-latex-special-chars): Convert "..." in \ldots
11663         and skip tables.
11664         (org-export-latex-fontify-headline): Change parameter name.
11665         (org-export-as-latex): Handle export of subtrees.
11666         (org-export-latex-make-header): New argument TITLE.
11667         (org-export-latex-content): New argument EXCLUDE-LIST.
11668         (org-list-parse-list): New name for org-export-latex-parse-list.
11669         (org-export-latex-make-header): New name for
11670         org-export-latex-make-preamble.
11671         (org-list-to-generic): New name of org-export-list-to-generic.
11672         (org-list-to-latex): New name of org-export-list-to-latex.
11673         (org-list-item-begin, org-list-end, org-list-insert-radio-list)
11674         (org-list-send-list, org-list-to-texinfo)
11675         (org-list-to-html): New functions.
11676         (org-export-latex-tables-column-borders)
11677         (org-export-latex-default-class, org-export-latex-classes)
11678         (org-export-latex-classes-sectioning)
11679         (org-list-radio-list-templates): New options.
11680         (org-export-latex-header): New variable.
11681         (org-latex-entities): New constant.
11682         (org-export-latex-default-sectioning, org-export-latex-preamble)
11683         (org-export-latex-prepare-text-option)
11684         (org-export-latex-get-sectioning): Remove.
11686 2008-01-18  Carsten Dominik  <dominik@science.uva.nl>
11688         * textmodes/org-publish.el (org-publish-current-project):
11689         Fix bug with forcing publication.
11691         * textmodes/org.el (org-export-with-special-strings): New option.
11692         (org-export-html-convert-special-strings): New function.
11693         (org-html-do-expand): `org-export-html-convert-special-strings'
11694         added to the list of conversion.
11695         (org-infile-export-plist, org-get-current-options): Add support
11696         for "-" in the #+OPTION line to let user switch on/off special
11697         strings conversion.
11698         (org-export-plist-vars): New :html-table-tag property.
11699         (org-export-as-html, org-format-org-table-html)
11700         (org-format-table-table-html) Use the :html-table-tag property
11701         instead of the `org-export-html-table-tag' global value.
11702         (org-additional-option-like-keywords): Add "TBLFM".
11703         (org-entry-properties): Include the CLOCKSUM special property.
11704         (org-columns-edit-value): Do not allow to edit the special
11705         CLOCKSUM property.
11706         (org-flag-drawer): Use the original value of `outline-regexp'.
11707         (org-remember-handler): Add invisible-ok flag to call to
11708         `org-end-of-subtree'.
11709         (org-agenda-highlight-todo): Respect
11710         `org-agenda-todo-keyword-format'.
11711         (org-agenda-todo-keyword-format): New option.
11712         (org-infile-export-plist): No restriction while searching for options.
11713         (org-remember-handler): Remove comments at the end of the buffer.
11714         (org-remember-use-refile-when-interactive): New option.
11715         (org-table-sort-lines): Make sure sorting works on link
11716         descritions only, and ignores the link.
11717         (org-sort-entries-or-items): Make sure the end of the subtree is
11718         included.
11719         (org-refile-use-outline-path): New allowed values `file' and
11720         `full-file-path'.
11721         (org-get-refile-targets): Respect new values for
11722         `org-refile-use-outline-path'.
11723         (org-agenda-get-restriction-and-command): DEL goes back to initial list.
11724         (org-export-as-xoxo): Restore point when done.
11725         (org-open-file): Allow multiple %s in command.
11726         (org-clock-in-switch-to-state): New option.
11727         (org-first-list-item-p): New function.
11728         (org-last-remember-storage-locations): New variable.
11729         (org-get-refile-targets): Interpret the new maxlevel setting.
11730         (org-refile-targets): New option `:maxlevel'.
11731         (org-copy-subtree): Include empty lines before but not after subtree.
11732         (org-back-over-empty-lines, org-skip-whitespace): New functions.
11733         (org-move-item-down, org-move-item-up): Include empty lines before
11734         but not after item.
11735         (org-first-sibling-p): New function.
11736         (org-remember-apply-template): Defaults, completions and history
11737         for template prompts.  Also, interpret new `%!' escape.
11738         (org-context-choices): New constant.
11739         (org-bound-and-true-p): New macro.
11740         (org-imenu-depth): New option.
11741         (org-imenu-markers): New variable.
11742         (org-imenu-new-marker, org-imenu-get-tree)
11743         (org-speedbar-set-agenda-restriction): New functions.
11744         (org-agenda-set-restriction-lock)
11745         (org-agenda-remove-restriction-lock)
11746         (org-agenda-maybe-redo): New functions.
11747         (org-agenda-restriction-lock): New face.
11748         (org-agenda-restriction-lock-overlay)
11749         (org-speedbar-restriction-lock-overlay): New variables.
11750         (org-open-at-point): Remove obsolete way to do redirection in
11751         shell links.
11752         (org-imenu-and-speedbar): New customization group.
11753         (org-entry-properties): Return keyword-less time strings.
11754         (org-clock-heading-function): New option.
11755         (org-clock-in): Use `org-clock-heading-function'.
11756         (org-calendar-holiday): Try to use `calendar-check-holidays'
11757         instead of the obsolete `check-calendar-holidays'.
11758         (org-export-html-special-string-regexps): New constant.
11759         (org-massive-special-regexp): New variable.
11760         (org-compute-latex-and-specials-regexp)
11761         (org-do-latex-and-special-faces): New functions.
11762         (org-latex-and-export-specials): New face.
11763         (org-highlight-latex-fragments-and-specials): New option.
11764         (org-link-escape-chars): Use characters instead of strings.
11765         (org-link-escape-chars-browser, org-link-escape)
11766         (org-link-unescape): Use characters instead of strings.
11767         (org-export-html-convert-sub-super, org-html-do-expand): Check for
11768         protected text.
11769         (org-emphasis-alist): Additional `verbatim' flag.
11770         (org-set-emph-re): Handle the verbatim flag and compute
11771         `org-verbatim-re'.
11772         (org-cleaned-string-for-export): Protect verbatim elements.
11773         (org-verbatim-re): New variable.
11774         (org-hide-emphasis-markers): New option.
11775         (org-additional-option-like-keywords): Add new keywords.
11776         (org-get-entry): Rename from `org-get-cleaned-entry'.
11777         (org-icalendar-cleanup-string): New function for quoting icalendar text.
11778         (org-agenda-skip-scheduled-if-done): New option.
11779         (org-agenda-get-scheduled, org-agenda-get-blocks): Use
11780         `org-agenda-skip-scheduled-if-done'.
11781         (org-prepare-agenda-buffers): Allow buffers as arguments.
11782         (org-entry-properties): Add CATEGORY as a special property.
11783         (org-use-property-inheritance): Allow a list of properties as a value.
11784         (org-eval-in-calendar): No longer update the prompt.
11785         (org-read-date-popup-calendar): Rename from
11786         `org-popup-calendar-for-date-prompt'.
11787         (org-read-date-display-live): New variable.
11788         (org-read-date-display): New function.
11789         (org-read-date-analyze): New function.
11790         (org-remember-apply-template): Define `remember-finalize' if it is
11791         not yet defined.
11792         (org-remember-insinuate): New function.
11793         (org-read-date-prefer-future): New option.
11794         (org-read-date): Respect the setting of
11795         `org-read-date-prefer-future'.  Use `org-read-date-analyze'.
11796         (org-set-font-lock-defaults): Use `org-archive-tag' instead of a
11797         hardcoded string.
11798         (org-remember-apply-template): Use `remember-finalize' instead of
11799         `remember-buffer'.
11800         (org-columns-compute, org-column-number-to-string)
11801         (org-columns-uncompile-format, org-columns-compile-format)
11802         (org-columns-compile-format): Handle printf format specifier.
11803         (org-columns-new, org-column-number-to-string)
11804         (org-columns-uncompile-format, org-columns-compile-format):
11805         Support for new currency summary type.
11806         (org-tree-to-indirect-buffer): Do not kill old buffer when
11807         `org-indirect-buffer-display' is `new-frame'.
11808         (org-indirect-buffer-display): Document that `new-frame' leads to
11809         indiret buffer proliferation.
11810         (org-agenda-list): Use `org-extend-today-until'.
11811         (org-extend-today-until): New option.
11812         (org-format-org-table-html): Use lower-case for <col> tag.
11813         (org-agenda-execute): New command.
11814         (org-agenda-mode-map): Keybindings of "g" "G", "e" modified.
11815         (org-select-remember-template): New function.
11816         (org-remember-apply-template): Use `org-select-remember-template'.
11817         (org-go-to-remember-target): New function.
11819 2008-01-18  Dan Nicolaescu  <dann@ics.uci.edu>
11821         * vc.el: Add a TODO note about vc-state.
11822         (vc-next-action): Register 'unregistered and 'ignored files.
11823         Use when and unless instead of if where appropriate.
11824         (vc-start-entry): Fix typo.
11825         (vc-status): Autoload it.
11827 2008-01-18  Glenn Morris  <rgm@gnu.org>
11829         * ffap.el (ffap-alist): Remove space from RFC regexp.
11831 2008-01-18  Richard Stallman  <rms@gnu.org>
11833         * custom.el (custom-theme-recalc-face): Use face-spec-set rather
11834         than face-spec-recalc.
11836 2008-01-18  Glenn Morris  <rgm@gnu.org>
11838         * ibuffer.el (ibuffer-mode): Fix typo in previous change.
11840 2008-01-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11841             Miles Bader  <miles@gnu.org>
11843         * blank-mode.el: New file.  Minor mode to visualise (HARD) SPACE,
11844         TAB, NEWLINE.  Miles Bader <miles@gnu.org> wrote the original code
11845         for handling display table (via visws.el package), his code was
11846         modified, but the main idea was kept.
11848 2008-01-17  Glenn Morris  <rgm@gnu.org>
11850         * ibuf-ext.el (ibuffer-auto-mode, ibuffer-save-filter-groups)
11851         (ibuffer-save-filters): Remove calls to deleted
11852         ibuffer-update-mode-name.
11854 2008-01-16  Martin Rudalics  <rudalics@gmx.at>
11856         * longlines.el (longlines-mode, longlines-show-region)
11857         (longlines-unshow-hard-newlines): Bind buffer-file-name and
11858         buffer-file-truename to nil while modifying buffer.
11860         * cus-edit.el (custom-reset-standard-variables-list)
11861         (custom-reset-standard-faces-list): New variables.
11862         (custom-reset-standard-save-and-update): New function.
11863         (Custom-save): Apply custom-mark-to-save before and
11864         custom-state-set-and-redraw after saving options.
11865         (Custom-reset-standard): Apply custom-mark-to-reset-standard to
11866         options and call custom-reset-standard-save-and-update.
11867         (custom-variable, custom-face, custom-group): Provide new
11868         entries for custom-mark-to-save, custom-mark-to-reset-standard,
11869         and custom-state-set-and-redraw.
11870         (custom-variable-mark-to-save)
11871         (custom-variable-state-set-and-redraw)
11872         (custom-variable-mark-to-reset-standard)
11873         (custom-face-mark-to-save, custom-face-state-set-and-redraw)
11874         (custom-face-mark-to-reset-standard)
11875         (custom-group-mark-to-save, custom-group-state-set-and-redraw)
11876         (custom-group-mark-to-reset-standard): New functions.
11877         (custom-variable-save): Move save, state-set, and redraw
11878         functionality to custom-variable-mark-to-save.
11879         (custom-face-save): Move save, state-set, and redraw
11880         functionality to custom-face-mark-to-save.
11881         (custom-group-save): Move save, state-set, and redraw
11882         functionality to custom-group-mark-to-save.
11883         (custom-variable-reset-standard, custom-face-reset-standard)
11884         (custom-group-reset-standard): Move save, state-set, and redraw
11885         functionality to custom-reset-standard-save-and-update.
11887         (custom-buffer-create-internal): Fix text in verbose help.
11888         (custom-face-value-create): Indent doc-strings of faces like
11889         those of variables.
11891 2008-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11893         * server.el (server-process-filter): Replace lineno and columnnno
11894         which defaulted to 1&0 with filepos which defaults to nil.
11895         (server-goto-line-column): Only receive the filepos.
11896         Only move if filepos is non-nil.
11897         (server-visit-files): Slight restructure to consolidate two calls to
11898         server-goto-line-column into just one.
11900         * nxml/nxml-mode.el (nxml-mode): Use mode-line-process to indicate
11901         the use of degraded mode.
11902         (nxml-degrade): Don't change mode-name.
11904         * nxml/rng-nxml.el (rng-nxml-mode-init):
11905         Don't overwrite mode-line-process.
11907         * ibuffer.el (mode): Pass the buffer to format-mode-line.
11908         (ibuffer-update-mode-name): Remove.
11909         (ibuffer-redisplay, ibuffer-update, ibuffer-mode): Don't call it.
11910         (ibuffer-mode): Use mode-line-process instead.
11912         * ibuf-ext.el (ibuffer-auto-update-changed, ibuffer-auto-mode):
11913         Use derived-mode-p.
11914         (ibuffer-mark-by-mode-regexp): Pass the buffer to format-mode-line.
11916         * help.el (describe-mode): Pass the right buffer to format-mode-line.
11918 2008-01-16  Glenn Morris  <rgm@gnu.org>
11920         * comint.el (comint-regexp-arg): Fix no-input case.
11922 2008-01-16  Dan Nicolaescu  <dann@ics.uci.edu>
11924         * smerge-mode.el (smerge-start-session): Rename from smerge-auto.
11925         * pcvs.el (cvs-revert-if-needed):
11926         * vc.el (vc-maybe-resolve-conflicts): Rename callers.
11928         * vc-svn.el (vc-svn-find-file-hook):
11929         * vc-arch.el (vc-arch-find-file-hook): Undo previous change.
11931 2008-01-16  Ulf Jasper  <ulf.jasper@web.de>
11933         * calendar/icalendar.el (icalendar-version): Increase to 0.16.
11934         (icalendar-export-file, icalendar-import-file):
11935         Restore significant trailing whitespace in `interactive' prompts.
11937 2008-01-16  Tom Tromey  <tromey@redhat.com>
11939         * calendar/icalendar.el (icalendar--convert-tz-offset)
11940         (icalendar--parse-vtimezone, icalendar--convert-all-timezones)
11941         (icalendar--find-time-zone): New functions.
11942         (icalendar--decode-isodatetime): Add `zone' argument, passed to
11943         `decode-time'.  Doc fix.
11944         (icalendar--convert-ical-to-diary): Compute zone-map.
11945         Pass timezone to icalendar--decode-isodatetime.
11947 2008-01-16  Alan Mackenzie  <acm@muc.de>
11949         * progmodes/cc-vars.el (c-constant-symbol): Put this defun inside
11950         an eval-and-compile, so as to permit byte-compiling (e.g. in
11951         bootstrap).
11953 2008-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11955         * emacs-lisp/easymenu.el (easy-menu-avoid-duplicate-keys): New var.
11956         (easy-menu-create-menu, easy-menu-convert-item-1): Use it to avoid
11957         using the same key for different menu entries.
11959         * smerge-mode.el (smerge-refine): Also work on "same change conflicts".
11960         (smerge-makeup-conflict): New command.
11962 2008-01-15  Thien-Thi Nguyen  <ttn@gnuvola.org>
11964         * log-edit.el (log-edit): Doc fix.
11966 2008-01-15  Glenn Morris  <rgm@gnu.org>
11968         * diff-mode.el (diff-end-of-hunk): Revert 2008-01-08 change.
11970 2008-01-14  Alan Mackenzie  <acm@muc.de>
11972         * progmodes/cc-vars.el (c-constant-symbol): New function which
11973         supersedes c-const-symbol.  During a customize-.. call it enables
11974         an element of (e.g.) c-hanging-braces alist to have its name
11975         displayed, even when the default value of c-h-b etc. doesn't
11976         include the elemnt.  Replace uses of the old function by the new.
11978         * progmodes/cc-vars.el (c-hanging-braces-alist): Remove the
11979         obscure non-working fragment ":value c-".
11981 2008-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11983         * abbrev.el (clear-abbrev-table): Can't pass a symbol to intern.
11985 2008-01-14  Michael Albinus  <michael.albinus@gmx.de>
11987         * net/tramp.el (tramp-local-host-p): Use `tramp-file-name-host'
11988         instead of `tramp-file-name-real-host'.
11990         * net/trampver.el: Update release number.
11992 2008-01-14  Alan Mackenzie  <acm@muc.de>
11994         * progmodes/cc-engine.el (c-guess-basic-syntax): Prevent a macro
11995         call inside a struct being recognised as a K&R argument.
11997 2008-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11999         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12000         Accept "fatal error" from MSFT.
12001         Reported by Jared Finder <jfinder@crypticstudios.com>.
12003 2008-01-14  Dan Nicolaescu  <dann@ics.uci.edu>
12005         * smerge-mode.el (smerge-auto): New function.
12006         * vc-svn.el (vc-svn-find-file-hook):
12007         * vc-arch.el (vc-arch-find-file-hook):
12008         * pcvs.el (cvs-revert-if-needed):
12009         * vc.el (vc-maybe-resolve-conflicts): Use it instead of vc-mode.
12010         (top-level): Add a Todo list.
12012 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
12014         * vc.el (vc-update): Resolve conflicts if necessary instead of
12015         just updating the buffer.
12017         * vc-cvs.el (vc-cvs-merge-news): Ignore the error status of the
12018         update command so that we can parse the output.
12020 2008-01-13  Martin Rudalics  <rudalics@gmx.at>
12022         * mail/rmail.el (rmail-convert-to-babyl-format):
12023         Remove save-excursion to avoid infinite looping.
12024         Reported by dnz <dnz@bk.ru>.
12026 2008-01-12  Glenn Morris  <rgm@gnu.org>
12028         * woman.el (woman-parse-numeric-arg): Change handling of `==':
12029         can be interned without a function definition.
12031 2008-01-12  Jason Rumney  <jasonr@gnu.org>
12033         * nxml/nxml-mode.el (nxml-enable-unicode-char-name-sets)
12034         (rng-nxml-mode-init): Declare.
12036 2008-01-11  Jason Rumney  <jasonr@gnu.org>
12038         * nxml/rng-nxml.el (rng-preferred-prefix-alist): Add some defaults.
12039         (rng-preferred-prefix-alist-default): Remove.
12041         * nxml/nxml-uchnm.el (nxml-internal-unicode-char-name-sets-enabled):
12042         Rename from nxml-enable-unicode-char-name-sets-flag.
12043         (nxml-enable-unicode-char-name-sets-1): Merge into
12044         nxml-enable-unicode-char-name-sets.
12045         (nxml-enable-unicode-char-name-sets): Don't unconditionally set
12046         nxml-char-name-ignore-case here.
12048         * nxml/nxml-mode.el (nxml-mode): Call rng-nxml-mode-init directly.
12049         Update doc string and commentary.
12050         (nxml-char-name-ignore-case): Change default value.
12051         (nxml-mode): Call nxml-enable-unicode-char-name-sets directly.
12053 2008-01-11  Martin Rudalics  <rudalics@gmx.at>
12055         * cus-start.el (all): Add missing version entries.
12057 2008-01-11  Glenn Morris  <rgm@gnu.org>
12059         * language/china-util.el (big5-to-flat-code, flat-code-to-big5)
12060         (euc-to-flat-code, flat-code-to-euc):
12061         * textmodes/org.el (elmo-msgdb-overview-get-entity)
12062         (wl-summary-buffer-msgdb): Declare as funtions.
12064 2008-01-10  Martin Rudalics  <rudalics@gmx.at>
12066         * progmodes/ada-mode.el (ada-set-syntax-table-properties):
12067         Bind buffer-file-name and buffer-file-truename.
12069         * fringe.el (fringe-mode-explicit): New variable.
12070         (set-fringe-mode): Don't alter default-frame-alist when just
12071         loading this file.
12073 2008-01-10  Tassilo Horn  <tassilo@member.fsf.org>
12075         * doc-view.el (doc-view-buffer-file-name): New variable.
12076         (doc-view-convert-current-doc, doc-view-search)
12077         (doc-view-current-cache-dir, doc-view-initiate-display)
12078         (doc-view-mode): Use it.
12079         (doc-view-bookmark-make-cell): Use variable buffer-file-name
12080         instead of function.
12082 2008-01-10  Dan Nicolaescu  <dann@ics.uci.edu>
12084         * vc-svn.el (vc-svn-registered): Return the correct value for
12085         ignored and unregistered files.
12087 2008-01-10  Tassilo Horn  <tassilo@member.fsf.org>
12089         * doc-view.el (tramp): Require tramp because we use tramp-tramp-file-p.
12091 2008-01-10  Tom Tromey  <tromey@redhat.com>
12093         * vc.el (vc-status-unmark-all-files): New function.
12094         (vc-status-unmark-all-files): Likewise.
12095         (vc-status-mode-map): Add bindings.
12097 2008-01-10  Michael Kifer  <kifer@cs.stonybrook.edu>
12099         * ediff*.el: Uncomment declare-function.
12101         * emulation/viper*.el: Uncomment declare-function.
12103 2008-01-09  Tassilo Horn  <tassilo@member.fsf.org>
12105         * doc-view.el (doc-view-mode): Support tramp, compressed files and
12106         files inside archives uniformly.
12108 2008-01-09  Eric S. Raymond  <esr@snark.thyrsus.com>
12110         * textmodes/sgml-mode.el (sgml-tag-syntax-table): Initialize this
12111         constant with a computation on sgml-specials rather than a literal
12112         list.  Without this change the syntax table is generated
12113         incorrectly, and the mode will think it's in a comment following
12114         any instance of the string "--".
12116 2008-01-09  Tassilo Horn  <tassilo@member.fsf.org>
12118         * doc-view.el (doc-view-mode-p): Add EPS as supported type.
12119         (doc-view-mode): Support document files inside archives.
12121 2008-01-09  Dan Nicolaescu  <dann@ics.uci.edu>
12123         * vc.el (vc-deduce-fileset): Return the currently selected file if
12124         no files are selected when using vc-status.
12126 2008-01-09  Michael Kifer  <kifer@cs.stonybrook.edu>
12128         * ediff*.el: Comment out declare-function.  "make bootstrap"
12129         stops with an error and Emacs does not compile with those things in.
12130         Besides, declare-function is not defined in XEmacs.
12132         * ediff-util (eqiff-quit): Autoraise minibuffer.
12134         * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Make it a defun.
12136         * emulation/viper*.el: Comment out declare-function -- not defined
12137         in XEmacs.
12139         * emulation/viper-ex.el (viper-info-on-file):
12140         Take care of indirect buffers.
12142         * emulation/viper.el (viper-set-hooks, set-cursor-color):
12143         Set viper-vi-state-cursor-color.
12145 2008-01-09  Tom Tromey  <tromey@redhat.com>
12147         * vc.el (vc-status-headers): Rename from vc-status-insert-headers.
12148         Just return header.
12149         (vc-status-move-to-goal-column): New function.
12150         (vc-status-mode-map): Define more keys.
12151         (vc-status-mode): Use vc-status-refresh.  Now 'special.
12152         (vc-status-refresh): New function.
12153         (vc-status-next-line): Likewise.
12154         (vc-status-previous-line): Likewise.
12155         (vc-status-mark-file): Use vc-status-next-line.
12156         (vc-status-unmark-file): Use vc-status-previous-line.
12157         (vc-status-unmark-file-up): New function.
12158         (vc-status-register): Likewise.
12159         (vc-status-find-file): Likewise.
12160         (vc-status-find-file-other-window): Likewise.
12161         (vc-status-current-file): Likewise.
12162         (vc-ensure-vc-buffer): Understand vc-status mode.
12164         * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
12166 2008-01-09  Glenn Morris  <rgm@gnu.org>
12168         * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file
12169         entry, for Windows.
12171 2008-01-09  Tom Tromey  <tromey@redhat.com>
12173         * play/blackbox.el (blackbox-mode-map): Add `q' and [return] bindings.
12175 2008-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12177         * ffap.el (ffap-read-file-or-url): Don't use let-binding to temporarily
12178         add a file-name handler.
12180 2008-01-08  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
12182         * textmodes/bibtex.el (bibtex-initialize): New autoloaded command.
12183         Rename from function bibtex-files-expand.  New optional arg select.
12184         (bibtex-flash-head): Allow blink-matching-delay being zero.
12185         (bibtex-clean-entry): Use atomic-change-group.
12186         (bibtex-format-entry): Check presence of required fields only
12187         after formatting of fields.  Use member-ignore-case.  Do not use
12188         bibtex-parse-entry.  Do not use booktitle field to set a missing title.
12189         (bibtex-autofill-entry): Do not call undo-boundary.
12190         (bibtex-lessp): Handle crossref keys that point to another bibtex file.
12191         (bibtex-sort-buffer, bibtex-prepare-new-entry, bibtex-validate):
12192         Parse keys if necessary.
12194 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12196         * progmodes/gdb-ui.el (gdb-var-list-children-1): Put varnum in
12197         quotes in case of spaces, e.g. STL containers (not pretty).
12199 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12201         * progmodes/gdb-ui.el (gud-gdb-command-name):
12202         Explain "--annotate=3" option is necessary for the Graphical Interface.
12204 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12206         * progmodes/hideif.el (hide-ifdef-mode-menu): Put hide-ifdef commands
12207         on menu bar.
12209 2008-01-08  Michael Albinus  <michael.albinus@gmx.de>
12211         * ffap.el (ffap-read-file-or-url): Let-bind
12212         `file-name-handler-alist' due to `rfn-eshadow-update-overlay'.
12214 2008-01-08  Sven Joachim  <svenjoac@gmx.de>
12216         * vc-bzr.el: Fix typo in header.
12218 2008-01-08  Eli Zaretskii  <eliz@gnu.org>
12220         * Makefile.in (custom-deps, finder-data): Depend on autoloads
12221         instead of loaddefs.el.
12223 2008-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12225         * vc-cvs.el (vc-cvs-annotate-time): Don't move backward when text
12226         gets inserted out-of-order.
12228 2008-01-08  Riccardo Murri  <riccardo.murri@gmail.com>
12230         * vc-bzr.el: Copyright and version headers update.
12231         Remove some outdated comments through the whole file.
12232         (vc-bzr-program-args): Remove because unused.
12233         (vc-bzr-log-switches): New customization option.
12234         (vc-bzr-command): Use LC_MESSAGES=C instead of LC_ALL=C.  No longer
12235         use `vc-bzr-program-args'.
12236         (vc-bzr-register): Fix for working with both 22.1 and CVS version of
12237         `vc-find-root' (patch by Andreas Hoenen).
12238         (vc-bzr-status): Update regex to match latest Bzr output.
12239         Remove redundant test.
12240         (vc-bzr-init-version): New function.
12241         (vc-bzr-unregister): Must not delete file.
12242         (vc-bzr-find-version): New function.
12243         (vc-bzr-checkout): Argument `rev' is explicit revision only if it's
12244         a non-empty string, otherwise take head revision.
12245         (vc-bzr-print-log): Pass `vc-bzr-log-switches' to "bzr log".
12246         (vc-bzr-diff): Simpler build of the revision spec string.
12247         (vc-annotate-convert-time, vc-bzr-annotate-difference):
12248         Remove: compatibility hacks for Emacs21, not needed in Emacs 22.
12249         (vc-bzr-dir-state): Add code comments.  Removed redundant statement.
12250         (vc-bzr-dired-state-info): Only provide custom strings for
12251         overloaded VC state 'edited; otherwise fallback to
12252         `vc-default-dired-state-info'.
12254 2008-01-08  Richard Stallman  <rms@gnu.org>
12256         * delsel.el (delete-selection-mode): Doc fix.
12258 2008-01-08  Nick Roberts  <nickrob@snap.net.nz>
12260         * progmodes/gud.el (gud-def): Do nothing if gud-running is t.
12261         (gud-speedbar-menu-items): Add item for gdb-var-set-format below.
12263         * progmodes/gdb-ui.el (gdb-var-set-format): Set the output format
12264         of watch expressions (only works fully with GDB 6.7 or later).
12266 2008-01-08  Dan Nicolaescu  <dann@ics.uci.edu>
12268         * time-stamp.el (time-stamp-time-zone):
12269         * whitespace.el (whitespace-check-buffer-leading)
12270         (whitespace-check-buffer-trailing, whitespace-check-buffer-indent)
12271         (whitespace-check-buffer-spacetab, whitespace-check-buffer-ateol):
12272         * progmodes/sh-script.el (sh-indentation):
12273         * textmodes/ispell.el (ispell-local-pdict):
12274         Add safe-local-variable properties.
12276 2008-01-08  Michael Albinus  <michael.albinus@gmx.de>
12278         * vc-git.el (vc-git--call): Apply `process-file' instead of
12279         `call-process'.
12281         * net/tramp.el (tramp-remote-process-environment): Add "LC_CTYPE=C".
12282         Reported by Pete Forman <pete.forman@westerngeco.com>.
12283         (tramp-perl-encode, tramp-perl-decode): Update copyrights.
12284         (tramp-handle-process-file): Handle the case where DESTINATION is
12285         a consp with t as car.
12286         (tramp-wait-for-output): We shall remove exactly what has been
12287         find by the search.
12289 2008-01-08  Kevin Ryde  <user42@zip.com.au>
12291         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12292         For perl, allow "during global destruction" at end.  Add entry for
12293         two-arg form of the Test module ok() func.
12295 2008-01-08  Glenn Morris  <rgm@gnu.org>
12297         * diff-mode.el (diff-end-of-hunk): Don't match empty lines in
12298         unified format.
12300         * mouse.el (mouse-major-mode-menu): Suppress duplicate menus.
12302 2008-01-08  Ralf Angeli  <angeli@caeruleus.net>
12304         * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
12305         Simplify selection of frame focusing function.
12307 2008-01-08  Michael Olson  <mwolson@gnu.org>
12309         * textmodes/remember.el (remember-region): Fix typo in docstring.
12311 2008-01-08  Lennart Borgman  <lennart.borgman.073@student.lu.se>
12313         * textmodes/remember.el (remember): If there is a visible region
12314         [that is, the mark is active and transient mark mode is enabled]
12315         then use this region for the initial contents of the *Remember*
12316         buffer.  Use `region-beginning' and `region-end' instead of
12317         `point' and `mark'.
12319 2008-01-07  Dan Nicolaescu  <dann@ics.uci.edu>
12321         * vc-hg.el (vc-hg-dir-state, vc-hg-dir-status): Pass the dir
12322         argument to vc-hg-command.
12323         (vc-hg-log-view-mode): Handle the user field better.
12325 2008-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12327         * vc.el (vc-ensure-vc-buffer): Check liveness of vc-parent-buffer.
12329 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
12331         * vc.el (vc-status-fileinfo): New defstruct.
12332         (vc-status): New defvar.
12333         (vc-status-insert-headers, vc-status-printer, vc-status)
12334         (vc-status-mode-map, vc-status-mode, vc-status-mark-file)
12335         (vc-status-unmark-file, vc-status-marked-files): New functions.
12337         * vc-hg.el (vc-hg-dir-status): New function.
12339 2008-01-06  Martin Rudalics  <rudalics@gmx.at>
12341         * cus-edit.el (custom-tool-bar-map): Move initialization of this
12342         keymap from here ...
12343         (custom-mode): ... to here.  Reported by Reiner Steib.
12345 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
12347         * obsolete/x-apollo.el: Remove file for unsupported system.
12349         * term/x-win.el (vendor-specific-keysyms): Remove reference to
12350         Apollo.
12352         * progmodes/gud.el (gud-dgux-p): Remove.
12353         (dbx): Remove reference to dgux.
12355         * progmodes/ps-mode.el (ps-mode-print-function):
12356         * ps-print.el (ps-lp-system):
12357         * paths.el (rmail-spool-directory):
12358         * ls-lisp.el (ls-lisp-emulation):
12359         * lpr.el (lpr-lp-system):
12360         * dired.el (dired-chown-program): Remove references to dgux.
12362 2008-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12364         * vc.el (vc-process-sentinel): Fix apparent typo.
12365         (vc-do-command): Forcefully kill any left over process.
12366         Use start-file-process.
12367         (vc-annotate-get-time-set-line-props): Check we don't move backward.
12369 2008-01-04  Michael Albinus  <michael.albinus@gmx.de>
12371         * net/dbus.el (dbus-list-hash-table)
12372         (dbus-name-owner-changed-handler): Replace "signal" by "member".
12373         (dbus-check-event): Add serial number to event.
12374         (dbus-handle-event): Apply return message if needed.
12375         (dbus-event-serial-number): New defun.
12376         (dbus-event-service-name, dbus-event-path-name)
12377         (dbus-event-interface-name, dbus-event-member-name):
12378         Adapt implementation to serial number.
12380 2008-01-04  Juanma Barranquero  <lekktu@gmail.com>
12382         * bs.el (bs--get-mode-name): Fix typo in previous change.
12384 2008-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
12386         * mouse.el (mouse-popup-menubar): Fix typo.
12388         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Move one more
12389         form inside with-current-buffer.
12391         * progmodes/antlr-mode.el (provide): Move to the end of file.
12392         (require): Don't require font-lock and compile.
12393         (outline-level, imenu-use-markers, imenu-create-index-function):
12394         Move declarations to top level.
12395         (cond-emacs-xemacs-macfn): Declare for compiler.
12397         * vc-bzr.el (vc-bzr-root):
12398         * vc-arch.el (vc-arch-root): Only set a property if the file is
12399         managed by this backend.
12401         * vc-hg.el (vc-hg-state): Support the new status code for up-to-date.
12403 2008-01-04  Tassilo Horn  <tassilo@member.fsf.org>
12405         * doc-view.el (doc-view-scroll-up-or-next-page)
12406         (doc-view-scroll-down-or-previous-page): Don't scroll to the
12407         top/bottom again when on the first/last page.
12409         * doc-view.el (doc-view-scroll-up-or-next-page)
12410         (doc-view-scroll-down-or-previous-page): Use image-scroll-up and
12411         image-scroll-down instead of the non-image equivalents.
12412         Don't rely on a signalled condition but switch pages when scrolling
12413         doesn't change the vertical position anymore.
12414         (doc-view-mode-map): Remap scroll-{up,down} to
12415         image-scroll-{up,down}.
12417 2008-01-04  Rob Riepel  <riepel@networking.Stanford.EDU>
12419         * emulation/tpu-edt.el (tpu-load-xkeys): Recommend to run the
12420         tpu-mapper command rather than load the tpu-mapper package.
12422         * emulation/tpu-mapper.el (tpu-mapper): New command.
12423         Contains all the code previously at top-level.
12425 2008-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12427         * bs.el (bs--sort-by-mode, bs--get-mode-name):
12428         * imenu.el (imenu-add-to-menubar):
12429         * makesum.el (make-command-summary):
12430         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar)
12431         (mouse-buffer-menu):
12432         * msb.el (msb--mode-menu-cond):
12433         * calc/calc-embed.el (calc-do-embedded):
12434         * emacs-lisp/helper.el (Helper-describe-mode):
12435         * mail/emacsbug.el (report-emacs-bug):
12436         * progmodes/hideshow.el (hs-grok-mode-type):
12437         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
12438         * textmodes/table.el (*table--cell-describe-mode):
12439         Pass mode-name through format-mode-line.
12441 2008-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12443         * progmodes/ada-xref.el (ada-prj-find-prj-file):
12444         * progmodes/ada-mode.el (comment-region):
12445         * calendar/todo-mode.el (todo-insert-item):
12446         * bookmark.el (bookmark-buffer-name):
12447         Test major-mode rather than mode-name.
12449 2008-01-04  Richard Stallman  <rms@gnu.org>
12451         * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
12452         Call byte-compile-warn-about-unresolved-functions outside
12453         the with-current-buffer.
12454         (byte-compile-insert-header): Use with-current-buffer.
12456 2008-01-04  Glenn Morris  <rgm@gnu.org>
12458         * startup.el (fancy-about-screen): Remove reference to deleted
12459         `fancy-splash-help-echo' variable.
12461         * version.el (emacs-copyright): Update to 2008.
12463         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Use mapc
12464         rather than mapcar.
12466         * progmodes/cc-vars.el (defcustom-c-stylevar): Revert previous
12467         change (merge mistake).
12469         * doc-view.el (doc-view-search-internal): Don't use `incf'.
12471         * doc-view.el (bookmark-make-cell-function, bookmark-get-filename)
12472         (bookmark-get-bookmark-record):
12473         * image-mode.el (bookmark-make-cell-function)
12474         (bookmark-get-filename, bookmark-get-bookmark-record)
12475         (bookmark-get-position):
12476         * log-view.el (vc-modify-change-comment):
12477         * progmodes/grep.el (find-name-arg): Declare for compiler.
12479 2008-01-04  Juanma Barranquero  <lekktu@gmail.com>
12481         * savehist.el (savehist-coding-system): Default to a variant coding
12482         system with explicit unix end-of-line conversion, which is safer.
12484 2008-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12486         * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp):
12487         * ibuffer.el (mode column): Use format-mode-line.
12489         * server.el (server-create-window-system-frame): Remove workaround for
12490         a bug that has been fixed.
12492 2008-01-03  Magnus Henoch  <magnus@zemdatav>
12494         * net/dbus.el (dbus-name-owner-changed-handler):
12495         Use dbus-unregister-object instead of dbus-unregister-signal.
12497 2008-01-03  Drew Adams  <drew.adams@oracle.com>
12499         * frame.el (frame-geom-value-cons, frame-geom-spec-cons): New fns.
12501 2008-01-03  Richard Stallman  <rms@gnu.org>
12503         * replace.el (occur-context-lines): New subroutine,
12504         broken out of occur-engine.
12505         (occur-engine): Call it.
12507 2008-01-03  Alexandre Julliard  <julliard@winehq.org>
12509         * vc-git.el (vc-git--ls-files-state): New function.
12510         (vc-git-dir-state): Use it instead of processing the status
12511         results here.
12513 2008-01-02  Eric S. Raymond  <esr@snark.thyrsus.com>
12515         * progmodes/grep.el (grep-find-ignored-directories):
12516         Initialize from the value of vc-directory-exclusion-list.
12518         * vc-hooks.el (vc-directory-exclusion-list): Include "_darcs",
12519         even though we don't have a back end for darcs yet.
12521 2008-01-02  Karl Fogel  <kfogel@red-bean.com>
12523         Change a return type, for greater extensibility.
12524         See http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01077.html
12525         and its thread for discussion leading to this change.
12527         * bookmark.el (bookmark-jump-noselect):
12528         Return an alist instead of a dotted pair.
12529         (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
12530         (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
12531         (bookmark-bmenu-switch-other-window): Adjust accordingly.
12532         (bookmark-make-cell-function): Adjust documentation accordingly.
12534         * image-mode.el (image-bookmark-jump):
12535         Adjust return type accordingly; document.
12537         * doc-view.el (doc-view-bookmark-jump):
12538         Adjust return type accordingly; document.
12540 2008-01-02  Miles Bader  <miles@gnu.org>
12542         * net/rcirc.el (rcirc-log-filename-function): New variable.
12543         (rcirc-log): Use `rcirc-log-filename-function' to generate the
12544         log-file name.  Don't log anything if it returns nil.
12545         (rcirc-log-write): Use `expand-file-name' when merging the
12546         log-file name from the alist with rcirc-log-directory; this does
12547         the right thing if the name in the alist already an absolute
12548         filename.  Make the log-file directory if necessary.
12550 2007-12-29  Richard Stallman  <rms@gnu.org>
12552         * font-lock.el (font-lock-prepend-text-property)
12553         (font-lock-append-text-property): Canonicalize the face and
12554         font-lock-face properties.
12556         * faces.el (facep): Doc fix.
12558         * startup.el (fancy-startup-tail, fancy-about-text)
12559         (fancy-startup-text): Regularize format of face property.
12561         * facemenu.el (list-colors-print): Use :background and :foreground
12562         instead of background-color and foreground-color.
12564 2007-12-29  Drew Adams  <drew.adams@oracle.com>
12566         * cus-edit.el (custom-add-parent-links):
12567         Fill the "Parent documentation" text.
12569 2007-12-29  Eli Zaretskii  <eliz@gnu.org>
12571         * textmodes/ispell.el (ispell-grep-command): Use "grep" on
12572         MS-Windows and MS-DOS.
12573         (ispell-grep-options): Use "-Ei" on MS-Windows and MS-DOS.
12575 2008-01-02  Eric S. Raymond  <esr@snark.thyrsus.com>
12577         * vc-svn.el (vc-svn-modify-change comment): New function.
12579 2008-01-01  Dan Nicolaescu  <dann@ics.uci.edu>
12581         * vc-git.el (vc-git-dir-state): Set the vc-backend property.
12582         Do not disable undo, with-temp-buffer does it by default.
12584 2008-01-01  Eric S. Raymond  <esr@snark.thyrsus.com>
12586         * vc-svn.el (vc-svn-parse-status): Set the `unregisted' property
12587         correctly.
12589         * vc.el (vc-dired-hook): Speed tuning.  Replace a vc-backend call
12590         with vc-state.
12591         (vc-next-action): Fix vc-transfer-file call.
12593 2007-12-31  Tom Tromey  <tromey@redhat.com>
12595         * emacs-lisp/elp.el (elp-results): Use header-line-format for header.
12596         Move point to the start of the buffer.
12598 2007-12-31  Dan Nicolaescu  <dann@ics.uci.edu>
12600         * vc-cvs.el (vc-cvs-parse-entry): Set the vc-backend property.
12602         * vc.el: State that dir-state is required to set the vc-state and
12603         vc-backend properties.
12605 2007-12-31  Martin Rudalics  <rudalics@gmx.at>
12607         * man.el (Man-default-man-entry): Make this a defun.
12608         Improve guessing mechanism and handling of section numbers.
12610 2007-12-31  Richard Stallman  <rms@gnu.org>
12612         * faces.el (face-all-attributes): If FRAME is nil, return defaults.
12614 2007-12-31  Jay Belanger  <jay.p.belanger@gmail.com>
12616         * calc/calc-units.el (calc-convert-temperature): Ensure that units
12617         are on the result even when the result is zero.
12619 2007-12-30  Michael Albinus  <michael.albinus@gmx.de>
12621         * net/dbus.el (dbus-name-owner-changed-handler): Make the function
12622         resistent towards wrong parameters.
12623         (dbus-handle-event): Propagate D-Bus errors only in the debug case.
12625 2007-12-30  Richard Stallman  <rms@gnu.org>
12627         * faces.el (face-all-attributes): New function.
12629         * faces.el (face-differs-from-default-p): Compute list of attr names
12630         from face-attribute-name-alist.
12632         * cus-edit.el (custom-face-set): Call `face-spec-set' with FOR-DEFFACE.
12633         (custom-face-save): Likewise.
12634         (custom-face-reset-saved, custom-face-reset-standard): Likewise.
12636         * cus-face.el (custom-declare-face): Per frame, use `face-spec-set-2'.
12637         (custom-theme-set-faces): Clear `face-override-spec' property.
12638         Call `face-spec-set' with FOR-DEFFACE.
12640         * custom.el (custom-theme-recalc-face): Simply call `face-spec-recalc'.
12642         * faces.el (face-spec-set): Third arg is now FOR-DEFFACE.
12643         Use of frame as third arg is deprecated.
12644         Handle `face-override-spec' property.
12645         (face-spec-recalc): New function.
12646         (face-spec-set-2): New function.
12647         (frame-set-background-mode): Handle `face-override-spec' property.
12648         Use `face-spec-recalc'.
12649         (face-set-after-frame-default): Use `face-spec-recalc'.
12651 2007-12-29  Nick Roberts  <nickrob@snap.net.nz>
12653         * thumbs.el (thumbs-conversion-program): Add comment for Windows XP.
12655 2007-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
12657         * vc-hg.el (vc-hg-dir-state): Set the vc-backend property.
12659 2007-12-29  Eric S. Raymond  <esr@snark.thyrsus.com>
12661         * vc-svn.el (vc-svn-parse-status): Recognize 'unregistered,
12662         'added, 'removed.
12664         * vc.el (header coment): Better description of dir-state.
12665         (vc-compatible-state): New function.  Checks whether two states
12666         can be in the same changeset; used with 'edited it can test whether
12667         the next action for a state should be commit.
12668         (vc-default-dired-state-info): Display 'removed state.
12669         (vc-dired-hook): Turn off undo, this is a speed tweak.
12671         * vc-bzr.el (vc-bzr-dir-state): Recognize 'added.
12673         * vc-hg.el (vc-bzr-hg-state): Recognize 'added and 'removed.
12674         Cope with the possibility that the 'C' status flag might change
12675         in 0.9,6.
12677         * vc-git.el (vc-bzr-dir-state): Recognize 'removed.
12679 2007-12-29  Thien-Thi Nguyen  <ttn@gnuvola.org>
12681         * files.el (cd-absolute): Fix omission bug:
12682         Make `list-buffers-directory' buffer-local.
12684 2007-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
12686         * vc-hg.el (vc-hg-dir-state): Deal with the up-to-date state.
12688 2007-12-29  Jay Belanger  <jay.p.belanger@gmail.com>
12690         * calc/calc-aent.el (math-read-token): Fix misplaced parentheses.
12692         * calc/calc-lang.el (calc-yacas-language, calc-maxima-language)
12693         (calc-giac-language, math-yacas-parse-Sum, math-yacas-compose-sum)
12694         (math-yacas-compose-deriv, math-yacas-compose-taylor)
12695         (math-maxima-parse-subst, math-maxima-parse-taylor)
12696         (math-maxima-compose-taylor, math-maxima-compose-subst)
12697         (math-maxima-compose-if, math-lang-switch-args)
12698         (math-lang-compose-switch-args, math-read-giac-subscr):
12699         New functions.
12700         (calc-lang-allow-underscores, calc-lang-allow-percentsigns)
12701         (calc-lang-brackets-are-subscripts, calc-lang-c-type-hex):
12702         Add languages.
12703         (math-vector-brackets, math-complex-format, math-variable-table)
12704         (math-parse-table, math-oper-table, math-function-table)
12705         (math-special-function-table, math-compose-subscr):
12706         Add values for new languages.
12708         * calc/calccomp.el (math-compose-expr): Add new languages.
12710         * calc/calc.el (calc-language): Add languages to docstring.
12712         * calc/calc-ext.el (calc-init-extensions): Add keybindings
12713         for new languages.  Autoload commands to change languages.
12715         * calc/calc-help.el (calc-d-prefix-help): Add new languages.
12717         * calc/calc-menu.el (calc-modes-menu): Add new languages.
12718         (calc-arithmetic-menu, calc-scientific-function-menu)
12719         (calc-algebra-menu, calc-graphics-menu, calc-vectors-menu)
12720         (calc-units-menu, calc-variables-menu, calc-stack-menu):
12721         Add :active keywords.
12723 2007-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
12725         * vc-hg.el (vc-hg-registered): Return the false when vc-hg-state
12726         returns 'ignored or 'unregistered.
12727         (vc-hg-state): Pass "-A" to the status command and deal with the
12728         output.
12729         (vc-hg-dir-state): Pass "-A" to the status command.
12731 2007-12-29  Richard Stallman  <rms@gnu.org>
12733         * progmodes/compile.el (compilation-start): Set initial visible
12734         point properly even when compilation buffer already current.
12736 2007-12-29  Richard Stallman  <rms@gnu.org>
12738         * files.el (conf-mode-maybe): New function.
12739         (auto-mode-alist): Use conf-mode-maybe for .conf etc.
12741 2007-12-29  Martin Rudalics  <rudalics@gmx.at>
12743         * textmodes/fill.el (fill-find-break-point): Fix doc-string typo.
12745 2007-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
12747         * progmodes/asm-mode.el (asm-mode-map): Add a major mode menu.
12749 2007-12-29  Richard Stallman  <rms@gnu.org>
12751         * comint.el (comint-mode-map): Explicitly bind `delete' and `kp-delete'
12752         so they never do EOF.
12754 2007-12-29  Richard Stallman  <rms@gnu.org>
12756         * faces.el (copy-face): Create the new face explicitly if it
12757         does not exist already.
12759 2007-12-29  Eli Zaretskii  <eliz@gnu.org>
12761         * simple.el (minibuffer-history, shell-command-history)
12762         (set-variable-value-history):
12763         * replace.el (regexp-history):
12764         * international/mule-cmds.el (input-method-history):
12765         * files.el (file-name-history): Add reference to history-length in
12766         the doc string.
12768 2007-12-29  Richard Stallman  <rms@gnu.org>
12770         * comint.el (comint-password-prompt-regexp): Match `Enter Password'.
12772 2007-12-29  Jason Rumney  <jasonr@gnu.org>
12774         * find-dired.el (find-name-arg): New custom variable.
12775         (find-name-dired): Use it.
12776         (find-dired-find-program): Remove.
12777         (find-dired): Use find-program.
12778         (find-grep-dired): Use grep-program.
12780         * progmodes/grep.el (rgrep): Use find-name-arg.
12782 2007-12-29  Thien-Thi Nguyen  <ttn@gnuvola.org>
12784         * progmodes/cc-vars.el (defcustom-c-stylevar):
12785         Revert to pre-2007-12-12 version.
12787 2007-12-29  Richard Stallman  <rms@gnu.org>
12789         * emacs-lisp/find-func.el (find-function-after-hook): Add :type.
12791         * info.el (Info-clone-buffer): Rename from Info-clone-buffer-hook.
12792         Use changed.
12794         * startup.el (fancy-splash-help-echo): Var deleted.
12795         (fancy-splash-insert): Get help-echo from (startup-echo-area-message).
12796         (fancy-about-screen): Don't display fancy-splash-help-echo.
12798         * menu-bar.el (menu-bar-describe-menu): Remove dots from menu text.
12800 2007-12-28  Eric S. Raymond  <esr@snark.thyrsus.com>
12802         * vc-hooks.el, vc.el: Move vc-directory-exclusion-list from vc.el
12803         to vc-hooks.el so it will be available to other modes, such as
12804         speedbar.el.  Also, teach it to recognize monotone state directories.
12806         * speedbar.el: Remove this mode's fragile assumptions about
12807         version-control systems.  Instead, make it use logic from
12808         vc-hooks.el so it will become smarter whenever VC mode does.
12810         * vc-hooks.el: 'added is a real state, not a future hypothetical one.
12811         Fix the documentation.
12813         * vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el, vc-mcvs.el, vc-svn.el:
12814         Modify all instances of the dir-state back-end method to suppress
12815         keeping undo lists on the buffers holding status output, which
12816         can get extremely large.
12818         * vc-cvs.el, vc-svn.el: Simplify backend dired-state-info functions
12819         so they don't do work that the default one can do instead.
12821         * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
12822         states, and the new return-value convention.  These are not
12823         actually used yet, just set.
12825         * vc-svn.el (vc-svn-parse-status): Set 'ignored and 'unregistered
12826         states when appropriate.
12828         * vc-hg.el (vc-hg-state, vc-hg-dir-state): Set 'ignored and
12829         'unregistered when appropriate.
12831         * vc-git.el: Document that we don't set the new states yet.
12833         * vc.el (vc-dired-state-info): Display 'added, 'unregistered and
12834         'ignored states.
12836         * vc-cvs.el (vc-cvs-parse-status): Set the 'ignored state when
12837         appropriate.
12839         * vc-bzr.el (vc-bzr-dir-state): Set 'ignored and 'unregistered
12840         when appropriate.
12842 2007-12-28  Nick Roberts  <nickrob@snap.net.nz>
12844         * thumbs.el (thumbs-call-convert): Use call-process directly
12845         with thumbs-conversion-program instead of through shell-file-name
12846         for better error reporting.
12848 2007-12-27  Jay Belanger  <jay.p.belanger@gmail.com>
12850         * calc/calc-aent.el (math-remove-percentsigns):
12851         * calc/calccomp.el (math-to-percentsigns): Change placeholder
12852         for percent signs.
12854 2007-12-27  Eric S. Raymond  <esr@snark.thyrsus.com>
12856         * vc.el (vc-dired-ignorable-p, vc-dired-hook): Speed optimization;
12857         use completion-ignored-extensions to detect files that should be
12858         ignorted in VC-Dired listings, heading off lots of expensive calls
12859         to (vc-state).
12861         * vc.el (vc-dired-hook): Show unregistered file status as "?" in
12862         non-terse mode.
12863         (vc-dired-ignorable-p): Ignore Makefile when it has a peer named
12864         Makefile.in or Makefile.am.
12866 2007-12-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12868         * ps-print.el (ps-mark-active-p): Fun returned back.
12869         (ps-print-preprint-region): Use `ps-mark-active-p' instead of
12870         `region-active-p' for error checking.
12872 2007-12-27  Eric S. Raymond  <esr@snark.thyrsus.com>
12874         * vc.el, vc-sccs.el, vc-rcs.el, vc-cvs.el, vc-mcvs.el:
12875         Put new machinery in place to support editing of change comments
12876         with 'e' in a log-view buffer.  Not documented yet as this
12877         only works for SCCS, RCS, and maybe CVS if you have admin
12878         privileges.  When we have backend support for Subversion and
12879         more modern systems it will be time to write this up.
12881 2007-12-27  Kenichi Handa  <handa@ni.aist.go.jp>
12883         * international/mule-cmds.el (select-safe-coding-system):
12884         When a buffer is modified, cancel the writing.
12886 2007-12-26  Eric S. Raymond  <esr@snark.thyrsus.com>
12888         * log-view.el: Add Subversion and Mercurial log format samples.
12890         * vc.el (vc-dired-hook): Significantly speed up by arranging for
12891         it to call the backend dir-state hook (if it exists)
12892         exactly *once*, rather than once per each subdirectory (with
12893         dired-state-info calls on all toplevel files slowing it down even
12894         further).  For this to work, backend dir-state methods have to
12895         recurse to subdirectories.  Most of them already did anyway; a few
12896         needed *non*-recursion switches removed.  This change mostly
12897         removed code that was perversely bad and should have been shot
12898         through the head years ago.
12900         * vc-bzr.el (vc-bzr-dir-state):
12901         * vc-cvs.el (vc-cvs-dir-state):
12902         * vc-mcvs.el (vc-mcvs-dir-state):
12903         * vc-svn.el (vc-svn-dir-state): Recurse in subdirectories.
12905         * vc-svn.el (vc-svn-print-log): svn log doesn't actually accept
12906         multiple arguments, so generate logs sequentially when we get them.
12907         * vc-hg.el (vc-hg-print-log): Gives this CVS-like "Working file:"
12908         headers so the various log bindings can do the right thing.
12909         * vc-cvs.el (vc-cvs-print-log): Fix a misleading comment.
12911 2007-12-26  Andreas Schwab  <schwab@suse.de>
12913         * font-lock.el (save-buffer-state): Make sure the state of the
12914         buffer is always restored.
12916 2007-12-26  Jay Belanger  <jay.p.belanger@gmail.com>
12918         * calc/calc.el (calc-lang-allow-percentsigns): New variable.
12920         * calc/calc-lang.el (calc-lang-allow-percentsigns): Declare as
12921         a variable.
12923         * calc/calccomp.el (math-to-percentsigns): New function.
12924         (math-compose-var): Handle variables with percent signs.
12925         (math-compose-expr): Handle function names with percent signs.
12927         * calc/calc-aent.el (math-to-percentsigns): Declare as function.
12928         (math-read-exprs): Handle percent signs in languages that
12929         allow them.
12930         (math-restore-underscores): Remove function.
12931         (math-remove-percentsigns, math-restore-placeholders):
12932         New functions.
12934 2007-12-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12936         * ps-print.el (ps-print-preprint-region): Use `region-active-p' instead
12937         of `mark' for error checking.
12939 2007-12-26  Tassilo Horn  <tassilo@member.fsf.org>
12941         * image-mode.el (image-bookmark-make-cell, image-bookmark-jump):
12942         New functions.
12943         (image-mode): Set bookmark-make-cell-function appropriately.
12945         * doc-view.el (doc-view-bookmark-jump): Correct misspelled arg name.
12947         * bookmark.el (bookmark-make-cell-function): New variable.
12948         (bookmark-make): Call bookmark-make-cell-function's function
12949         instead of bookmark-make-cell.
12950         (bookmark-get-handler, bookmark-jump-internal): New functions.
12951         (bookmark-jump, bookmark-jump-other-window, bookmark-insert)
12952         (bookmark-bmenu-2-window, bookmark-bmenu-other-window):
12953         Use bookmark-jump-internal.
12954         (bookmark-make-cell-for-text-file): Rename from bookmark-make-cell.
12956         * doc-view.el (doc-view-bookmark-make-cell)
12957         (doc-view-bookmark-jump): New functions.
12958         (doc-view-mode): Set bookmark-make-cell-function buffer-locally.
12960 2007-12-25  Miles Bader  <miles@gnu.org>
12962         * indent.el (indent-for-tab-command): Rigidly indent the following
12963         sexp along with the current line when a prefix arg is given in the
12964         non-active-region case.  Specify raw prefix in interactive spec.
12965         Simplify main indentation logic to get rid of the conditional call
12966         to `indent-according-to-mode' (it just ended up calling
12967         `indent-line-function' in all cases anyway, which can be done more
12968         simply here).  Remove unnecessary test of ARG in active region case.
12970 2007-12-25  Richard Stallman  <rms@gnu.org>
12972         * allout.el (allout-region-active-p): Rename from my-region-active-p.
12973         Use `use-region-p'.
12974         (allout-write-file-hook-handler): Simplify code.
12976         * ps-print.el (ps-mark-active-p): Function deleted.
12977         (ps-print-preprint-region): Use (mark) for the error check.
12979         * tooltip.el (tooltip-region-active-p): Use `use-region-p'.
12981         * winner.el (winner-active-region): Use `mark-active' if it's defined.
12983         * progmodes/ada-mode.el (ada-region-selected): Use `use-region-p'.
12985         * textmodes/org.el (org-region-active-p): Use `use-region-p'.
12987         * progmodes/idlwave.el (idlwave-region-active-p): Use `use-region-p'.
12989         * textmodes/reftex.el (reftex-region-active-p): Use `use-region-p'.
12991         * progmodes/cc-defs.el (c-region-is-active-p):
12992         Use `mark-active' if it's defined.
12994         * progmodes/cc-cmds.el (c-indent-line-or-region):
12995         Pass prefix arg to `c-indent-command'.  Use `use-region-p'.
12997         * simple.el (select-active-regions): New option.
12998         (set-mark): Obey it.
12999         (yank-pop-change-selection): New option.
13000         (current-kill): Obey it.
13002         * simple.el (use-region-p): Rename from `region-active-p'.
13003         (region-active-p): New function.
13005 2007-12-25  David Golden  <david.delaharpe.golden@gmail.com>  (tiny change)
13007         * term/x-win.el (x-select-enable-primary): New option.
13008         (x-select-text, x-cut-buffer-or-selection-value): Obey it.
13010         * mouse.el (mouse-yank-primary): New function (almost same
13011         as mouse-yank-secondary).
13013 2007-12-25  Dan Nicolaescu  <dann@ics.uci.edu>
13015         * calculator.el:
13016         * dframe.el:
13017         * iswitchb.el:
13018         * whitespace.el:
13019         * winner.el:
13020         * emacs-lisp/checkdoc.el:
13021         * mail/feedmail.el:
13022         * net/quickurl.el:
13023         * obsolete/fast-lock.el:
13024         * play/5x5.el:
13025         * progmodes/delphi.el:
13026         * progmodes/idlw-shell.el:
13027         * progmodes/idlwave.el:
13028         * textmodes/artist.el:
13029         * textmodes/ispell.el:
13030         * textmodes/texinfmt.el:
13031         * textmodes/texinfo.el: Remove obsolete definitions of backward
13032         compatibility macros for defcustom, defgroup, defface, when,
13033         unless, with-current-buffer and with-temp-message.
13035 2007-12-24  Nick Roberts  <nickrob@snap.net.nz>
13037         * progmodes/verilog-mode.el: Reformat parts to 80 columns.
13039 2007-12-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13041         * server.el (server-save-buffers-kill-terminal): Check the `proc' is
13042         indeed a process.
13044 2007-12-23  Richard Stallman  <rms@gnu.org>
13046         * simple.el (region-active-p): New function.
13047         (use-empty-active-region): New variable.
13049         * dired-aux.el (dired): Load dired.el at run time too.
13051 2007-12-23  Juri Linkov  <juri@jurta.org>
13053         * man.el (Man-follow-manual-reference): Fill the minibuffer's
13054         default list with a full list of references.
13056         * files.el (auto-mode-alist): Add \\' to doc-view files regexp.
13058 2007-12-23  Andreas Schwab  <schwab@suse.de>
13060         * files.el (switch-to-buffer-other-frame): Return the buffer
13061         switched to.
13063 2007-12-23  Michael Albinus  <michael.albinus@gmx.de>
13065         Sync with Tramp 2.1.12.
13067         * net/tramp.el: New todo item.
13069         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Handle "-F"
13070         switch.  Reported by Mark T. Kennedy <mkennedy@diamondbackcap.com>.
13072         * net/trampver.el: Update release number.
13074 2007-12-22  Richard Stallman  <rms@gnu.org>
13076         * newcomment.el (comment-region-default): Don't triple the
13077         comment starter if the first region line isn't indented enough.
13079 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
13081         * net/imap.el (imap-authenticate): Use current-buffer instead of
13082         buffer, for the cases where imap-authenticate is called with a nil
13083         buffer parameter.
13085 2007-12-21  Martin Rudalics  <rudalics@gmx.at>
13087         * autoinsert.el (auto-insert-alist): Remove nonsensical precision
13088         specifier from format-string.  Reported by Ye Wenbin.
13090 2007-12-20  Jason Rumney  <jasonr@gnu.org>
13092         * nxml/nxml-mode.el (nxml-faces): Rename from nxml-highlighting-faces.
13093         Parent group is font-lock-faces.
13094         (nxml-light-blue-color, nxml-dark-blue-color, nxml-green-color)
13095         (nxml-sky-blue-color, nxml-dark-green-color, nxml-light-green-color):
13096         (nxml-version): Remove.
13097         (nxml-delimited-data, nxml-name, nxml-ref, nxml-delimiter)
13098         (nxml-text, nxml-comment-content, nxml-comment-delimiter)
13099         (nxml-processing-instruction-delimiter)
13100         (nxml-processing-instruction-target)
13101         (nxml-processing-instruction-content, nxml-cdata-section-delimiter)
13102         (nxml-cdata-section-CDATA, nxml-cdata-section-content)
13103         (nxml-char-ref-number, nxml-char-ref-delimiter, nxml-entity-ref-name)
13104         (nxml-entity-ref-delimiter, nxml-tag-delimiter, nxml-tag-slash)
13105         (nxml-element-prefix, nxml-element-colon, nxml-element-local-name)
13106         (nxml-attribute-prefix, nxml-attribute-colon)
13107         (nxml-attribute-local-name, nxml-namespace-attribute-xmlns)
13108         (nxml-namespace-attribute-colon, nxml-namespace-attribute-prefix)
13109         (nxml-attribute-value, nxml-attribute-value-delimiter)
13110         (nxml-namespace-attibute-value)
13111         (nxml-namespace-attribure-value-delimiter)
13112         (nxml-prolog-literal-delimiter, nxml-prolog-literal-content)
13113         (nxml-prolog-keyword, nxml-markup-declaration-delimiter, nxml-hash)
13114         (nxml-glyph): Rename, removing -face suffix.
13115         Inherit from existing font-lock faces.
13116         (nxml-apply-fontify-rule, nxml-char-ref-display-extra):
13117         Use new face names.
13119         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
13120         (nxml-outline-active-indicator, nxml-outline-ellipsis):
13121         Rename, removing -face suffix.
13122         (nxml-highlighted-less-than, nxml-highlighted-greater-than)
13123         (nxml-highlighted-colon, nxml-highlighted-slash)
13124         (nxml-highlighted-ellipsis, nxml-highlighted-inactive-minus)
13125         (nxml-highlighted-active-minus, nxml-highlighted-active-plus)
13126         (nxml-highlighted-qname, nxml-outline-display-heading):
13127         Use new face names.
13129         * nxml/rng-valid.el (rng-error): Rename from rng-error-face.
13131         * nxml/rng-nxml.el (rng-nxml-easy-menu): Remove nxml-version.
13133 2007-12-19  Martin Rudalics  <rudalics@gmx.at>
13135         * cus-start.el (all): Use correct group name for members of
13136         mode-line group.
13138         * man.el (Man-default-man-entry): When looking for default man
13139         entry title search text preceding point.  Use when instead of if.
13141         * indent.el (indent-for-tab-command): Fix doc-string typo.
13143         * vc.el (vc-ensure-vc-buffer): Avoid infinite looping when
13144         vc-parent-buffer is the current buffer.
13146         * info-look.el (info-lookup, info-lookup-setup-mode)
13147         (info-lookup-make-completions): Avoid clobbering Info-history and
13148         Info-history-list.
13150 2007-12-19  Glenn Morris  <rgm@gnu.org>
13152         * progmodes/verilog-mode.el (top-level): Don't require compile.
13153         (compilation-error-regexp-alist, compilation-last-buffer):
13154         Define for compiler.
13155         (verilog-insert-1): New function.
13156         (verilog-insert-indices, verilog-generate-numbers): Doc fixes.
13157         Use verilog-insert-1.
13158         (verilog-surelint-off): Use next-error-last-buffer if bound.
13159         Check compile buffer is live.
13161 2007-12-19  John J Foerch  <jjfoerch@earthlink.net>  (tiny change)
13163         * progmodes/compile.el (compilation-start): Don't pass a FRAME
13164         argument to display-buffer.
13166 2007-12-19  Jason Rumney  <jasonr@gnu.org>
13168         * nxml/rng-maint.el (rng-format-manual): Do not autoload.
13169         (rng-autoload-modules, rng-update-autoloads, rng-compile-modules)
13170         (rng-byte-compile-load, rng-write-version): Remove.
13172         * nxml/rng-loc.el (rng-schema-locating-files-default)
13173         (rng-schema-locating-file-schema-file): Use files in etc/schemas.
13174         (rng-schema-loader-alist): Use rng-c-load-schema to load rnc files.
13176 2007-12-18  Michael Albinus  <michael.albinus@gmx.de>
13178         * files.el (cd-absolute): Set `list-buffers-directory' in order to
13179         show correct path in buffer list.
13181         * net/tramp.el (tramp-open-connection-setup-interactive-shell)
13182         (tramp-find-shell): Send only single prompt setting commands, in
13183         order to avoid double-prompt.
13185         * net/tramp-compat.el (top): Require cl only when compiling.
13186         Reported by Glenn Morris <rgm@gnu.org>.
13188 2007-12-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
13190         * progmodes/cc-vars.el (defcustom-c-stylevar): Eval VAL.
13191         (c-comment-continuation-stars): No longer declare with
13192         cc-bytecomp-obsolete-var and cc-bytecomp-defvar.
13193         (c-block-comment-prefix): Use symbol-value to
13194         access c-comment-continuation-stars.
13195         * progmodes/cc-mode.el (c-initialize-cc-mode):
13196         Use symbol-value to access c-comment-continuation-stars.
13198 2007-12-18  Mark A. Hershberger  <mah@everybody.org>
13200         * xml.el (xml-escape-string): New function.  Escape string using
13201         xml-entity-alist.
13202         (xml-debug-print-internal): Use xml-escape-string to escape
13203         characters in attributes and in text children of elements.
13205 2007-12-18  Glenn Morris  <rgm@gnu.org>
13207         * progmodes/cc-subword.el (c-subword-mode): Drop support for
13208         systems without define-minor-mode.
13210         * progmodes/cc-vars.el (defcustom-c-stylevar): Remove debugging message.
13212         * progmodes/verilog-mode.el: Replace all instances of
13213         string-to-int with string-to-number, insert-string with insert,
13214         and read-input with read-string.
13215         (top-level): No need to require imenu, reporter, dinotrace, vc,
13216         font-lock when compiling.  Always require compile.  Relegate remaining
13217         compatibility cruft to XEmacs.  Don't require font-lock.
13218         (verilog-version): Remove superfluous concat.
13219         (dinotrace-unannotate-all, zmacs-activate-region, customize-apropos):
13220         No need to define.
13221         (verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt.
13222         (verilog-font-lock-keywords, verilog-font-lock-keywords-1)
13223         (verilog-font-lock-keywords-2, verilog-font-lock-keywords-3)
13224         (verilog-startup-message-displayed): These are variables, not constants.
13225         (verilog-batch-execute-func, verilog-auto-inst)
13226         (verilog-auto-inst-param): Use mapc rather than mapcar.
13227         (sigs-in, sigs-inout, sigs-out): Define for compiler rather than
13228         actually defining.
13229         (verilog-modi-get-decls, verilog-modi-get-sub-decls)
13230         (verilog-modi-get-outputs, verilog-modi-get-inouts)
13231         (verilog-modi-get-inputs, verilog-modi-get-wires)
13232         (verilog-modi-get-regs, verilog-modi-get-assigns)
13233         (verilog-modi-get-consts, verilog-modi-get-gparams)
13234         (verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts)
13235         (verilog-modi-get-sub-inputs): Move inline functions earlier in
13236         the file.
13237         (sigs-in, sigs-out): Don't declare multiple times.
13238         (got-sig, got-rvalue, uses-delayed): Define for compiler with just
13239         `defvar'.
13240         (verilog-auto): Call dinotrace-unannotate-all only if bound.
13241         (verilog-module-inside-filename-p): No need to wrap fboundp test
13242         in condition-case.
13243         (reporter-submit-bug-report): Autoload it.
13244         (verilog-mark-defun): Call zmacs-activate-region only if bound.
13245         (verilog-font-customize): Call customize-apropos only if bound.
13246         (verilog-getopt-flags, verilog-auto-reeval-locals):
13247         Use make-local-variable rather than make-variable-buffer-local.
13248         (verilog-company, verilog-project, verilog-modi-cache-list):
13249         Move make-variable-buffer-local calls to top-level.
13250         (font-lock-defaults-alist): Don't define it.
13251         (verilog-need-fld): Remove.
13252         (verilog-font-lock-init): Don't set font-lock-defaults-alist.
13253         (verilog-mode): Only call make-local-hook on XEmacs.
13254         Set font-lock-defaults rather than using verilog-font-lock-init.
13256 2007-12-17  Andreas Schwab  <schwab@suse.de>
13258         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
13259         Fix comment typo.
13261 2007-12-16  Michael Albinus  <michael.albinus@gmx.de>
13263         * net/dbus.el (dbus-name-owner-changed-handler):
13264         Use `dbus-unregister-signal' for removing old rules.
13265         Obey new structure of `dbus-registered-functions-table'.
13267 2007-12-12  Thien-Thi Nguyen  <ttn@gnuvola.org>
13269         * progmodes/cc-vars.el (defcustom-c-stylevar): Rewrite.
13271 2007-12-11  Dan Nicolaescu  <dann@ics.uci.edu>
13273         * progmodes/verilog-mode.el (set-buffer-menubar): Remove unused
13274         function.
13275         (add-submenu): Only define for XEmacs.
13276         (verilog-regexp-words): Revert previous change, keep the other
13277         definition.
13279 2007-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
13281         * progmodes/perl-mode.el (perl-continued-statement-offset)
13282         (perl-continued-brace-offset, perl-brace-offset)
13283         (perl-brace-imaginary-offset, perl-label-offset):
13284         * progmodes/cperl-mode.el (cperl-brace-offset)
13285         (cperl-continued-brace-offset, cperl-label-offset)
13286         (cperl-continued-statement-offset)
13287         (cperl-extra-newline-before-brace, cperl-merge-trailing-else):
13288         Add safe-local-variable properties.
13290 2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
13292         * progmodes/verilog-mode.el (verilog-mode-map)
13293         (verilog-template-map, verilog-mode-mouse-map): Fix typos.
13294         (verilog-colorize-include-files): Use only overlay functions so
13295         that it can work on both emacs and XEmacs.
13296         (set-extent-keymap): Remove unused defun.
13297         (verilog-kill-existing-comment, verilog-insert-date)
13298         (verilog-insert-year): Rename in order not to pollute the global
13299         namespace from kill-existing-comment, insert-date and
13300         insert-year, respectively.
13301         (verilog-set-auto-endcomments, verilog-header): Update callers.
13303         * files.el (auto-mode-alist): Recognize verilog files.
13305         * progmodes/verilog-mode.el (verilog-string-replace-matches)
13306         (verilog-string-remove-spaces, verilog-re-search-forward)
13307         (verilog-re-search-backward, verilog-re-search-forward-quick)
13308         (verilog-re-search-backward-quick, verilog-get-beg-of-line)
13309         (verilog-get-end-of-line, verilog-within-string): Move definitions
13310         before first use.  No code changes.
13312 2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
13314         * progmodes/verilog-mode.el (verilog-mode-version)
13315         (verilog-mode-release-date): Don't use expanding keywords.
13316         (provide): Move to the end of file.
13317         (fboundp): Don't check if eval-when-compile is bound, it is used
13318         later in the file without checking.
13319         (when, unless): Copy definitions from subr.el.
13320         (char-before, defcustom, defface, customize-group)
13321         (verilog-batch-error-wrapper): Don't use old style backquotes.
13322         (verilog-regexp-opt): Avoid using the cl function case.
13323         (verilog-regexp-words): Remove duplicated definition.
13324         (verilog-mode-abbrev-table): Remove, duplicate.
13325         (verilog-mode-map, verilog-template-map, verilog-mode-mouse-map):
13326         Declare and initialize in one step.
13327         (verilog-declaration-prefix-re, verilog-declaration-re)
13328         (verilog-end-of-statement, verilog-indent-declaration)
13329         (verilog-get-lineup-indent): Remove trailing whitespace.
13330         (verilog-mode): Fix autoload cookie.
13331         Set beginning-of-defun-function and end-of-defun-function.  Use when
13332         instead of if.
13333         (verilog-emacs-features, verilog-auto-ascii-enum)
13334         (verilog-insert-indices): Escape braces in doc strings.
13336 2007-12-08  Michael McNamara  <mac@verilog.com>
13337             Wilson Snyder  <wsnyder@wsnyder.org>
13339         * progmodes/verilog-mode.el: New file.
13341 2007-12-08  Eli Zaretskii  <eliz@fencepost.gnu.org>
13343         * international/latexenc.el (latexenc-find-file-coding-system):
13344         If both coding-system-for-write and buffer-file-coding-system of
13345         latex-main-file are nil, use `undecided'.
13347 2007-12-06  Jason Rumney  <jasonr@gnu.org>
13349         * mouse.el (mouse-buffer-menu-alist): Keep buffer names left aligned.
13351 2007-12-12  Yoni Rabkin Katzenell  <yoni-r@actcom.com>  (tiny change)
13353         * files.el (revert-buffer): Docstring fix.
13355 2007-12-11  Glenn Morris  <rgm@gnu.org>
13357         * emacs-lisp/check-declare.el (check-declare-verify): Handle deffoo.
13359 2007-12-11  Jay Belanger  <jay.p.belanger@gmail.com>
13361         * calc/calc-aent.el (math-restore-underscores)
13362         (math-string-restore-underscores): New functions.
13363         (math-read-factor): Properly check variable names with underscores
13364         for entries in `math-expr-variable-mapping'.
13366         * calc/calc-lang.el (math-lang-name): New property name.
13368         * calc/calc.el (calc-set-mode-line): Use `math-lang-name'
13369         to set language name.
13371 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13373         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
13375 2007-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13377         * server.el (server-select-display): Fix important typo.
13378         (server-process-filter): Turn a "" display into nil.
13380 2007-12-09  Juri Linkov  <juri@jurta.org>
13382         * replace.el (keep-lines, flush-lines, how-many): Doc fix.
13383         Check search-upper-case before calling isearch-no-upper-case-p
13384         to set case-fold-search.
13385         (occur): Doc fix.
13386         (occur-1, perform-replace): Check search-upper-case before calling
13387         isearch-no-upper-case-p to set case-fold-search.
13389         * isearch.el (search-upper-case): Doc fix.
13390         (isearch-mode-map): Bind `M-s o' to isearch-occur.
13391         (isearch-query-replace): Doc fix.  Let-bind search-upper-case to nil.
13392         (isearch-query-replace-regexp): Doc fix.
13393         (isearch-occur): New function.
13395 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13397         * pgg.el, pgg-parse.el (declare-function): Add new no-op macro for
13398         backward compatibility.
13400         * net/imap.el (imap-string-to-integer): New function.
13402 2007-12-09  David Kastrup  <dak@gnu.org>
13404         * emacs-lisp/lisp-mnt.el (lm-verify): Make it work with
13405         directories.  Not sure anybody uses this anymore, though.
13407 2007-12-09  Glenn Morris  <rgm@gnu.org>
13409         * emulation/viper-init.el (top-level): Use dolist rather than mapc
13410         in make-variable-frame-local call.
13412 2007-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
13414         * mail/hashcash.el (declare-function):
13415         * net/imap.el (declare-function): New no-op macro for backward
13416         compatibility.
13418 2007-12-08  Eli Zaretskii  <eliz@gnu.org>
13420         Sync makefile.w32-in with Makefile.in.
13422         * makefile.w32-in (check-declare): New target.
13423         (BYTE_COMPILE_EXTRA_FLAGS): New variable.
13424         (.el.elc, compile-CMD, compile-SH, compile-always-CMD)
13425         (compile-always-SH, compile-calc-CMD, compile-calc-SH)
13426         ($(lisp)/progmodes/cc-mode.elc): Use it.
13427         ($(lisp)/progmodes/cc-mode.elc): New rule.
13429 2007-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
13431         * indent.el (tab-stop-list): Mark as safe-local-variable.
13433         * generic-x.el (etc-sudoers-generic-mode): New mode.
13434         (generic-unix-modes): Add it.
13436 2007-12-08  Michael Albinus  <michael.albinus@gmx.de>
13438         * net/dbus.el (dbus-hash-table=): Remove function.  We cannot
13439         apply wildcards in a hash table key; there is no usable hash code then.
13440         (dbus-registered-functions-table): Use `equal' as test function.
13441         (dbus-name-owner-changed-handler): Rewrite due to new hash table
13442         structure.
13444 2007-12-08  Martin Rudalics  <rudalics@gmx.at>
13446         * progmodes/cc-cmds.el (c-mask-paragraph): Avoid invalid search
13447         bound error in block comment branch.
13449 2007-12-08  David Kastrup  <dak@gnu.org>
13451         * textmodes/reftex.el (reftex-select-with-char):
13452         * textmodes/reftex-toc.el (reftex-toc-do-promote)
13453         (reftex-toc-visit-location, reftex-toc-find-section):
13454         * textmodes/reftex-index.el (reftex-index-show-entry):
13455         * textmodes/org.el (org-cycle-hide-archived-subtrees)
13456         (org-table-rotate-recalc-marks, org-mark-ring-push)
13457         (org-follow-info-link, org-mhe-get-message-folder-from-index)
13458         (org-auto-repeat-maybe, org-store-log-note, org-delete-property)
13459         (org-evaluate-time-range, org-edit-agenda-file-list):
13460         * textmodes/artist.el (artist-select-next-op-in-list)
13461         (artist-select-prev-op-in-list):
13462         * term/mac-win.el (mac-service-insert-text):
13463         * startup.el (fancy-about-screen):
13464         * progmodes/vhdl-mode.el (vhdl-decision-query):
13465         * progmodes/idlwave.el (idlwave-template)
13466         (idlwave-scroll-completions, idlwave-display-completion-list):
13467         * progmodes/ebrowse.el (ebrowse-show-progress):
13468         * progmodes/cperl-mode.el (cperl-find-pods-heres):
13469         * progmodes/antlr-mode.el (antlr-insert-option-do):
13470         * play/mpuz.el (mpuz-close-game):
13471         * net/rcirc.el (rcirc-next-active-buffer):
13472         * mail/reporter.el (reporter-update-status):
13473         * kmacro.el (kmacro-display):
13474         * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
13475         * emulation/viper-util.el (viper-save-setting):
13476         * emacs-lisp/lisp-mnt.el (lm-verify):
13477         * emacs-lisp/edebug.el (edebug-set-mode):
13478         * emacs-lisp/checkdoc.el (checkdoc-rogue-spaces, checkdoc-defun):
13479         * calendar/calendar.el (calendar-print-day-of-year):
13480         * calc/calcalg3.el (calc-curve-fit):
13481         * calc/calcalg2.el (math-integral):
13482         * calc/calc.el (calc-read-key-sequence, calc-version):
13483         * calc/calc-mode.el (calc-set-simplify-mode):
13484         * calc/calc-ext.el (calc-fancy-prefix): Fix buggy call to `message'.
13486 2007-12-07  D. Goel  <deego3@gmail.com>
13488         * progmodes/idlw-shell.el (idlwave-shell-display-line)
13489         * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
13490         (ada-xref-find-in-modified-ali, ada-find-in-src-path)
13491         * mail/uce.el (uce-reply-to-uce)
13492         * progmodes/vhdl-mode.el (vhdl-template-modify)
13493         * mail/feedmail.el (feedmail-dump-message-to-queue): Improve calls
13494         to `error' (as suggested by RMS.)
13496 2007-12-07  Glenn Morris  <rgm@gnu.org>
13498         * allout.el (allout-write-file-hook-handler):
13499         * textmodes/reftex.el (reftex-TeX-master-file):
13500         * textmodes/reftex-parse.el (reftex-short-context):
13501         Revert previous change.
13503 2007-12-07  Michael Albinus  <michael.albinus@gmx.de>
13505         * net/dbus.el (dbus-hash-table=): Fix for new hash table key structure.
13506         (dbus-list-hash-table, dbus-name-owner-changed-handler): New defuns.
13507         (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
13508         (dbus-event-service-name, dbus-event-path-name)
13509         (dbus-event-interface-name, dbus-event-member-name): Fix for new
13510         event structure.
13511         (dbus-list-activatable-names, dbus-list-names)
13512         (dbus-list-queued-owners, dbus-get-name-owner, dbus-introspect):
13513         Reorder `dbus-call-method' arguments.
13515 2007-12-06  D. Goel  <deego3@gmail.com>
13517         * allout.el (allout-write-file-hook-handler):
13518         * textmodes/reftex.el (reftex-TeX-master-file):
13519         * textmodes/org.el (org-paste-subtree):
13520         * progmodes/vhdl-mode.el (vhdl-template-modify):
13521         * progmodes/idlw-shell.el (idlwave-shell-send-command)
13522         (idlwave-shell-display-line):
13523         * progmodes/ada-xref.el (ada-find-file, ada-get-all-references)
13524         (ada-xref-find-in-modified-ali, ada-find-in-src-path):
13525         * net/trampver.el (x):
13526         * mail/uce.el (uce-reply-to-uce):
13527         * mail/rmailout.el (rmail-output):
13528         * mail/feedmail.el (feedmail-dump-message-to-queue):
13529         * whitespace.el (whitespace-write-file-hook):
13530         * wdired.el (wdired-check-kill-buffer):
13531         * vc.el (vc-update):
13532         * vc-mcvs.el (vc-mcvs-checkin):
13533         * vc-cvs.el (vc-cvs-checkin):
13534         * man.el (Man-bgproc-sentinel, Man-goto-see-also-section):
13535         * ibuffer.el (ibuffer-current-buffer):
13536         * dired.el (dired-move-to-end-of-filename):
13537         * bindings.el (complete-symbol):
13538         * textmodes/org-publish.el (org-publish-file):
13539         (org-publish-current-project):
13540         * textmodes/reftex-parse.el (reftex-short-context):
13541         * textmodes/texinfmt.el: Fix buggy calls to `error'.
13543 2007-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13545         * doc-view.el (doc-view-dvi->pdf-sentinel)
13546         (doc-view-pdf/ps->png-sentinel, doc-view-pdf->txt-sentinel)
13547         (doc-view-ps->pdf-sentinel, doc-view-display): Don't change buffer
13548         within a sentinel or timer.
13549         (doc-view-display): Don't try to display before the requested page
13550         is available, unless told to do so explicitly.
13551         (doc-view-pdf/ps->png-sentinel, doc-view-initiate-display):
13552         Force display even if the requested page is not available.
13554 2007-12-06  Richard Stallman  <rms@gnu.org>
13556         * help-fns.el (describe-function-1): Call ad-get-advice-info
13557         only on symbols.
13559 2007-12-06  Glenn Morris  <rgm@gnu.org>
13561         * progmodes/antlr-mode.el (antlr-keyword, antlr-syntax)
13562         (antlr-ruledef, antlr-tokendef, antlr-ruleref-face)
13563         (antlr-tokenref, antlr-literal): Inherit from standard font-lock
13564         faces in non-light-background case.
13566         * add-log.el, dired-aux.el, font-lock.el, help-fns.el, ido.el:
13567         * informat.el, emacs-lisp/bytecomp.el, emacs-lisp/gulp.el:
13568         * emacs-lisp/tcover-ses.el, emacs-lisp/timer.el, emulation/edt.el:
13569         * emulation/vi.el, emulation/viper-cmd.el:
13570         * international/titdic-cnv.el, mail/emacsbug.el, progmodes/dcl-mode.el:
13571         * progmodes/prolog.el, progmodes/ps-mode.el, progmodes/python.el:
13572         * textmodes/fill.el: Remove directory part from filenames in
13573         function declarations.
13575         * dired-aux.el (mailcap-mime-info): Update declaration.
13577 2007-12-05  Richard Stallman  <rms@gnu.org>
13579         * wid-edit.el (widget-type): Doc fix.
13581 2007-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13583         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
13584         Don't match "sub { (...) ... }".
13586 2007-12-05  Richard Stallman  <rms@gnu.org>
13588         * international/mule-cmds.el (toggle-input-method-active): New var.
13589         (toggle-input-method): Bind toggle-input-method-active to t.
13590         Error if it was already non-nil.
13592 2007-12-05  Reiner Steib  <Reiner.Steib@gmx.de>
13594         * net/tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
13596 2007-12-05  Elias Oltmanns  <eo@nebensachen.de>
13598         * net/tls.el (open-tls-stream): Actually consult tls-checktrust to
13599         see if certs should be verified and what is to be done in the
13600         event of a verification failure.
13602 2007-12-05  Reiner Steib  <Reiner.Steib@gmx.de>
13604         * net/tls.el (tls-program): Provide more custom choices from
13605         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
13606         (tls-process-connection-type, tls-success): Remove "*" in doc string.
13607         (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
13608         version.  Minor improvement to doc strings.
13609         (tls-program): Add comment.
13611 2007-12-05  Elias Oltmanns  <eo@nebensachen.de>
13613         * net/tls.el (tls-certtool-program, tls-hostmismatch): New variables.
13614         (tls-checktrust): New variable.  Check if GNU TLS complained about a
13615         mismatch between the hostname provided in the certificate and the name
13616         of the host connnecting to.
13617         (open-tls-stream): Use them.  Check certificates against trusted root
13618         certificates.
13620 2007-12-05  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
13622         * net/imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
13623         (imap-parse-status): Upcase status-att for broken servers that sends
13624         them lower-case (e.g., MS Exchange 2007).
13626 2007-12-05  D. Goel  <deego3@gmail.com>
13628         * simple.el (undo):
13629         * image-dired.el (image-dired-display-thumb-properties):
13630         (image-dired-modify-mark-on-thumb-original-file):
13631         (image-dired-dired-display-properties):
13632         * help.el (help-window-display-message):
13633         * files.el (hack-local-variables-confirm):
13634         * ediff.el (ediff-version):
13635         * complete.el (pc-chunk-after, PC-temp-minibuffer-message):
13636         `message' and `error': Ensure that first arg is a format string.
13638         * emacs-lisp/find-func.el (find-library-name): Prefer files with
13639         ".el" suffix over "".
13641 2007-12-05  Michael Albinus  <michael.albinus@gmx.de>
13643         * net/dbus.el (dbus-hash-table=): Allow nil as wildcard in the
13644         interface and member fields.
13646 2007-12-05  Glenn Morris  <rgm@gnu.org>
13648         * eshell/em-alias.el (pcomplete-stub): Define for compiler.
13649         (pcomplete-here): Autoload it.
13651         * eshell/em-basic.el (print-func): No need to define for compiler.
13653         * eshell/esh-cmd.el (eshell-debug-command):
13654         * eshell/esh-io.el (eshell-print): Move definitions before use.
13656         * eshell/esh-module.el (eshell-load-defgroups): Eval and compile.
13658         * eshell/esh-util.el (top-level): Don't require pp.
13659         Use condition-case rather than ignore-errors.
13661         * eshell/eshell.el (eshell-buffer-name): Define for compiler.
13663         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el
13664         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
13665         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el
13666         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el
13667         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el
13668         * eshell/em-xtra.el, eshell/esh-cmd.el, eshell/esh-test.el
13669         * eshell/esh-util.el, eshell/eshell.el: Require individual files
13670         if needed when compiling, rather than esh-maint.  Collect any
13671         require statements.  Move provide statement to end.  Move any
13672         commentary to start.
13674         * eshell/esh-arg.el, eshell/esh-ext.el, eshell/esh-io.el:
13675         * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el:
13676         * eshell/esh-proc.el, eshell/esh-var.el:
13677         Require individual files if needed when compiling, rather than
13678         esh-maint.  Collect any require statements.  Leave provide at start.
13679         Move any commentary to start.
13681         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13682         Remove declared function from byte-compile-noruntime-functions.
13684         * ediff-util.el (ediff-version):
13685         * progmodes/python.el (compilation-shell-minor-mode):
13686         * textmodes/org.el (Info-goto-node, calendar-astro-date-string)
13687         (calendar-bahai-date-string, calendar-check-holidays)
13688         (calendar-chinese-date-string, calendar-coptic-date-string)
13689         (calendar-ethiopic-date-string, calendar-forward-day)
13690         (calendar-french-date-string, calendar-goto-date)
13691         (calendar-goto-today, calendar-hebrew-date-string)
13692         (calendar-islamic-date-string, calendar-iso-date-string)
13693         (calendar-julian-date-string, calendar-mayan-date-string)
13694         (calendar-persian-date-string, gnus-summary-last-subject)
13695         (parse-time-string, rmail-show-message): Declare as functions.
13697 2007-12-05  Michael Olson  <mwolson@gnu.org>
13699         * textmodes/remember.el: Merge contents of remember-diary.el here,
13700         updating header.  Add autoload cookie so that byte-compilation
13701         works without warning.
13702         (remember-diary-file): Default to nil, since diary might not yet
13703         be loaded at this point, which would deny us access to diary-file.
13704         (remember-diary-extract-entries): If remember-diary-file is nil,
13705         then use diary-file instead.
13707         * textmodes/remember-diary.el: Remove, due to the issue of needing
13708         the first 8 characters of a filename to be unique.
13710 2007-12-04  Michael Albinus  <michael.albinus@gmx.de>
13712         * net/dbus.el (dbus-hash-table=): New defun.
13713         (dbus-hash-table-test): New hash table test function, used in
13714         `dbus-registered-functions-table'.
13715         (dbus-check-event, dbus-handle-event, dbus-event-bus-name)
13716         (dbus-event-service-name, dbus-event-path-name)
13717         (dbus-event-interface-name, dbus-event-member-name):
13718         Rewrite, due to new structure of `dbus-event'.
13720 2007-12-04  Juanma Barranquero  <lekktu@gmail.com>
13722         * ido.el (ido-save-history): Set the `coding' local
13723         variable in the first line of the file.
13725 2007-12-04  Glenn Morris  <rgm@gnu.org>
13727         * password-cache.el: Move here from gnus/password.el.
13728         (top-level): Don't require cl when compiling.
13729         (password-read-and-add): Doc fix.  Make obsolete.
13731         * net/tramp.el: Require password-cache or password.
13733         * emulation/cua-base.el (top-level): Move (provide 'cua-base) to end.
13734         No longer provide 'cua.  Don't require cua-rect, cua-gmrk when
13735         compiling.
13736         (cua-set-rectangle-mark): Add doc string to autoload.
13737         (cua--rectangle, cua--last-killed-rectangle)
13738         (cua--global-mark-active): Always define for compiler.
13739         (cua-copy-rectangle, cua-cut-rectangle, cua--rectangle-left)
13740         (cua--delete-rectangle, cua--insert-rectangle)
13741         (cua--rectangle-corner, cua--rectangle-assert)
13742         (cua--insert-at-global-mark, cua--global-mark-post-command):
13743         Declare as functions.
13745         * emulation/cua-gmrk.el (top-level): Move provide to end.
13747         * emulation/cua-rect.el (top-level): Move provide to end.
13748         Don't require cua-gmrk when compiling.
13749         (cua--cut-rectangle-to-global-mark)
13750         (cua--copy-rectangle-to-global-mark): Declare as functions.
13752         * emulation/viper-init.el (viper-replace-overlay-cursor-color)
13753         (viper-insert-state-cursor-color, viper-emacs-state-cursor-color)
13754         (viper-vi-state-cursor-color):
13755         Consolidate make-variable-frame-local calls.
13757         * net/eudcb-bbdb.el (bbdb-address-streets): Declare as a function.
13758         (eudc-bbdb-extract-addresses): Use bbdb-address-streets rather
13759         than bbdb-address-street1,2,3.
13761         * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
13762         Try x-focus-frame before focus-frame.  Only try focus-frame on XEmacs.
13764 2007-12-03  Karl Fogel  <kfogel@red-bean.com>
13766         * saveplace.el (save-place-quiet): Remove, reverting 2007-12-02T19:54:46Z!kfogel@red-bean.com.
13767         (save-place-alist-to-file, load-save-place-alist-from-file):
13768         Don't print non-error messages at all, there's really no need.
13769         Do print if there's a problem, and clarify message in that case.
13771 2007-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
13773         * ediff-diff.el (ediff-prepare-error-list):
13774         * ediff-util.el (ediff-setup): Disable undo for ediff-error-buffer.
13776 2007-12-03  Tassilo Horn  <tassilo@member.fsf.org>
13778         * doc-view.el (doc-view-initiate-display): Use `doc-view-mode-p'.
13779         (doc-view-current-overlay, doc-view-pending-cache-flush):
13780         Add doc string.
13782 2007-12-03  Richard Stallman  <rms@gnu.org>
13784         * subr.el (declare-function): Move from byte-run.el.
13786         * emacs-lisp/byte-run.el (declare-function): Move to subr.el.
13788         * window.el (recenter-top-bottom): Don't use `ecase'.
13790 2007-12-02  Karl Fogel  <kfogel@red-bean.com>
13792         * saveplace.el (save-place-alist-to-file):
13793         Set coding-system-for-write once and refer to it throughout.
13794         Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
13796 2007-12-02  Karl Fogel  <kfogel@red-bean.com>
13798         * saveplace.el (save-place-alist-to-file): Use `utf-8' coding
13799         system when writing, and set it in the first-line file variables.
13800         Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk> and
13801         Juanma Barranquero.
13803 2007-12-02  Glenn Morris  <rgm@gnu.org>
13805         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
13806         Reverse branches of if statement.
13808         * emulation/viper-cmd.el (top-level): Don't require advice.
13809         Don't load viper-util, viper-keym, viper-mous, viper-macs,
13810         viper-ex when compiling.
13812         * emulation/viper-ex.el (top-level): Don't load viper-util,
13813         viper-keym when compiling.
13815         * emulation/viper-init.el (top-level): Move provide statement to end.
13817         * emulation/viper-keym.el (top-level): Don't load viper-util when
13818         compiling.  Move provide statement to end.
13820         * emulation/viper-macs.el (top-level): Don't load viper-util,
13821         viper-keym, viper-mous when compiling.
13823         * emulation/viper-mous.el (top-level): Don't load viper-util when
13824         compiling.
13826         * emulation/viper-util.el (top-level): Don't load viper-init when
13827         compiling.
13829         * emulation/viper.el (top-level): Don't require ring.
13830         Don't load viper-init, viper-cmd when compiling.
13832         * net/sasl-cram.el, net/sasl-digest.el, net/sasl-ntlm.el, net/sasl.el:
13833         Move here from gnus/.
13835 2007-12-02  Karl Fogel  <kfogel@red-bean.com>
13837         Offer option for saveplace to be quiet about loading and saving.
13838         Suggested by David Reitter <dreitter{_AT_}inf.ed.ac.uk>.
13840         * saveplace.el (save-place-quiet): New customizable boolean.
13841         (save-place-alist-to-file, load-save-place-alist-from-file): Use it
13842         to determine whether to print loading/saving messages.
13844 2007-12-02  Glenn Morris  <rgm@gnu.org>
13846         * mail/binhex.el: Move here from gnus/.
13847         (binhex): New custom group.
13848         (binhex-decoder-program, binhex-decoder-switches)
13849         (binhex-use-external): Move to the binhex custom group.
13851         * mail/uudecode.el: Move here from gnus/.
13852         (uudecode): New custom group.
13853         (uudecode-decoder-program, uudecode-decoder-switches)
13854         (uudecode-use-external): Move to the uudecode custom group.
13856         * net/netrc.el (top-level): Don't load `encrypt' features.
13857         (netrc-parse): Don't use encrypt.
13858         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
13860         * progmodes/python.el (top-level): Don't require cl when compiling.
13862 2007-12-02  Agustín Martín  <agustin.martin@hispalinux.es>
13864         * textmodes/flyspell.el (flyspell-large-region): Explicitly set
13865         encoding for aspell process and for communication with it.
13866         Only add "-d" option if not already present.
13867         Use ispell-current-dictionary and ispell-current-personal-dictionary.
13868         General reorganization.
13870         * textmodes/ispell.el (ispell-aspell-find-dictionary): Do not set
13871         encoding here.
13872         (ispell-start-process): Explicitly set encoding here if using aspell.
13874 2007-12-02  Dan Nicolaescu  <dann@ics.uci.edu>
13876         * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Also pass a diff
13877         function to log-edit.
13879 2007-12-02  Michael Albinus  <michael.albinus@gmx.de>
13881         * net/dbus.el: New file.
13883 2007-12-02  Jay Belanger  <jay.p.belanger@gmail.com>
13885         * calc/calc.el (calc-lang-slash-idiv, calc-lang-allow-underscores)
13886         (calc-lang-c-type-hex, calc-lang-brackets-are-subscripts)
13887         (calc-lang-parens-are-subscripts): New variables.
13888         (math-expr-special-function-mapping): Remove variable.
13889         (math-eqn-ignore-words, math-tex-ignore-words)
13890         (math-latex-ignore-words): Move to calc-lang.el.
13892         * calc/calc-lang.el (math-compose-vector, math-compose-var)
13893         (math-tex-expr-is-flat): Declare as functions.
13894         (calc-lang-slash-idiv, calc-lang-allow-underscores)
13895         (math-comp-left-bracket, math-comp-right-bracket)
13896         (math-comp-comma, math-comp-vector-prec): Declare as variables.
13897         (math-var-formatter, math-matrix-formatter)
13898         (math-lang-adjust-words, math-lang-read-symbol, math-land-read)
13899         (math-punc-table, math-compose-subscr, math-dots)
13900         (math-func-formatter): New property names to store language
13901         specific information.
13902         (math-compose-tex-var, math-compose-tex-intv)
13903         (math-compose-maple-intv, math-compose-eqn-intv)
13904         (math-compose-tex-sum, math-compose-tex-func)
13905         (math-compose-tex-intv): New functions.
13906         (math-eqn-ignore-words, math-tex-ignore-words)
13907         (math-latex-ignore-words): Move from calc.el.
13908         (math-special-function-table): Add entries for tex.
13909         (calc-lang-slash-idiv, calc-lang-allows-underscores):
13910         New variables.
13911         (math-compose-latex-frac): Rename from `math-latex-print-frac'.
13912         (math-compose-tex-matrix, math-compose-eqn-matrix)
13913         (math-eqn-special-functions): Move from calccomp.el.
13915         * calc/calccomp.el (math-compose-var): New function.
13916         (math-compose-expr): Allow more special functions to be used.
13917         Change test for formatting fractions.  Use variables and property
13918         names to help with language specific formatting.
13919         (math-compose-tex-matrix, math-compose-eqn-matrix)
13920         (math-eqn-special-functions): Move to calc-lang.el.
13921         (math-compose-rows): Use property names to help with language
13922         specific formatting.
13924         * calc/calc-aent.el (math-read-factor): Turn multiple subscripts
13925         into nested subscripts.
13926         (math-read-token): Use variables and property names to help with
13927         language specific parsing.
13928         (math-read-expression-level): Use variables to help with language
13929         specific parsing.
13931 2007-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13933         * arc-mode.el (archive-find-type): Add recognition of rar-exe format.
13934         (archive-rar-summarize): Allow the file name to be passed as argument.
13935         Remove unused vars `header' and `footer'.
13936         (archive-rar-exe-summarize, archive-rar-exe-extract): New functions.
13938 2007-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
13940         * log-edit.el (log-edit-show-diff): New function.
13941         (log-edit-mode-map, log-edit-menu): Bind it.
13942         (log-edit-diff-function): New variable.
13943         (log-edit): Change the 3rd param to be an alist and accept a
13944         function that computes a diff for the files involved.
13946         * vc.el (vc-log-edit): Add a diff function parameter to log-edit.
13948 2007-12-01  Martin Rudalics  <rudalics@gmx.at>
13950         * play/blackbox.el (bb-up, bb-down): Revert 2007-10-21 change and
13951         wrap next-/previous-line in with-no-warnings.
13953 2007-12-01  Glenn Morris  <rgm@gnu.org>
13955         * format-spec.el, hex-util.el, sha1.el: Move here from gnus/.
13957         * net/dig.el: Move here from gnus/.
13958         (dig-mode): Replace gnus-run-mode-hooks with equivalent expansion.
13960         * net/dns.el: Move here from gnus/.
13961         (top-level): Don't require mm-util, or cl when compiling.
13962         (dns-write-name, dns-read, dns-read-type, query-dns):
13963         Replace mm-with-unibyte-buffer with its expansion.
13964         (query-dns): Replace decf and ignore-errors with non-cl equivalents.
13966         * progmodes/gdb-ui.el (gud-remove, gud-break):
13967         * progmodes/gud.el (gdb-create-define-alist)
13968         (gdb-restore-windows, gdb-reset, global-hl-line-highlight)
13969         (hl-line-highlight, gdb-display-source-buffer)
13970         (gdb-display-buffer, c-langelem-sym, c-langelem-pos)
13971         (syntax-symbol, syntax-point, gdb-enqueue-input): Declare as functions.
13973 2007-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
13975         * textmodes/org-export-latex.el (org-export-latex-cleaned-string):
13976         Move args on defun line.
13978         * textmodes/org.el (org-calendar-holiday):
13979         Use calendar-check-holidays instead of the obsolete
13980         check-calendar-holidays.
13981         (add-to-diary-list, table--at-cell-p, Info-find-node, bbdb)
13982         (bbdb-company, bbdb-current-record, bbdb-name)
13983         (bbdb-record-getprop, bbdb-record-name)
13984         (bibtex-beginning-of-entry, bibtex-generate-autokey)
13985         (bibtex-parse-entry, bibtex-url, cdlatex-tab)
13986         (dired-get-filename, gnus-article-show-summary, mh-display-msg)
13987         (mh-find-path, mh-get-header-field, mh-get-msg-num)
13988         (mh-header-display, mh-index-previous-folder)
13989         (mh-normalize-folder-name, mh-search, mh-search-choose, mh-show)
13990         (mh-show-buffer-message-number, mh-show-header-display)
13991         (mh-show-msg, mh-show-show, mh-visit-folder)
13992         (org-export-latex-cleaned-string, remember)
13993         (remember-buffer-desc, rmail-narrow-to-non-pruned-header)
13994         (rmail-what-message, elmo-folder-exists-p)
13995         (elmo-message-entity-field, elmo-message-field)
13996         (vm-beginning-of-message, vm-follow-summary-cursor)
13997         (vm-get-header-contents, vm-isearch-narrow, vm-isearch-update)
13998         (vm-select-folder-buffer, vm-su-message-id, vm-su-subject)
13999         (vm-summarize, wl-folder-get-elmo-folder)
14000         (wl-summary-goto-folder-subr)
14001         (wl-summary-jump-to-msg-by-message-id, wl-summary-line-from)
14002         (wl-summary-line-subject, wl-summary-message-number)
14003         (wl-summary-redisplay): Declare as functions.
14005 2007-11-30  Martin Rudalics  <rudalics@gmx.at>
14007         * longlines.el (longlines-show-hard-newlines): Remove handling of
14008         buffer-undo-list and buffer-modified status.
14009         (longlines-show-region, longlines-unshow-hard-newlines):
14010         Handle buffer-undo-list, buffer-modified status, inhibit-read-only, and
14011         inhibit-modification-hooks here to avoid that a buffer appears
14012         modified when toggling visibility of hard newlines.
14014 2007-11-30  Glenn Morris  <rgm@gnu.org>
14016         * nxml/rng-maint.el (rng-do-some-validation): Fix declaration.
14018         * progmodes/idlw-complete-structtag.el
14019         (idlwave-sintern-structtag):
14020         * progmodes/idlw-help.el (idlwave-sintern-sysvar)
14021         (idlwave-sintern-sysvartag):
14022         * progmodes/idlwave.el (idlwave-sintern-class-tag)
14023         (idlwave-sintern-sysvar, idlwave-sintern-sysvartag): Declare as
14024         functions.
14026 2007-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
14028         * textmodes/reftex-index.el (texmathp):
14029         * textmodes/reftex-auc.el (TeX-argument-insert)
14030         (TeX-argument-prompt, multi-prompt, LaTeX-add-index-entries)
14031         (LaTeX-add-labels, LaTeX-bibitem-list, LaTeX-index-entry-list)
14032         (LaTeX-label-list):
14033         * nxml/rng-maint.el (rng-clear-cached-state, rng-clear-overlays)
14034         (rng-clear-conditional-region, rng-do-some-validation): Declare as
14035         functions.
14036         (rng-error-count, rng-validate-up-to-date-end): Pacify byte compiler.
14038 2007-11-30  Glenn Morris  <rgm@gnu.org>
14040         * emacs-lisp/byte-run.el (declare-function): Add optional fourth
14041         argument and document it.
14043         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
14044         Third argument to declare-function must be a list to specify arglist.
14046         * emacs-lisp/check-declare.el (check-declare-scan): Doc fix.
14047         Handle declare-function third argument `t' and fourth argument.
14048         (check-declare-verify): Doc fix.  Handle `fileonly' case.
14049         Use progn rather than prog1.
14051         * desktop.el (uniquify-item-base):
14052         * term/mac-win.el (url-type): Declare as functions.
14054         * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-record-phones)
14055         (bbdb-address-city, bbdb-address-state, bbdb-address-zip)
14056         (bbdb-address-location, bbdb-record-addresses): Pass non-nil
14057         fourth arg to declare-function.
14059         * play/dunnet.el: Don't require cl when compiling.
14060         (byte-compile-warnings): Set via file local variables.
14061         (dun-parse): Let-bind `beg' and `line'.
14063 2007-11-29  Alexandre Julliard  <julliard@winehq.org>
14065         * vc-git.el (vc-git-dir-state): Fix the git command arguments.
14067 2007-11-29  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
14069         * calendar/time-date.el (encode-time-value): Doc fix.
14071 2007-11-29  Glenn Morris  <rgm@gnu.org>
14073         * calendar/time-date.el (with-decoded-time-value): Doc fix.
14075         * textmodes/css-mode.el (prog-mode): Remove.
14076         (css-mode): Derive from fundamental-mode rather than prog-mode.
14078         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14080         * emacs-lisp/check-declare.el (check-declare-locate)
14081         (check-declare-verify): Handle `external' files.
14082         (check-declare-errmsg): New function.
14083         (check-declare-verify, check-declare-file, check-declare-directory):
14084         Use check-declare-errmsg to report the number of problems.
14086         * ffap.el (w3-view-this-url)
14087         * mail/mspools.el (vm-visit-folder)
14088         * net/browse-url.el (w3-fetch-other-window, w3-fetch)
14089         * net/eudcb-bbdb.el (bbdb-phone-location, bbdb-phone-string)
14090         (bbdb-record-phones, bbdb-address-city, bbdb-address-state)
14091         (bbdb-address-zip, bbdb-address-location, bbdb-record-addresses)
14092         (bbdb-records)
14093         * net/eudc-export.el (bbdb-parse-phone-number, bbdb-string-trim)
14094         * net/imap.el (sasl-find-mechanism, sasl-mechanism-name)
14095         (sasl-make-client, sasl-next-step, sasl-step-data)
14096         (sasl-step-set-data)
14097         * net/newsticker.el (w3m-toggle-inline-image, htmlr-reset)
14098         (htmlr-step): Declare as functions.
14100         * net/eudcb-bbdb.el (eudc-bbdb-extract-addresses):
14101         Use bbdb-address-zip rather than bbdb-address-zip-string.
14103 2007-11-28  Richard Stallman  <rms@gnu.org>
14105         * md4.el, net/hmac-def.el, net/hmac-md5.el, net/ntlm.el:
14106         Move here from gnus/.
14108 2007-11-28  Martin Rudalics  <rudalics@gmx.at>
14110         * newcomment.el (comment-region-internal): Fix newline insertion
14111         in `block' case.
14113 2007-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14115         * pcvs-parse.el (cvs-parse-table): Adjust regexp for resurrections.
14117 2007-11-28  Glenn Morris  <rgm@gnu.org>
14119         * Makefile.in (maintainer-clean): Depend on bootstrap-clean to
14120         delete .elc files.
14122         * nxml/char-name/unicode: Move to etc/nxml/.
14123         * nxml/nxml-uchnm.el (top-level): Adapt for moved unicode files.
14125         * nxml/nxml-enc.el (xmltok-get-declared-encoding-position):
14126         Declare as a function.
14128         * nxml/nxml-maint.el (nxml-create-unicode-char-name-sets):
14129         * nxml/nxml-mode.el (nxml-get-char-name, nxml-insert-named-char):
14130         * nxml/xsd-regexp.el (xsdre-gen-categories): Change mapcar -> mapc.
14132         * nxml/nxml-outln.el (nxml-token-start-tag-p)
14133         (nxml-token-end-tag-p): Move definitions before use.
14135         * nxml/nxml-rap.el (nxml-prolog-regions): Declare for compiler.
14137         * nxml/nxml-uchnm.el (top-level)
14138         (nxml-enable-unicode-char-name-sets-1): Use mapc rather than mapcar.
14139         (nxml-enabled-unicode-blocks): Add custom group.
14141         * nxml/xmltok.el (xmltok-scan-char-ref, xmltok-char-number):
14142         Use string-to-number rather than string-to-int.
14144         * dired-x.el (dired-omit-old-add-entry): Declare as function.
14145         Move definition before use.
14146         (dired-old-find-buffer-nocreate): Declare as function.
14148         * emacs-lisp/check-declare.el (check-declare-locate): Reflow doc.
14149         (check-declare-verify): Handle fset.
14151         * emulation/edt.el (edt-user-emulation-setup):
14152         Test edt-setup-user-bindings is bound before calling.
14154         * emulation/tpu-edt.el: Don't require cl when compiling.
14155         (tpu-emacs-search, tpu-emacs-rev-search): Declare as functions.
14156         (tpu-edt-off): Use condition-case rather than ignore-errors.
14157         Use with-no-warnings.
14159         * eshell/esh-util.el (top-level): Use require rather than load for
14160         ange-ftp.
14162         * mail/supercite.el (sc-version): Redefine as an alias for
14163         emacs-version.
14164         (sc-help-address): Remove.
14165         (sc-version): Use emacs-version rather than sc-version.
14166         (sc-submit-bug-report): Redefine as an alias for report-emacs-bug.
14168         * net/socks.el (socks-original-open-network-stream): Declare as
14169         function.  Move definition before use.
14171 2007-11-28  Jay Belanger  <jay.p.belanger@gmail.com>
14173         * calc/calc-ext.el (math-sqrt-raw, math-map-vec)
14174         (math-make-frac): Declare as functions.
14176 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14178         * progmodes/cperl-mode.el (compilation-error-regexp-alist):
14179         Pacify byte compiler.
14180         (cperl-mode): Use with-no-warnings for setting vc-header-alist.
14182         * progmodes/idlwave.el (idlwave-shell-get-path-info)
14183         (idlwave-shell-temp-file, idlwave-shell-is-running)
14184         (widget-value, comint-dynamic-complete-filename, Info-goto-node):
14185         * progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion)
14186         (idlwave-all-method-classes, idlwave-all-method-keyword-classes)
14187         (idlwave-beginning-of-statement, idlwave-best-rinfo-assoc)
14188         (idlwave-class-found-in, idlwave-class-or-superclass-with-tag)
14189         (idlwave-completing-read, idlwave-current-routine)
14190         (idlwave-downcase-safe, idlwave-entry-find-keyword)
14191         (idlwave-expand-keyword, idlwave-find-class-definition)
14192         (idlwave-find-inherited-class, idlwave-find-struct-tag)
14193         (idlwave-get-buffer-visiting, idlwave-in-quote)
14194         (idlwave-make-full-name, idlwave-members-only)
14195         (idlwave-popup-select, idlwave-routine-source-file)
14196         (idlwave-routines, idlwave-sintern-class)
14197         (idlwave-sintern-keyword, idlwave-sintern-method)
14198         (idlwave-sintern-routine-or-method)
14199         (idlwave-substitute-link-target, idlwave-sys-dir)
14200         (idlwave-this-word, idlwave-what-module-find-class)
14201         (idlwave-where):
14202         * progmodes/idlw-complete-structtag.el (idlwave-shell-buffer):
14203         * mail/uce.el (rmail-msg-is-pruned)
14204         (rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend)
14205         (rmail-toggle-header):
14206         * mail/sendmail.el (dired-view-file, dired-get-filename):
14207         * mail/rmailkwd.el (rmail-maybe-set-message-counters)
14208         (rmail-display-labels, rmail-msgbeg)
14209         (rmail-set-message-deleted-p, rmail-message-labels-p)
14210         (rmail-show-message, mail-comma-list-regexp)
14211         (mail-parse-comma-list):
14212         * mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg)
14213         (rmail-summary-mark-undeleted, rmail-summary-mark-deleted)
14214         (rfc822-addresses, mail-abbrev-make-syntax-table)
14215         (mail-sendmail-delimit-header, mail-header-end):
14216         * mail/hashcash.el (message-narrow-to-headers-or-head)
14217         (message-fetch-field, message-goto-eoh)
14218         (message-narrow-to-headers):
14219         * vc.el (view-mode-exit): Declare as functions.
14221         * mail/vms-pmail.el:
14222         * vmsproc.el:
14223         * vms-patch.el: Don't byte compile these files, they don't work.
14225 2007-11-27  Glenn Morris  <rgm@gnu.org>
14227         * calc/calc-ext.el (math-read-big-rec):
14228         * calc/calc-nlfit.el (math-map-binop):
14229         * calc/calc.el (math-normalize-nonstandard): Fix declarations.
14231         * eshell/eshell.el (eshell-report-bug): Add version number of
14232         obsolescence.
14234         * emulation/viper.el, emulation/viper-util.el,
14235         emulation/viper-macs.el, emulation/viper-keym.el,
14236         emulation/viper-ex.el, emulation/viper-cmd.el:
14237         Load viper-*.el files silently.
14239         * ediff-diff.el, ediff-help.el, ediff-merg.el, ediff-mult.el,
14240         ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el, ediff.el:
14241         Load ediff-*.el files silently.
14243         * ediff.el: Load dired silently.  Don't load info, pcl-cvs when
14244         compiling.
14245         (Info-goto-node): Declare as a function.
14247         * ediff-init.el: Don't load ange-ftp when compiling.
14248         * ediff-util.el: Don't load reporter when compiling.
14250         * ediff-wind.el (ediff-display-pixel-width)
14251         (ediff-display-pixel-height):
14252         * generic-x.el (ini-generic-mode):
14253         * ps-print.el (ps-mule-encode-header-string, ps-mule-begin-page)
14254         (ps-mule-prepare-ascii-font, ps-mule-set-ascii-font)
14255         (ps-mule-initialize, ps-mule-begin-job):
14256         * calendar/cal-bahai.el (add-to-diary-list, diary-name-pattern)
14257         (mark-calendar-days-named):
14258         * calendar/cal-hebrew.el (holiday-filter-visible-calendar)
14259         (add-to-diary-list, diary-name-pattern)
14260         (mark-calendar-days-named):
14261         * calendar/cal-islam.el (add-to-diary-list, diary-name-pattern)
14262         (mark-calendar-days-named):
14263         * calendar/cal-x.el (make-fancy-diary-buffer):
14264         * calendar/holidays.el (calendar-absolute-from-julian):
14265         * calendar/todo-mode.el (calendar-current-date):
14266         * calendar/cal-menu.el (calendar-increment-month)
14267         (calendar-month-name, extract-calendar-year)
14268         (calendar-cursor-to-date, holiday-list, calendar-sunrise-sunset)
14269         (calendar-current-date, calendar-cursor-holidays)
14270         (calendar-date-string, insert-diary-entry, calendar-set-mark)
14271         (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
14272         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
14273         (cal-tex-cursor-filofax-daily, cal-tex-cursor-filofax-2week)
14274         (cal-tex-cursor-filofax-week, cal-tex-cursor-month)
14275         (cal-tex-cursor-month-landscape, cal-tex-cursor-year)
14276         (cal-tex-cursor-filofax-year, cal-tex-cursor-year-landscape)
14277         (calendar-day-of-year-string, calendar-iso-date-string)
14278         (calendar-julian-date-string, calendar-astro-date-string)
14279         (calendar-absolute-from-gregorian, calendar-hebrew-date-string)
14280         (calendar-persian-date-string, calendar-bahai-date-string)
14281         (calendar-islamic-date-string, calendar-chinese-date-string)
14282         (calendar-coptic-date-string, calendar-ethiopic-date-string)
14283         (calendar-french-date-string, calendar-mayan-date-string)
14284         (calendar-print-chinese-date, calendar-goto-date):
14285         Declare as functions.
14287         * calendar/calendar.el (nongregorian-diary-listing-hook): Doc fix.
14288         (Info-find-emacs-command-nodes, Info-find-node): Declare as functions.
14290         * ffap.el (ffap-bug, ffap-submit-bug): Redefine as obsolete
14291         aliases for report-emacs-bug.
14292         (gnus-summary-select-article, gnus-configure-windows): Declare as
14293         functions.
14295         * pgg-parse.el (pgg-parse-24, pgg-parse-crc24-string): Declare for
14296         compiler.
14298         * pgg.el (pgg-clear-string): Declare as a function.
14299         (pgg-run-at-time-1): Wrap whole definition in (featurep 'xemacs) test.
14300         (pgg-run-at-time, pgg-cancel-timer): Move definitions before use.
14302         * emacs-lisp/check-declare.el (check-declare-locate):
14303         Handle compressed files.
14304         (check-declare-verify): Handle define-generic-mode,
14305         define-global(ized)-minor-mode, define-obsolete-function-alias.
14307 2007-11-27  Jay Belanger  <jay.p.belanger@gmail.com>
14309         * calc/calc-menu.el (calc-modes-menu): Add normal and incomplete
14310         algebraic modes.
14312         * calc/calc-aent.el (calc-refresh-evaltos, calc-execute-kbd-macro)
14313         (math-is-true, calc-explain-why, calc-alg-edit)
14314         (math-composite-inequalities, math-flatten-lands)
14315         (math-multi-subst, calcFunc-vmatches, math-simplify)
14316         (math-known-matrixp, math-parse-fortran-subscr, math-to-radians-2)
14317         (math-read-string, math-read-brackets, math-read-angle-brackets):
14318         Declare as functions.
14320         * calc/calcalg3.el (calc-fit-s-shaped-logistic-curve)
14321         (calc-fit-bell-shaped-logistic-curve)
14322         (calc-fit-hubbert-linear-curve, calc-graph-add-curve)
14323         (calc-graph-lookup, calc-graph-set-styles, math-min-list)
14324         (math-max-list): Declare as functions.
14325         (math-map-binop): New function.
14326         (calc-curve-fit): Replace `mapcar*' by `math-map-binop'.
14328         * calc/calc.el (calc-set-language, calc-edit-finish)
14329         (calc-edit-cancel, calc-do-quick-calc, calc-do-calc-eval)
14330         (calc-do-keypad, calcFunc-unixtime, math-parse-date)
14331         (math-lessp, calc-embedded-finish-command)
14332         (calc-embedded-select-buffer, calc-embedded-mode-line-change)
14333         (calc-push-list-in-macro, calc-replace-selections)
14334         (calc-record-list, calc-normalize-fancy, calc-do-handle-whys)
14335         (calc-top-selected, calc-sel-error, calc-pop-stack-in-macro)
14336         (calc-embedded-stack-change, calc-refresh-evaltos)
14337         (calc-do-refresh, calc-binary-op-fancy, calc-unary-op-fancy)
14338         (calc-delete-selection, calc-alg-digit-entry, calc-alg-entry)
14339         (calc-dots, calc-temp-minibuffer-message, math-read-radix-digit)
14340         (calc-digit-dots, math-normalize-fancy, math-normalize-nonstandard)
14341         (math-recompile-eval-rules, math-apply-rewrites, calc-record-why)
14342         (math-dimension-error, calc-incomplete-error, math-float-fancy)
14343         (math-neg-fancy, math-zerop, calc-add-fractions)
14344         (math-add-objects-fancy, math-add-symb-fancy, math-mul-zero)
14345         (calc-mul-fractions, math-mul-objects-fancy, math-mul-symb-fancy)
14346         (math-reject-arg, math-div-by-zero, math-div-zero, math-make-frac)
14347         (calc-div-fractions, math-div-objects-fancy, math-div-symb-fancy)
14348         (math-compose-expr, math-comp-width, math-composition-to-string)
14349         (math-stack-value-offset-fancy, math-format-flat-expr-fancy)
14350         (math-adjust-fraction, math-format-binary, math-format-radix)
14351         (math-group-float, math-mod, math-format-number-fancy)
14352         (math-format-bignum-fancy, math-read-number-fancy)
14353         (calc-do-grab-region, calc-do-grab-rectangle, calc-do-embedded)
14354         (calc-do-embedded-activate, math-do-defmath)
14355         (calc-load-everything): Declare as functions.
14357         * calc/calc-ext.el (math-clip, math-round, math-simplify)
14358         (math-simplify-extended, math-simplify-units, calc-set-language)
14359         (calc-flush-caches, calc-save-modes, calc-embedded-modes-change)
14360         (calc-embedded-var-change, math-mul-float, math-arctan-raw)
14361         (math-sqrt-float, math-exp-minus-1-raw, math-normalize-polar)
14362         (math-normalize-hms, math-normalize-mod, math-make-sdev)
14363         (math-make-intv, math-normalize-logical-op, math-possible-signs)
14364         (math-infinite-dir, math-calcFunc-to-var)
14365         (calc-embedded-evaluate-expr, math-known-nonzerop)
14366         (math-read-expr-level, math-read-big-rec, math-read-big-balance)
14367         (math-format-date, math-vector-is-string, math-vector-to-string)
14368         (math-format-radix-float, math-compose-expr, math-abs)
14369         (math-format-bignum-binary, math-format-bignum-octal)
14370         (math-format-bignum-hex, math-format-bignum-radix)
14371         (math-compute-max-digits): Declare as functions.
14372         (math-provably-realp): Fix typo.
14374         * calc/calc-forms.el (calendar-current-time-zone)
14375         (calendar-absolute-from-gregorian, dst-in-effect): Declare as
14376         functions.
14378         * calc/calc-help.el (Info-goto-node, Info-last): Declare as functions.
14380         * calc/calc-lang.el (math-read-factor, math-read-expr-level):
14381         Declare as functions.
14383         * calc/calc-macs.el (math-zerop, math-negp, math-looks-negp)
14384         (math-posp, math-compare, math-bignum, math-compare-bignum):
14385         Declare as functions.
14387         * calc/calc-misc.el (calc-do-keypad, calc-inv-hyp-prefix-help)
14388         (calc-inverse-prefix-help, calc-hyperbolic-prefix-help)
14389         (calc-explain-why, calc-clear-command-flag)
14390         (calc-roll-down-with-selections, calc-roll-up-with-selections)
14391         (calc-last-args, calc-is-inverse, calc-do-prefix-help)
14392         (math-objvecp, math-known-scalarp, math-vectorp, math-matrixp)
14393         (math-trunc-special, math-trunc-fancy, math-floor-special)
14394         (math-floor-fancy, math-square-matrixp, math-matrix-inv-raw)
14395         (math-known-matrixp, math-mod-fancy, math-pow-of-zero)
14396         (math-pow-zero, math-pow-fancy): Declare as functions.
14398         * calc/calc-mode.el (calc-embedded-save-original-modes):
14399         Declare as a function.
14401         * calc/calc-nlfit.el (calc-get-fit-variables, math-map-binop):
14402         Declare as functions.
14403         (math-nlfit-make-matrix, math-nlfit-find-qmax, math-nlfit-fit)
14404         (math-nlfit-fit-curve, calc-fit-hubbert-linear-curve):
14405         Replace `mapcar*' by `math-map-binop'.
14406         (math-nlfit-make-matrix): Replace `copy-list' with `copy-sequence'.
14408         * calc/calc-prog.el (edmacro-format-keys, edmacro-parse-keys)
14409         (math-read-expr-level): Declare as functions.
14411         * calc/calc-vec.el (math-read-expr-level): Declare as a function.
14413 2007-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14415         * emacs-lisp/lisp.el (end-of-defun): Restructure so that
14416         end-of-defun-function is called consistently, even for negative
14417         arguments.
14418         (end-of-defun-function): Default to forward-sexp.
14420 2007-11-26  Juanma Barranquero  <lekktu@gmail.com>
14422         * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
14424 2007-11-26  Glenn Morris  <rgm@gnu.org>
14426         * calendar/cal-menu.el (cal-menu-holidays-menu): Use :label rather
14427         than :suffix.
14429         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
14431 2007-11-26  Simon Josefsson  <simon@josefsson.org>
14433         * net/imap.el: Move from ../gnus.
14435 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14437         * doc-view.el (doc-view-mode-p): New function.
14439 2007-11-25  Dan Nicolaescu  <dann@ics.uci.edu>
14441         * mail/mspools.el (rmail-get-new-mail):
14442         * mail/reporter.el (mail-position-on-field, mail-text):
14443         * mail/rmail.el (mail-position-on-field, mail-text-start)
14444         (rmail-update-summary):
14445         * mail/rmailedit.el (rmail-summary-disable, rmail-summary-enable):
14446         * mail/rmailmsc.el (rmail-parse-file-inboxes, rmail-show-message):
14447         * mail/rmailout.el (rmail-update-summary):
14448         * mail/rmailsort.el (rmail-update-summary):
14449         * mail/sendmail.el (dired-move-to-filename, dired-get-filename)
14450         (dired-view-file):
14451         * mail/uce.el (mail-strip-quoted-names):
14452         * mail/undigest.el (rmail-update-summary):
14453         * mail/unrmail.el (mail-strip-quoted-names):
14454         * ediff.el (diff-latest-backup-file): Declare as functions.
14456         * obsolete/mlsupport.el (ml-previous-page): Fix typo.
14457         (kill-to-end-of-line):
14458         * obsolete/rnews.el (news-set-minor-modes):
14459         Remove non working functions.
14461 2007-11-25  Glenn Morris  <rgm@gnu.org>
14463         * eshell/esh-maint.el (top-level): Use require with NOERROR for
14464         pcomplete.  Don't mess with load-path.
14466         * eshell/eshell.el (eshell-report-bug-address): Remove.
14467         (eshell-report-bug): Redefine as an alias for report-emacs-bug.
14469 2007-11-24  Glenn Morris  <rgm@gnu.org>
14471         * calendar/appt.el: Remove leading `*' from defcustom doc-strings.
14472         (appt-disp-window): Don't require electric.
14473         Simplify minibuffer-avoidance code.
14474         (appt-select-lowest-window): Avoid minibuffer.
14476         * eshell/eshell.el: Remove leading `*' from defcustom doc-strings.
14477         (esh-mode): Require it.
14478         (esh-util): Use require rather than featurep and load.
14479         (eshell): No need to test if eshell-mode is bound; remove obsolete
14480         reference to eshell-auto.
14481         (eshell-command, eshell-command-result): Don't require esh-mode
14482         now that the file does.
14483         (top-level): Move provide statement to the end of the file.
14484         Re-order and update commentary.
14486 2007-11-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
14488         * vc.el (vc-annotate-mode): Frob buffer invisibility spec.
14489         (vc-annotate-toggle-annotation-visibility): New command.
14490         (vc-annotate-mode-map): Bind "V" to it.
14491         (vc-annotate-mode-menu): Add entry for it.
14492         (vc-annotate-get-time-set-line-props): New func.
14493         (vc-annotate-display-autoscale)
14494         (vc-annotate-display-difference): Use it.
14496         * vc-git.el (vc-git-annotate-time): Handle optional field FILENAME.
14497         Also, match one space at end of annotation text, after last paren.
14499 2007-11-24  Michael Albinus  <michael.albinus@gmx.de>
14501         * ido.el (ido-file-name-all-completions-1): Check for fboundp of
14502         `tramp-completion-mode-p' as it is in Tramp 2.1.  Let-bind
14503         `tramp-completion-mode'.
14505 2007-11-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
14507         * vc-git.el (vc-git-show-log-entry): New func.
14509         * vc-git.el (vc-git--call, vc-git--out-ok): New funcs.
14510         (vc-git-state): Use vc-git--call.
14511         (vc-git-registered, vc-git-working-revision)
14512         (vc-git-previous-revision, vc-git-next-revision)
14513         (vc-git--run-command-string, vc-git-symbolic-commit):
14514         Use vc-git--out-ok.
14516 2007-11-24  Glenn Morris  <rgm@gnu.org>
14518         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14520 2007-11-24  Kenichi Handa  <handa@m17n.org>
14522         * international/ucs-tables.el (ucs-8859-7-alist): Update the table.
14524 2007-11-23  David Kastrup  <dak@gnu.org>
14526         * server.el (server-process-filter): Use `command-line-args-left'.
14528 2007-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14530         * nxml/subdirs.el, nxml/char-data/subdirs.el, nxml/rng-auto.el: Remove.
14532 2007-11-23  Dan Nicolaescu  <dann@ics.uci.edu>
14534         * vc.el (vc-deduce-fileset): Also look for a fileset in the parent
14535         buffer if the parent buffer is in vc-dired-mode.
14537 2007-11-23  Mark A. Hershberger  <mah@everybody.org>
14539         * nxml: Initial merge of nxml.  Kept nxml/char-name subdir for now.
14541 2007-11-23  Juri Linkov  <juri@jurta.org>
14543         * dired.el (dired-read-dir-and-switches): For C-x d, set the
14544         value for M-n to the visited file name of the current buffer.
14545         Use minibuffer-with-setup-hook to set minibuffer-default to
14546         buffer-file-name inside read-file-name.
14548         * man.el (Man-getpage-in-background): Don't disregard user option
14549         `Man-width' on non-window systems.  Remove test for `window-system'
14550         around setting envvar "COLUMNS" depending on the value of `Man-width'.
14552         * progmodes/grep.el (grep-process-setup): Set envvar "TERM" to
14553         "emacs-grep".  Set envvar "GREP_OPTIONS" to "--color=auto" instead
14554         of "--color=always".
14556 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14558         * emacs-lisp/lisp.el (beginning-of-defun-raw): Pass `arg' down to
14559         beginning-of-defun-function.
14561 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14563         * mail/hashcash.el: Move from ../gnus.  Add hashcash payments to email.
14565 2007-11-22  Glenn Morris  <rgm@gnu.org>
14567         * emulation/cua-base.el (x-clipboard-yank): Fix declaration.
14569         * emacs-lisp/check-declare.el (check-declare-locate): New function.
14570         (check-declare-scan): Use check-declare-locate.
14571         (check-declare-verify): No longer adjust fnfile, now
14572         check-declare-locate does it.
14574         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14576 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14578         * subr.el (posn-col-row): Make the `default-value' use explicit.
14580         * window.el (balance-windows): Remove unused var `counter'.
14581         (bw-balance-sub): Remove unused var `lastchild'.
14582         (split-window-vertically): Remove unused var `switch'.
14583         (recenter-top-bottom): Remove unused vars `bottom', `current', `total'.
14585         * emacs-lisp/bytecomp.el
14586         (byte-compile-file-form-custom-declare-variable): Simplify.
14588 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14590         * cus-edit.el (custom-mode): Define with `define-derived-mode'.
14591         Set `show-trailing-whitespace' to nil.
14593         * dired.el (make-symbolic-link):
14594         * dired-aux.el (mailcap-parse-mailcaps, mailcap-parse-mimetypes)
14595         (mailcap-extension-to-mime, mailcap-mime-info, make-symbolic-link):
14596         * dired-x.el (make-symbolic-link):
14597         * frame.el (x-initialize-window-system):
14598         * menu-bar.el (x-menu-bar-open):
14599         * select.el (x-get-cut-buffer-internal, x-rotate-cut-buffers-internal)
14600         (x-store-cut-buffer-internal):
14601         * wdired.el (make-symbolic-link):
14602         * x-dnd.el (x-register-dnd-atom, x-get-atom-name)
14603         (x-send-client-message):
14604         * emulation/cua-base.el (x-clipboard-yank): Declare as functions.
14606 2007-11-22  Jan Djärv  <jan.h.d@swipnet.se>
14608         * term/x-win.el (x-gtk-map-stock): Check if FILE is a string.
14610 2007-11-22  Glenn Morris  <rgm@gnu.org>
14612         * dos-fns.el (int86):
14613         * term/mac-win.el (mac-font-panel-mode): Fix declarations.
14615         * calendar/cal-menu.el (cal-menu-holidays-menu): Fix holiday-list call.
14617         * calendar/holidays.el (holiday-list): Add autoload cookie.
14619         * emacs-lisp/check-declare.el (check-declare-scan): Expand .c
14620         files relative to src/ directory.
14621         (check-declare-verify): Handle .c files.  Warn if could not find
14622         an arglist to check.
14624         * emacs-lisp/byte-run.el (declare-function): Doc fix.
14626 2007-11-22  Dan Nicolaescu  <dann@ics.uci.edu>
14628         * replace.el (occur-mode-map): Add a major mode menu with entries
14629         for all occur operations.
14631         * international/titdic-cnv.el (dos-8+3-filename):
14632         * obsolete/fast-lock.el (msdos-long-file-names):
14633         * frame.el (msdos-mouse-p):
14634         * files.el (msdos-long-file-names, w32-long-file-name):
14635         * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14636         (mac-resume-apple-event, mac-font-panel-mode)
14637         (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14638         (mac-clear-font-name-table):
14639         * term/pc-win.el (msdos-remember-default-colors)
14640         (w16-set-clipboard-data, w16-get-clipboard-data):
14641         * term/w32-win.el (w32-send-sys-command, w32-select-font)
14642         (set-message-beep):
14643         * net/browse-url.el (w32-shell-execute):
14644         * w32-fns.el (set-message-beep, w32-get-clipboard-data)
14645         (w32-get-locale-info, w32-get-valid-locale-ids)
14646         (w32-set-clipboard-data):
14647         * dos-fns.el (int86, msdos-long-file-names):
14648         * dos-w32.el (default-printer-name): Declare as functions.
14650 2007-11-21  Jason Rumney  <jasonr@gnu.org>
14652         * emacs-lisp/byte-run.el (declare-function): Return nil.
14654 2007-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14656         * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp.
14658 2007-11-21  Juanma Barranquero  <lekktu@gmail.com>
14660         * w32-fns.el: Undo 2007-11-21 change by Dan Nicolaescu.
14662 2007-11-21  Glenn Morris  <rgm@gnu.org>
14664         * emacs-lisp/check-declare.el (check-declare-verify): Skip C files
14665         for now.  Handle define-minor-mode, and defalias (with no argument
14666         checking).
14668 2007-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
14670         * frame.el (msdos-mouse-p):
14671         * files.el (msdos-long-file-names, w32-long-file-name):
14672         * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14673         (mac-resume-apple-event, mac-font-panel-mode)
14674         (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14675         (mac-clear-font-name-table):
14676         * term/pc-win.el (msdos-remember-default-colors)
14677         (w16-set-clipboard-data, w16-get-clipboard-data):
14678         * term/w32-win.el (w32-send-sys-command, w32-select-font)
14679         (set-message-beep):
14680         * net/browse-url.el (w32-shell-execute):
14681         * dos-fns.el (int86, msdos-long-file-names):
14682         * dos-w32.el (default-printer-name): Undo previous change.
14684 2007-11-21  Eli Zaretskii  <eliz@gnu.org>
14686         * international/mule-cmds.el (set-locale-environment):
14687         Set default-file-name-coding-system _after_ keyboard and terminal
14688         coding systems.  This fixes last change.
14690         * mail/rmail.el (rmail-current-subject-regexp): Allow more than
14691         one space after "Subject:".
14693 2007-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14695         * pcvs-parse.el (cvs-parse-table): Ignore errors when looking up files
14696         in order to determine if there's a conflict.
14698 2007-11-21  Richard Stallman  <rms@gnu.org>
14700         * bindings.el (esc-map): Bind C-M-l here; moved from reposition.el.
14702         * reposition.el (reposition-window):
14703         Binding C-M-l moved to bindings.el.
14705         * bindings.el (ctl-x-4-map): Bind C-x 4 a here; moved from add-log.el.
14707         * add-log.el (add-change-log-entry-other-window):
14708         Key binding C-x 4 a moved to bindings.el.
14710         * bindings.el (minibuffer-local-map): Bind C-tab here; moved
14711         from filecache.el.
14713         * filecache.el: Minibuffer map bindings moved to bindings.el.
14715 2007-11-21  Jason Rumney  <jasonr@gnu.org>
14717         * international/mule-cmds.el (set-locale-environment):
14718         Set default-file-name-coding-system from system defaults on Windows.
14720 2007-11-21  Jason Rumney  <jasonr@gnu.org>
14722         * term/w32console.el: New term init file for w32 console.
14724         * w32-fns.el (x-alternatives-map): Copy from term/x-win.el.
14725         (x-setup-function-keys): Likewise, replacing top-level key definitions.
14726         (w32-tty-standard-colors): Move to term/w32console.el.
14728         * term/w32-win.el (x-setup-function-keys): Remove.
14730         * term/tty-colors.el (tty-register-default-colors): Remove special
14731         case for w32.
14733 2007-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
14735         * frame.el (msdos-mouse-p):
14736         * generic-x.el (w32-shell-name):
14737         * files.el (msdos-long-file-names, w32-long-file-name)
14738         (dired-get-filename, dired-unmark, dired-do-flagged-delete)
14739         (dos-8+3-filename, vms-read-directory, view-mode-disable):
14740         * term/mac-win.el (mac-code-convert-string, mac-coerce-ae-data)
14741         (mac-resume-apple-event, mac-font-panel-mode)
14742         (mac-atsu-font-face-attributes, mac-ae-set-reply-parameter)
14743         (mac-clear-font-name-table):
14744         * term/pc-win.el (msdos-remember-default-colors)
14745         (w16-set-clipboard-data, w16-get-clipboard-data):
14746         * term/w32-win.el (w32-send-sys-command, w32-select-font)
14747         (set-message-beep):
14748         * w32-fns.el (set-message-beep, w32-get-clipboard-data)
14749         (w32-get-locale-info, w32-get-valid-locale-ids)
14750         (w32-set-clipboard-data):
14751         * help-fns.el (ad-get-advice-info):
14752         * font-lock.el (fast-lock-after-fontify-buffer)
14753         (fast-lock-after-unfontify-buffer, fast-lock-mode)
14754         (lazy-lock-after-fontify-buffer)
14755         (lazy-lock-after-unfontify-buffer, lazy-lock-mode):
14756         * net/browse-url.el (w32-shell-execute):
14757         * dos-fns.el (int86, msdos-long-file-names):
14758         * dos-w32.el (default-printer-name): Declare as functions.
14760 2007-11-21  Juanma Barranquero  <lekktu@gmail.com>
14762         * textmodes/paragraphs.el (forward-sentence): Doc fix.
14763         Reported by Drew Adams <drew.adams@oracle.com>.
14765 2007-11-20  Jason Rumney  <jasonr@gnu.org>
14767         * term/w32-win.el (x-setup-function-keys): Protect against
14768         multiple calls on the same terminal.
14770 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
14772         * term/mac-win.el (x-setup-function-keys): Only setup
14773         local-function-key-map if it has not been setup already for the
14774         current frame.  Move the suspend-emacs processing here.
14776 2007-11-20  Juanma Barranquero  <lekktu@gmail.com>
14778         * progmodes/grep.el (xargs-program): New variable.
14779         (grep-compute-defaults): Use it.
14780         (grep-default-command): Doc fix.
14781         (grep, lgrep, rgrep): Reflow docstrings.
14783 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
14785         * vc.el (vc-find-revision): Set the parent buffer.
14786         Use when instead of if.
14788         * progmodes/python.el (info-lookup-maybe-add-help):
14789         * progmodes/ps-mode.el (doc-view-minor-mode):
14790         * mail/emacsbug.el (Info-menu, Info-goto-node):
14791         * emulation/viper-keym.el (viper-ex)
14792         (viper-normalize-minor-mode-map-alist, viper-set-mode-vars-for):
14793         * emulation/viper-cmd.el (widget-type, widget-button-press)
14794         (viper-set-hooks):
14795         * emacs-lisp/tcover-unsafep.el (unsafep-function):
14796         * emacs-lisp/tcover-ses.el (ses-set-curcell, ses-update-cells)
14797         (ses-load, ses-vector-delete, ses-create-header-string)
14798         (ses-read-cell, ses-read-symbol, ses-command-hook, ses-jump):
14799         * emacs-lisp/gulp.el (mail-subject, mail-send): Declare as functions.
14801 2007-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14803         * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo.
14805 2007-11-20  Glenn Morris  <rgm@gnu.org>
14807         * emacs-lisp/check-declare.el (check-declare-verify): Tweak regexp
14808         for end of function-name.  Handle define-derived-mode.
14810 2007-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
14812         * progmodes/idlw-help.el: Require browse-url unconditionally, it
14813         is available by default.
14814         (idlwave-help-browse-url-available): Change default to t.
14816         * emulation/edt.el (defgroup, defcustom): Remove definition.
14817         (eval-when-compile): Remove.
14818         (c-mark-function):
14819         * textmodes/reftex-dcr.el (bibtex-beginning-of-entry):
14820         * textmodes/fill.el (comment-search-forward)
14821         (comment-string-strip):
14822         * progmodes/prolog.el (comint-mode, comint-send-string)
14823         (comint-send-region, comint-send-eof):
14824         * progmodes/dcl-mode.el (imenu-default-create-index-function):
14825         * emulation/viper-util.el (viper-forward-Word):
14826         * emulation/vi.el (c-mark-function):
14827         * emulation/edt-vt100.el (vt100-wide-mode):
14828         * emacs-lisp/timer.el (diary-entry-time): Declare as functions.
14830 2007-11-19  Michael Albinus  <michael.albinus@gmx.de>
14832         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
14833         Still some tuning in case of an echoing shell.
14834         (tramp-send-command): Connection property "remote-echo" is not
14835         persistent; cache key is the process therefore.
14837 2007-11-19  Juanma Barranquero  <lekktu@gmail.com>
14839         * replace.el (map-query-replace-regexp): Doc fix (revert part of
14840         2000-05-21T17:04:47Z!fx@gnu.org made on 2000-05-21 with no ChangeLog entry).
14842 2007-11-19  Dan Nicolaescu  <dann@ics.uci.edu>
14844         * progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
14845         * play/yow.el (doctor-ret-or-read):
14846         * vc-hooks.el (vc-dired-resynch-file):
14847         * vc-hg.el (log-view-get-marked):
14848         * smerge-mode.el (ediff-cleanup-mess):
14849         * pcvs.el (vc-editable-p, vc-checkout):
14850         * pcomplete.el (comint-bol):
14851         * informat.el (texinfo-format-refill):
14852         * ido.el (tramp-tramp-file-p):
14853         * ibuffer.el (ibuffer-mark-on-buffer, ibuffer-format-qualifier)
14854         (ibuffer-generate-filter-groups, ibuffer-format-filter-group-data):
14855         * add-log.el (c-beginning-of-defun, c-end-of-defun): Declare as
14856         functions.
14858         * textmodes/ispell.el (ispell-int-char): Make it a defalias
14859         instead of fset.
14860         (ispell-message): Use with-no-warnings for sc-cite-regexp call.
14862         * ido.el (ido-file-internal): Move with-no-warnings to include the
14863         ffap-string-at-point call.
14865         * pcomplete.el (pcomplete-executables): Move defsubst before first use.
14867         * vc-hg.el (vc-hg-revision-table): Fix last change.
14869 2007-11-19  Martin Rudalics  <rudalics@gmx.at>
14871         * menu-bar.el (top-level): Deactivate clipboard-kill-region and
14872         clipboard-yank when the buffer is read-only.
14874         * cus-edit.el (custom-field-keymap): Move to other Custom mode
14875         keymaps such that it's before the definition of Custom-mode-menu.
14876         (Custom-mode-menu): Show it for custom-field-keymap too.
14878 2007-11-19  Nick Roberts  <nickrob@snap.net.nz>
14880         * progmodes/gdb-ui.el: Update commentary.
14882 2007-11-18  Dan Nicolaescu  <dann@ics.uci.edu>
14884         * net/tramp.el (tramp-terminal-type): Remove duplicated definition.
14886 2007-11-19  Glenn Morris  <rgm@gnu.org>
14888         * emacs-lisp/check-declare.el (check-declare-verify): If fnfile
14889         does not exist, try adding `.el' extension.  Also search for defsubsts.
14891         * cus-edit.el (recentf-expand-file-name):
14892         * dired.el (dired-relist-entry):
14893         * subr.el (w32-shell-dos-semantics):
14894         * emacs-lisp/bytecomp.el (compilation-forget-errors):
14895         Declare as functions.
14897 2007-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14899         * abbrev.el (kill-all-abbrevs, insert-abbrevs)
14900         (prepare-abbrev-list-buffer): Use dolist.
14901         (clear-abbrev-table): Preserve properties.
14903 2007-11-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>  (tiny change)
14905         * textmodes/texinfmt.el (texinfo-format-printindex):
14906         Collect combined indexes using texinfo-short-index-format-cmds-alist.
14907         Reported on <bug-texinfo@gnu.org>.
14909 2007-11-18  Michael Albinus  <michael.albinus@gmx.de>
14911         * net/tramp.el (tramp-completion-reread-directory-timeout):
14912         New defcustom.
14913         (tramp-handle-file-name-all-completions): Flush directory contents
14914         from cache regularly.
14915         (tramp-set-auto-save-file-modes): Check also for `buffer-modified-p'.
14916         (tramp-open-connection-setup-interactive-shell):
14917         Call `tramp-cleanup-connection' via funcall.
14919         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Temp file is already
14920         created when copying.
14922 2007-11-17  Dan Nicolaescu  <dann@ics.uci.edu>
14924         * eshell/esh-util.el (eshell-under-xemacs-p): Remove.
14925         * eshell/esh-mode.el (eshell-mode-syntax-table, command-running-p):
14926         * eshell/esh-ext.el (eshell-external-command):
14927         * eshell/esh-cmd.el (require):
14928         * eshell/em-unix.el (eshell-plain-locate-behavior):
14929         * eshell/em-cmpl.el (eshell-cmpl-initialize):
14930         Replace eshell-under-xemacs-p with (featurep 'xemacs).
14931         * eshell/esh-mode.el (characterp, char-int): Remove unused
14932         conditional defaliases.
14934         * pcomplete.el (pcomplete-event-matches-key-specifier-p):
14935         Rename from event-matches-key-specifier-p, define unconditionally.
14936         (event-basic-type): Remove unused defalias.
14937         (pcomplete-show-completions):
14938         Use pcomplete-event-matches-key-specifier-p.
14940 2007-11-17  Eli Zaretskii  <eliz@gnu.org>
14942         * eshell/esh-module.el (eshell-load-defgroups): Don't make backups
14943         when saving esh-groups.el.
14945 2007-11-17  Martin Rudalics  <rudalics@gmx.at>
14947         * wid-edit.el (widget-default-complete):
14948         * progmodes/flymake.el (flymake-goto-file-and-line):
14949         Fix typo in (doc-)string.
14951 2007-11-17  Glenn Morris  <rgm@gnu.org>
14953         * emacs-lisp/byte-run.el (declare-function): New macro.
14954         * emacs-lisp/bytecomp.el (byte-compile-declare-function):
14955         New function, byte-hunk-handler for declare-function.
14956         (byte-compile-callargs-warn): Handle declared functions.
14958         * emacs-lisp/check-declare.el: New file.
14959         * Makefile.in (check-declare): New target.
14961         * progmodes/fortran.el (gud-find-c-expr): Declare as a function.
14963         * subr.el (process-lines): Move here from ../admin/admin.el.
14964         * emacs-lisp/authors.el (authors-process-lines): Remove.
14965         (authors): Use process-lines rather than authors-process-lines.
14967         * progmodes/compilation-perl.el, progmodes/compilation-weblint.el:
14968         Remove these files.
14970 2007-11-17  Juanma Barranquero  <lekktu@gmail.com>
14972         * emacs-lisp/backquote.el (backquote):
14973         Improve argument/docstring consistency.
14975         * emacs-lisp/ring.el (ring-size, ring-p, ring-insert)
14976         (ring-length, ring-empty-p): Use c[ad]dr.
14977         (ring-plus1): Use `1+'.
14978         (ring-minus1): Use `zerop'.
14979         (ring-remove): Use c[ad]dr.  Use `when'.
14980         (ring-copy): Use c[ad]dr.  Use `let', not `let*'.
14981         (ring-ref): Use `let', not `let*'.
14982         (ring-insert-at-beginning): Use c[ad]dr.  Doc fix.
14983         (ring-insert+extend): Use c[ad]dr.  Fix typo in docstring.
14984         (ring-member): Simplify.  Doc fix.
14985         (ring-convert-sequence-to-ring): Simplify.
14987 2007-11-17  Juri Linkov  <juri@jurta.org>
14989         * dired-aux.el (dired-create-directory): Allow creating
14990         a directory of an arbitrary depth.  Add a loop to find the topmost
14991         nonexistent parent dir `new', and call `dired-add-file' on it.
14992         Set the `PARENTS' arg of `make-directory' to t.
14994 2007-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
14996         * calc/calc-aent.el (calc-last-user-lang-parse-table): New variable.
14997         (math-build-parse-table): Get parse information from math-parse-table.
14999 2007-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15001         * window.el (recenter-last-op): New var.
15002         (recenter-top-bottom): New command.
15003         (global-map): Bind it to C-l.
15005         * abbrev.el (abbrev--write): Fix error in transcription from C.
15007         * emulation/pc-select.el (pc-select-shifted-mark): Remove.
15008         (pc-select-ensure-mark): Set mark-active to a special value instead.
15009         Rename from ensure-mark.  Update call callers.
15010         (pc-select-maybe-deactivate-mark): Rename from maybe-deactivate-mark.
15011         Rewrite.  Update all callers.
15012         (pc-selection-mode): Remove redundant var declaration.
15014 2007-11-16  Tassilo Horn  <tassilo@member.fsf.org>
15016         * doc-view.el (doc-view-search-backward, doc-view-search):
15017         Fix assignment to free variable bug.
15019 2007-11-16  Martin Pohlack  <mp26@os.inf.tu-dresden.de>  (tiny change)
15021         * emulation/pc-select.el (pc-select-shifted-mark): New var.
15022         (ensure-mark): Set it.
15023         (maybe-deactivate-mark): New fun.
15024         Use it everywhere instead of (setq mark-active nil).
15026 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
15028         * textmodes/reftex-dcr.el (reftex-start-itimer-once):
15029         Add check for XEmacs.
15031         * calc/calc-menu.el (calc-mode-map): Pacify byte compiler.
15033         * doc-view.el (doc-view-resolution): Add missing :group.
15035 2007-11-16  Juanma Barranquero  <lekktu@gmail.com>
15037         * subr.el (make-variable-frame-local):
15038         Fix typo in obsolescence declaration.
15040 2007-11-16  Werner Lemberg  <wl@gnu.org>
15042         * files.el (set-auto-mode-1): Check second line for -*- if file
15043         starts with '\" (which is used by man pages to identify needed
15044         troff preprocessors).
15046 2007-11-16  Glenn Morris  <rgm@gnu.org>
15048         * mail/mail-extr.el (mail-extr-all-top-level-domains): Update domains.
15050 2007-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
15052         * calc/calc-lang.el (math-oper-table): Fix typo.
15053         Reduce precedence of "/" for TeX.
15055         * calc/calc-menu.el (calc-modes-menu): Add Languages submenu.
15057 2007-11-16  Juri Linkov  <juri@jurta.org>
15059         * dired-aux.el (dired-read-shell-command-default): New function.
15060         (dired-read-shell-command): Use its return value for DEFAULT arg.
15062         * replace.el (keep-lines-read-args, occur-read-primary-args):
15063         Use a list of default values for DEFAULT arg of read-from-minibuffer.
15065         * man.el (Man-heading-regexp): Add 0-9.
15066         (Man-first-heading-regexp): Remove leading space [ \t]* before NAME.
15068 2007-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15070         * doc-view.el (doc-view-ghostscript-options): Remove resolution arg.
15071         (doc-view-resolution): New custom var.
15072         (doc-view-pdf/ps->png): Use it.
15073         (doc-view-shrink-factor): New var.
15074         (doc-view-enlarge, doc-view-shrink): New commands.
15075         (doc-view-mode-map): Use them.
15077 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
15079         * ediff-wind.el (ediff-window-setup-function):
15080         * simple.el (normal-erase-is-backspace):
15081         * eshell/em-unix.el (eshell/info):
15082         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
15083         Fix typos in docstrings.
15085         * emulation/cua-base.el (cua--keymaps-initialized):
15086         Rename from `cua--keymaps-initalized'.  Callers changed.
15087         (cua-highlight-region-shift-only): Doc fix.
15088         (cua-paste-pop): Fix typo in docstring.
15090 2007-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15092         * emulation/cua-base.el (cua--pre-command-handler-1):
15093         Use input-decode-map instead of function-key-map.
15094         Use event-modifiers now that it works reliably.
15096         * vc.el (vc-diff-internal): Pop-to-buffer later.
15098         * subr.el (event-modifiers): Use internal-event-symbol-parse-modifiers.
15100         * pcvs.el (cvs-revert-if-needed): Ignore `unknown' files, since cvs
15101         did not touch them.
15103 2007-11-15  Jay Belanger  <jay.p.belanger@gmail.com>
15105         * calc/calc-menu.el: New file.
15106         * calc/calc.el (calc-mode): Require calc-menu.
15108 2007-11-14  Juanma Barranquero  <lekktu@gmail.com>
15110         * isearch-multi.el (isearch-buffers-next-buffer-function): Doc fix.
15112 2007-11-14  Nick Roberts  <nickrob@snap.net.nz>
15114         * progmodes/gdb-ui.el (gdb-parent-bptno-enabled): New variable.
15115         (gdb-breakpoint-regexp, gdb-mouse-toggle-breakpoint-margin)
15116         (gdb-mouse-toggle-breakpoint-fringe, gdb-delete-breakpoint)
15117         (gdb-goto-breakpoint): Generalise for breakpoints with multiple
15118         locations.
15119         (gdb-info-breakpoints-custom, gdb-assembler-custom)
15120         (gdb-toggle-breakpoint): Update for new gdb-breakpoint-regexp.
15121         (gdb-put-breakpoint-icon): Only display icon for parent breakpoint.
15123 2007-11-13  Noah Friedman  <friedman@splode.com>
15125         * calc/calc.el: Add `backward-delete-char-untabify' to the list of
15126         bindings to remap when `calc-scan-for-dels' is non-nil.
15128 2007-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15130         * emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
15131         constant forms.
15132         (byte-compile-nilconstp): New function.
15133         (byte-optimize-cond): Kill subsequent branches when a branch is
15134         know to be taken or not taken.
15135         (byte-optimize-if): Use byte-compile-nilconstp instead of hand coding.
15137 2007-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
15139         * vc.el (vc-register): Allow registering a file passed as a
15140         parameter instead of just the current buffer.
15142 2007-11-12  Michael Albinus  <michael.albinus@gmx.de>
15144         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
15145         Check whether the output of "uname -sr" has been changed.
15147 2007-11-12  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15149         * progmodes/compile.el (compilation-error-regexp-alist-alist): Insert
15150         patterns from compilation-perl.el and compilation-weblint.el files.
15152 2007-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
15154         * progmodes/compilation-perl.el:
15155         * progmodes/compilation-weblint.el: Disable autoloads, they cause
15156         a bootstrap failure.
15158         * vc-cvs.el (vc-cvs-diff): If backup files exist, diff them
15159         instead of doing "cvs diff" in order to avoid accessing the repository.
15161 2007-11-12  Kevin Ryde  <user42@zip.com.au>
15163         * progmodes/compilation-perl.el:
15164         * progmodes/compilation-weblint.el: New files.
15166 2007-11-11  Juanma Barranquero  <lekktu@gmail.com>
15168         * international/iso-cvt.el (iso-translate-conventions): Doc fix.
15169         (iso-aggressive-german-trans-tab, iso-conservative-german-trans-tab)
15170         (iso-tex2iso-trans-tab, iso-gtex2iso-trans-tab): Reflow docstring.
15171         (iso-spanish, iso-german, iso-iso2tex, iso-tex2iso, iso-gtex2iso)
15172         (iso-iso2gtex, iso-iso2duden, iso-iso2sgml, iso-sgml2iso):
15173         Rewrite in active voice.
15175 2007-11-11  Tassilo Horn  <tassilo@member.fsf.org>
15177         * doc-view.el: Add comments about isearch support.
15179 2007-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
15181         * vc.el (vc-start-entry): Fix setting the in the case the function
15182         is called from vc-dired.  Use when instead of if where appropriate.
15184 2007-11-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15186         * ps-print.el (ps-do-despool): Do not force ps-lpr-switches
15187         to be a list.
15188         (ps-begin-job): Error if ps-lpr-switches is not a list.
15190 2007-11-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15192         * faces.el (face-normalize-spec): Remove function.
15193         (frame-set-background-mode): Undo last change.
15195 2007-11-10  Jason Rumney  <jasonr@gnu.org>
15197         * w32-fns.el: Sync charset names with setup-default-fontset.
15198         Append "-1" where second part missing.
15200 2007-11-10  Juri Linkov  <juri@jurta.org>
15202         * isearch.el (isearch-mode-end-hook, isearch-mode-end-hook-quit):
15203         Fix docstring.  Reported by Leo <sdl.web@gmail.com>.
15205         * custom.el (custom-note-var-changed): Remove the `interactive'
15206         spec from this new non-interactive function.
15208 2007-11-10  Tassilo Horn  <tassilo@member.fsf.org>
15210         * doc-view.el (doc-view-mode-map, doc-view-menu)
15211         (doc-view-pdf->txt-sentinel): Adapt to new search UI.
15212         (doc-view-search-backward): New function.
15213         (doc-view-search): Query new regexp if prefix arg is given, else
15214         jump to next/previous match.
15215         (doc-view-mode): Handle compressed files.
15216         (jka-compr): Required for compressed files.
15218 2007-11-10  Paul Pogonyshev  <pogonyshev@gmx.net>
15220         * replace.el (query-replace-show-replacement): New defcustom.
15221         (perform-replace): Use `match-substitute-replacement' if
15222         `query-replace-show-replacement' is non-nil.
15224 2007-11-10  David Kastrup  <dak@gnu.org>
15226         * subr.el (match-substitute-replacement): New function.
15228 2007-11-10  Carsten Dominik  <dominik@science.uva.nl>
15230         * files.el (auto-mode-alist): Select org-mode for files with the
15231         extension ".org".
15233 2007-11-10  Martin Rudalics  <rudalics@gmx.at>
15235         * help.el (help-window, help-window-point-marker): New variables.
15236         (help-window-select): New option.
15237         (with-help-window): New macro for displaying help windows.
15238         (help-window-display-message, help-window-setup-finish)
15239         (help-window-setup): New functions used for setting up help windows.
15240         (print-help-return-message): Reset help-window to nil.
15241         (view-lossage): Use with-help-window instead of
15242         with-output-to-temp-buffer and move help-window-point-marker after
15243         inserted text.
15244         (describe-bindings, describe-key, describe-mode): Use
15245         with-help-window instead of with-output-to-temp-buffer.
15247         * help-mode.el (help-mode): Set view-exit-action to bury the
15248         buffer instead of fiddling with windows.  Simplify code.
15249         (help-mode-finish): When help-window eqs t set it to the selected
15250         window and have with-help-window set up view-return-to-alist.
15251         (help-buffer): Add autoload cookie.
15253         * view.el (view-remove-frame-by-deleting): Change default value to t.
15254         Add autoload cookie.
15255         (view-exit-action, view-file, view-file-other-window)
15256         (view-file-other-frame, view-buffer, view-buffer-other-window)
15257         (view-buffer-other-frame): Rewrite doc strings.
15258         (view-return-to-alist-update): New function to remove stale entries
15259         from view-return-to-alist.
15260         (view-mode-enter): Rewrite doc string and simplify code.
15261         (view-mode-exit): Handle new case 'keep-frame.  Don't reset
15262         view-exit-action to nil.  Simplify code and rewrite doc string.
15264         * apropos.el (apropos-describe-plist):
15265         * descr-text.el (describe-char):
15266         * disp-table.el (describe-display-table):
15267         * faces.el (list-faces-display, describe-face):
15268         * facemenu.el (list-colors-display):
15269         * help-fns.el (describe-function, describe-variable)
15270         (describe-syntax, describe-categories):
15271         Use with-help-window instead of with-output-to-temp-buffer.
15273 2007-11-10  Dan Nicolaescu  <dann@ics.uci.edu>
15275         * emacs-lisp/byte-opt.el (byte-optimize-featurep):
15276         Optimize (featurep 'emacs) to t.
15278         * emacs-lisp/bytecomp.el (byte-compile-find-bound-condition):
15279         New function.
15280         (byte-compile-maybe-guarded): Use it to also look for bound
15281         symbols inside `and' forms.  Comment out non-working code that was
15282         trying to avoid warnings for XEmacs code.
15284         * vc.el (vc-diff-internal): Make the *vc-diff* buffer read only.
15286         * vc-svn.el (vc-svn-print-log, vc-svn-diff):
15287         * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-annotate-command):
15288         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff)
15289         (vc-cvs-annotate-command):
15290         * vc-arch.el (vc-arch-diff): Remove test to check if start-process
15291         is bound, it always is.
15293 2007-11-10  Jason Rumney  <jasonr@gnu.org>
15295         * term/w32-win.el (w32-initialize-window-system): Move SJIS font
15296         setup here from global scope.
15298 2007-11-10  Juanma Barranquero  <lekktu@gmail.com>
15300         * ido.el (ido-save-history): Save the history file in UTF-8, not
15301         the current filename coding system.
15303 2007-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15305         * simple.el (interprogram-cut-function, interprogram-paste-function):
15306         Don't make them frame-local any more.
15308         * faces.el (x-create-frame-with-faces, tty-create-frame-with-faces):
15309         Don't set interprogram-(cut|paste)-function on each frame.
15311         * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
15312         Make them work in tty frames.
15313         (interprogram-cut-function, interprogram-paste-function):
15314         Set them globally.
15316 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15318         * international/iso-cvt.el (iso-spanish, iso-german, iso-iso2tex)
15319         (iso-tex2iso, iso-gtex2iso, iso-iso2gtex, iso-iso2duden): Doc fixes.
15320         (iso-iso2duden-trans-tab): Add docstring.
15322 2007-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15324         * abbrev.el (define-abbrev-table): Record the variable definition.
15326         * emacs-lisp/bytecomp.el (byte-compile-file-form-define-abbrev-table):
15327         New function.
15329 2007-11-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
15331         * ps-print.el: Clean the code for checking suitable Emacs version.
15332         (ps-do-despool): If ps-lpr-switches is not a list, force it to be one.
15333         (ps-print-version): New version 6.8.1.
15335 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15337         * files.el (enable-local-variables): Doc fix.
15339 2007-11-09  Nick Roberts  <nickrob@snap.net.nz>
15341         * progmodes/gud.el (gud-gdb): Remove vestigial gdba doc and code.
15343 2007-11-09  Sven Joachim  <svenjoac@gmx.de>
15345         * dired-aux.el (dired-copy-file-recursive):
15346         Preserve directory permissions.
15348 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15350         * whitespace.el (whitespace-write-file-hook): Remove interactive spec.
15351         (whitespace-unload-function): New-style unload function.  When run,
15352         unintern `whitespace-unload-hook' and call `unload-feature' recursively
15353         to stop the old hook from messing with the unloading.
15355 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15357         * emacs-lisp/elp.el (elp-report-limit, elp-restore-all)
15358         (elp-unset-master, elp-results): Fix typos.
15359         (elp-sort-by-function, elp-use-standard-output, elp-recycle-buffers-p):
15360         Doc fixes.
15362         * msb.el (msb--many-menus): Remove variable.
15363         (msb-max-menu-items, msb--add-to-menu): Doc fixes.
15364         (msb-menu-cond, msb-item-handling-function, msb--create-function-info)
15365         (msb--toggle-menu-type): Fix typos in docstrings.
15367         * shadowfile.el (shadow-inhibit-overload, shadow-remove-from-todo)
15368         (shadow-insert-var): Doc fixes.
15369         (shadow-file-match, shadow-define-cluster, shadow-define-regexp-group):
15370         Reflow docstrings.
15371         (shadow-parse-fullname, shadow-read-files): Fix typos in docstrings.
15373 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15375         * ediff-hook.el (ediff, ediff-files, ediff-buffers, ebuffers, ediff3)
15376         (ediff-files3, ediff-buffers3, ebuffers3, erevision, ediff-revision):
15377         Fix typos in autoload docstrings.
15379 2007-11-09  Richard Stallman  <rms@gnu.org>
15381         * savehist.el (savehist-save): Obey savehist-ignored-variables.
15383 2007-11-09  Nick Roberts  <nickrob@snap.net.nz>
15385         * progmodes/gdb-ui.el (gdb-delete-out-of-scope): New option.
15386         (gdb-var-update-handler-1): Use it.
15388 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15390         * loadhist.el (unload-feature): Remove erroneous check for the
15391         FEATURE-unload-function variable; check the existence of the
15392         function (that's what the docstring says, and it makes more sense).
15394         * follow.el (follow-unload-function): Add docstring.
15395         (follow-unload-function): Remove variable.
15397         * server.el (server-unload-function): Remove variable.
15398         (server-unload-function): Unbind `server-edit' from `C-x #'.
15400         * ses.el (ses-unload-function): New function.
15402 2007-11-09  Juanma Barranquero  <lekktu@gmail.com>
15404         * emacs-lisp/unsafep.el (unsafep, unsafep-function)
15405         (unsafep-progn, unsafep-let): Fix typos in docstrings.
15407         * uniquify.el (uniquify-maybe-rerationalize-w/o-cb): Define it
15408         before use to avoid a warning in packages that require uniquify.
15409         (uniquify-unload-function): New function and var.
15411 2007-11-09  Dan Nicolaescu  <dann@ics.uci.edu>
15413         * ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
15414         (ediff-has-face-support-p, ediff-BAD-INFO, ediff-check-version)
15415         (ediff-current-diff-A, ediff-current-diff-B)
15416         (ediff-current-diff-C, ediff-fine-diff-C, ediff-fine-diff-A)
15417         (ediff-fine-diff-B, ediff-fine-diff-Ancestor, ediff-even-diff-A)
15418         (ediff-even-diff-B, ediff-even-diff-C, ediff-even-diff-Ancestor)
15419         (ediff-odd-diff-A, ediff-odd-diff-B, ediff-odd-diff-C)
15420         (ediff-odd-diff-Ancestor, ediff-reset-mouse):
15421         * ediff-wind.el (ediff-narrow-control-frame-leftward-shift)
15422         (ediff-setup-windows-plain-merge)
15423         (ediff-setup-windows-plain-compare, ediff-setup-control-frame)
15424         (ediff-refresh-control-frame, ediff-get-visible-buffer-window):
15425         * ediff-util.el (ediff-setup-keymap, )
15426         (ediff-toggle-wide-display, ediff-toggle-multiframe)
15427         (ediff-toggle-use-toolbar, ediff-really-quit)
15428         (ediff-good-frame-under-mouse)
15429         (ediff-highlight-diff-in-one-buffer)
15430         (ediff-remove-flags-from-buffer, ediff-place-flags-in-buffer1)
15431         (ediff-make-bullet-proof-overlay):
15432         * ediff-mult.el (ediff-setup-meta-map, ediff-emacs-p)
15433         (ediff-set-meta-overlay):
15434         * ediff-help.el (ediff-help-region-map, ediff-set-help-overlays):
15435         * ediff.el (ediff-documentation): Replace ediff-xemacs-p and
15436         ediff-emacs-p with their former definitions.
15438         * emulation/viper-init.el (viper-xemacs-p, viper-emacs-p): Remove.
15439         (viper-has-face-support-p, viper-inactivate-input-method)
15440         (viper-activate-input-method)
15441         (viper-use-replace-region-delimiters, viper-restore-cursor-type):
15442         * emulation/viper-mous.el (viper-multiclick-timeout)
15443         (viper-surrounding-word, viper-mouse-click-insert-word)
15444         (viper-mouse-click-search-word, viper-parse-mouse-key):
15445         * emulation/viper-macs.el (viper-char-array-to-macro):
15446         * emulation/viper.el (viper-go-away, viper-set-hooks)
15447         (viper-non-hook-settings):
15448         * emulation/viper-util.el (viper-get-saved-cursor-color-in-replace-mode)
15449         (viper-get-saved-cursor-color-in-insert-mode)
15450         (viper-get-saved-cursor-color-in-emacs-mode)
15451         (viper-check-version, viper-get-visible-buffer-window)
15452         (viper-file-checked-in-p, viper-set-replace-overlay)
15453         (viper-set-replace-overlay-glyphs, viper-set-minibuffer-overlay)
15454         (viper-check-minibuffer-overlay, viper-read-key-sequence)
15455         (viper-key-to-emacs-key): Replace viper-xemacs-p and viper-emacs-p
15456         with their former definitions.
15457         (viper-eventify-list-xemacs): Only do work for XEmacs.
15458         (viper-set-unread-command-events): Only do work for Emacs.
15459         (viper-overlay-p, viper-make-overlay, viper-overlay-live-p)
15460         (viper-move-overlay, viper-overlay-start, viper-overlay-end)
15461         (viper-overlay-get, viper-overlay-put, viper-read-event)
15462         (viper-characterp, viper-int-to-char, viper-get-face)
15463         (viper-color-defined-p, viper-iconify): New defaliases replacing
15464         the old fsets.
15466         * progmodes/fortran.el (comment-region-function)
15467         (uncomment-region-function): Pacify byte compiler.
15469         * vc.el (vc-diff-internal): Remove code for an old version of gnus.
15471 2007-11-08  Michael Albinus  <michael.albinus@gmx.de>
15473         * net/tramp.el (tramp-maybe-open-connection): Use a local copy of
15474         `process-environment'.
15476 2007-11-08  David Hansen  <david.hansen@gmx.net>  (tiny change)
15478         * eshell/em-dirs.el (eshell-expand-multiple-dots): Change regexp to
15479         match dir like "a...b".
15481 2007-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15483         * smerge-mode.el (smerge-refine-subst): Pass "-d" to diff.
15485 2007-11-07  Michael Albinus  <michael.albinus@gmx.de>
15487         * net/tramp.el (tramp-handle-substitute-in-file-name):
15488         Don't expand the remote connection identification.
15489         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15490         Set also $PS2 and $PS3 when setting $PS1.  Check for shell echoing
15491         before calling stty.
15493         * net/tramp-cache.el (tramp-cache-print)
15494         (tramp-dump-connection-properties): Fix docstring.
15495         (tramp-list-connections): Rename from `tramp-cache-list-connections'.
15497         * net/tramp-cmds.el (tramp-cleanup-connection): Apply it.
15499         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Don't expand the
15500         remote connection identification when setting connection property.
15502         * net/tramp-smb.el (tramp-smb-handle-substitute-in-file-name):
15503         "//" substitutes only in the local filename part.
15505 2007-11-07  David Hansen  <david.hansen@gmx.net>
15507         * eshell/em-glob.el (eshell-extended-glob): Sort matches.
15509 2007-11-07  Glenn Morris  <rgm@gnu.org>
15511         * emulation/tpu-mapper.el (tpu-map-key): Use unless rather than cond.
15512         Remove superfluous concats.  Move final set-buffer to
15513         non-emacs-specific code.
15515 2007-11-07  Rob Riepel  <riepel@networking.stanford.edu>
15517         * emulation/tpu-mapper.el (tpu-map-key): Remove un-needed cond branch.
15519 2007-11-07  Johan Bockgård  <bojohan@gnu.org>
15521         * eshell/esh-mode.el (eshell-output-filter):
15522         * eshell/esh-proc.el (eshell-insertion-filter, eshell-sentinel):
15523         Use `with-current-buffer'.
15525 2007-11-07  Andreas Schwab  <schwab@suse.de>
15527         * server.el (server-start): Only register cleanup after server was
15528         started.
15530 2007-11-06  Michael Albinus  <michael.albinus@gmx.de>
15532         * net/tramp.el (top): Don't autoload `tramp-cache-print'.
15534         * net/tramp-cache.el (tramp-cache-print): Move down.
15535         (tramp-cache-list-connections): New defun.
15537         * net/tramp-cmds.el (tramp-cleanup-connection): Use it.
15539 2007-11-06  Juanma Barranquero  <lekktu@gmail.com>
15541         * ido.el (ido-save-history): Write the history file in the current
15542         filename coding system, and add `coding' file-local variable.
15544 2007-11-06  Carsten Dominik  <dominik@science.uva.nl>
15546         * textmodes/org.el (org-table-formula-substitute-names):
15547         Remove forgotten temporary debugging code.
15549 2007-11-05  Michael Albinus  <michael.albinus@gmx.de>
15551         * net/tramp.el (tramp-wait-for-output): Ignore escape sequences in
15552         the prompt.
15554 2007-10-05  Chris Moore  <christopher.ian.moore@gmail.com>
15556         * wdired.el (wdired-use-dired-vertical-movement): Doc fix.
15558 2007-11-05  Simon Josefsson  <simon@josefsson.org>
15560         * net/tls.el (tls-end-of-info): Doc fix.
15562 2007-11-05  Kenichi Handa  <handa@ni.aist.go.jp>
15564         * international/utf-7.el (utf-7-imap): New coding system.
15565         (utf-7-imap-post-read-conversion): New function.
15566         (utf-7-imap-pre-write-conversion): New function.
15568 2007-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15570         * abbrev.el (abbrev--write): Fix up typo.
15572 2007-11-04  Juanma Barranquero  <lekktu@gmail.com>
15574         * abbrev.el (define-abbrev-table): Doc fix.
15576 2007-11-04  Thien-Thi Nguyen  <ttn@gnuvola.org>
15578         * info.el (Info-revert-buffer-function): New func.
15579         (Info-mode): Arrange to use it for reverting.
15580         (Info-copy-current-node-name): Add space between filename and nodename.
15582 2007-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15584         * abbrev.el (expand-abbrev): Move point back to expansion's end.
15586 2007-11-04  Glenn Morris  <rgm@gnu.org>
15588         * net/tls.el: Don't require rx when compiling.
15589         (tls-end-of-info): Rewrite without using rx.
15590         (open-tls-stream): Use with-current-buffer.
15592 2007-11-04  Riccardo Murri  <riccardo.murri@gmail.com>
15594         * net/tls.el: Require rx when compiling.
15595         (tls-end-of-info): New variable.
15596         (open-tls-stream): Keep reading input until `tls-end-of-info' is
15597         matched.
15599 2007-11-03  Sean O'Rourke  <seano@cs.ucla.edu>
15601         * register.el (append-to-register, prepend-to-register):
15602         Don't signal error on empty register; use the text, instead.
15604 2007-11-03  Michael Olson  <mwolson@gnu.org>
15606         * textmodes/remember.el (remember-buffer):
15607         Use define-obsolete-function-alias rather than defalias.
15609 2007-11-03  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
15611         * simple.el (bad-packages-alist): Anchor semantic regexp.
15613 2007-11-03  Glenn Morris  <rgm@gnu.org>
15615         * newcomment.el (comment-dwim): Call comment-insert-comment-function,
15616         if defined, for blank lines.  Doc fix.
15618         * progmodes/fortran.el (fortran-mode-map): Don't bind M-;.
15619         (fortran-mode): Set values for comment-region-function,
15620         uncomment-region-function and comment-insert-comment-function.
15621         (fortran-uncomment-region): New function.
15623         * textmodes/nroff-mode.el (nroff-mode):
15624         Set comment-insert-comment-function rather than indent-line-function.
15625         (nroff-indent-line-function): Remove.
15626         (nroff-insert-comment-function): New function.
15628 2007-11-02  Michael Kifer  <kifer@cs.stonybrook.edu>
15630         * ediff-vers.el (ediff-vc-working-revision): Add a quote.
15632 2007-11-02  Michael Kifer  <kifer@cs.stonybrook.edu>
15634         * emulation/viper-ex.el (viper-ex): Do not ignore the region.
15636         * emulation/viper-cmd.el (viper-prev-destructive-command)
15637         (viper-insert-prev-from-insertion-ring): Use ring-copy instead of
15638         copy-sequence.
15640         * ediff-util.el (ediff-make-current-diff-overlay): Do not use face-name.
15641         Got rid of ediff-copy-list.
15643         * ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer): Do not
15644         use face-name.
15645         (ediff-test-utility, ediff-diff-mandatory-option)
15646         (ediff-reset-diff-options): Remove to simplify the mandatory option
15647         handling on Windows.
15648         (ediff-set-diff-options): Add.
15649         (ediff-diff-options): Set "--binary" option as default in some cases.
15651         * ediff-vers.el (ediff-vc-internal): Use ediff-vc-revision-other-window.
15652         (ediff-vc-merge-internal): Use ediff-vc-revision-other-window and
15653         ediff-vc-working-revision.  Require vc-hooks.
15655 2007-11-02  Drake Wilson  <drake@begriffli.ch>  (tiny change)
15657         * files.el (hack-local-variables): Fix membership tests to avoid
15658         treating all variables as safe if `enable-local-variables' is
15659         set to :safe (CVE-2007-5795).
15661 2007-11-02  Glenn Morris  <rgm@gnu.org>
15663         * newcomment.el (comment-indent): Let comment-insert-comment-function,
15664         if defined, do all the work of inserting a new comment.
15666         * progmodes/etags.el (tags-table-mode): Disable undo.
15668         * simple.el (bad-packages-alist): Revert previous change.
15670 2007-11-02  Dan Nicolaescu  <dann@ics.uci.edu>
15672         * emacs-lisp/lselect.el: Move to obsolete/lselect.el.
15674         * obsolete/lselect.el: Do not warn about unknown functions.
15676 2007-11-02  Michael Olson  <mwolson@gnu.org>
15678         * textmodes/remember.el (remember-buffer): Make this an alias of
15679         remember-finalize, because Org uses it.
15681 2007-11-01  Michael Olson  <mwolson@gnu.org>
15683         * textmodes/remember.el: Improve documentation in heading.
15684         (remember-before-remember-hook): Turn into a customizable option.
15685         (remember): Document INITIAL argument.
15686         (remember-region): Remove autoload cookie.  Improve docstring to
15687         mention that it is called from the *Remember* buffer, and does not
15688         have any functional overlap with the `remember' function.
15689         (remember-finalize): Remove autoload cookie.  Rename from
15690         remember-buffer to emphasize that this does not have any
15691         functional overlap with the `remember' function.
15692         (remember-destroy): Remove autoload cookie.
15693         (remember-mode-map): Define and initialize in one step.
15694         (remember-mode): Improve docstring.
15695         (remember-annotation-functions): Default to just '(buffer-file-name),
15696         and don't try to take the default value from Planner.
15698 2007-11-01  Glenn Morris  <rgm@gnu.org>
15700         * doc-view.el (doc-view-cache-directory): Remove superfluous concat.
15702         * simple.el (bad-packages-alist): Add an entry for standalone vc-svn.
15704         * emacs-lisp/authors.el (authors-scan-change-log)
15705         (authors-scan-el): Don't enable local eval; enable only safe local
15706         variables, without querying.
15708         * mail/footnote.el (footnote-numeric-regexp)
15709         (footnote-english-upper-regexp, footnote-english-lower-regexp)
15710         (footnote-roman-lower-regexp, footnote-roman-upper-regexp):
15711         Match multi-character footnotes.
15713         * textmodes/nroff-mode.el (nroff-mode): Set indent-line-function.
15714         (nroff-indent-line-function): New function.
15715         (nroff-count-text-lines): Use nroff-forward-text-line rather than
15716         obsolete alias.
15718 2007-11-01  Ryan Yeske  <rcyeske@gmail.com>
15720         * net/rcirc.el (rcirc-last-quit-line, rcirc-last-line)
15721         (rcirc-elapsed-lines): New argument PROCESS.  Update callers.
15722         (rcirc-print): Only update the line count when not marking the
15723         line as omittable.
15724         (rcirc-log-write): Specify coding system when writing logfile.
15725         (rcirc-markup-fill): Make sure ellipsis does not cause line to wrap.
15727 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
15729         * printing.el (printing): Fix :version, printing.el was included
15730         for in emacs-22.1.
15731         (pr-path-style, pr-path-alist, pr-txt-name)
15732         (pr-txt-printer-alist, pr-ps-name, pr-ps-printer-alist)
15733         (pr-temp-dir, pr-ps-temp-file, pr-file-modes, pr-gv-command)
15734         (pr-gs-command, pr-gs-switches, pr-gs-device, pr-gs-resolution)
15735         (pr-print-using-ghostscript, pr-file-tumble, pr-auto-region)
15736         (pr-auto-mode, pr-mode-alist, pr-ps-utility)
15737         (pr-ps-utility-alist, pr-menu-char-height, pr-menu-char-width)
15738         (pr-setting-database, pr-visible-entry-list)
15739         (pr-delete-temp-file, pr-list-directory, pr-buffer-name)
15740         (pr-buffer-name-ignore, pr-buffer-verbose): Remove incorrect :version.
15742         * ediff-util.el (ediff-nuke-selective-display): Move definition to
15743         top level, make it dependent on the emacs flavor.
15745         * play/gamegrid.el (gamegrid-kill-timer, gamegrid-start-timer):
15746         Test for XEmacs not for itimer.
15748         * term/sun-mouse.el:
15749         * obsolete/sun-fns.el:
15750         * obsolete/sun-curs.el: Remove files.
15752         * term/sun.el (select-previous-complex-command): Remove obsolete code.
15754 2007-10-31  Tassilo Horn  <tassilo@member.fsf.org>
15756         * doc-view.el (doc-view-cache-directory): Fix bug where an integer
15757         was given to concat.
15759 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
15761         * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
15762         used normally for goto-line.  Change `g' to revert the buffer.
15763         Add redundant `r' binding for buffer-revert.
15765         * mail/mailabbrev.el (mail-abbrevs-mode): Use define-minor-mode.
15766         (mail-abbrevs-setup): Use abbrev-expand-functions.
15767         (build-mail-abbrevs): Use with-temp-buffer.
15768         (define-mail-abbrev): Simplify.
15769         (mail-abbrev-expand-wrapper): Rename sendmail-pre-abbrev-expand-hook.
15770         Change it for use on abbrev-expand-functions.
15771         (mail-abbrev-complete-alias): Use with-syntax-table.
15773 2007-10-31  Michael Albinus  <michael.albinus@gmx.de>
15775         * net/tramp.el (tramp-handle-shell-command): Call `start-file-process'
15776         directly.  Fix bug in deleting temp file.
15778 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
15780         * progmodes/python.el (python-mode-abbrev-table): Use :regexp.
15781         Merge defvar and define-abbrev-table.
15782         (def-python-skeleton): Use :case-fixed and :enable-function.
15783         (python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook):
15784         Remove.
15785         (python-mode): Don't modify pre-abbrev-expand-hook.
15787 2007-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
15789         * ediff-util.el (ediff-file-checked-out-p)
15790         (ediff-file-checked-in-p): Only call vc-locking-user for XEmacs.
15792 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
15794         * abbrev.el (abbrev-symbol): Correct let->let*.
15795         (abbrev--before-point): Only use abbrev-start-location if before point.
15797 2007-10-31  Juanma Barranquero  <lekktu@gmail.com>
15799         * strokes.el (strokes-alphabetic-lessp): Simplify.  Doc fix.
15800         (strokes-unload-hook): Remove function and variable.
15801         (strokes-unload-function): New-style unload function, adapted
15802         from `strokes-unload-hook'.
15804         * emacs-lisp/cl.el (cl-cannot-unload): Remove function.
15805         (cl-unload-hook): Remove variable.
15806         (cl-unload-function): New-style unload function, adapted
15807         from `cl-cannot-unload'.
15809         * emacs-lisp/elp.el (elp-unload-hook): Remove function and variable.
15810         (elp-unload-function): New-style unload function, adapted
15811         from `elp-unload-hook'.
15813 2007-10-31  Sean O'Rourke  <sorourke@cs.ucsd.edu>
15815         * emacs-lisp/find-func.el (find-library): Use library at
15816         point as default interactive argument.
15818 2007-10-31  Juanma Barranquero  <lekktu@gmail.com>
15820         * shadowfile.el (shadow-join): Remove.
15821         (shadow-shadows): Use `mapconcat' instead of `shadow-join'.
15822         (shadow-initialize): Use `write-file-functions', not `write-file-hooks'.
15823         (shadowfile-unload-hook): Remove function and variable.
15824         (shadowfile-unload-function): New-style unload function, adapted
15825         from `shadowfile-unload-hook'.
15827 2007-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
15829         * progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
15830         only if it is bound.
15832         * textmodes/reftex.el: Move autoloads for before all uses.
15833         (reftex-make-overlay, reftex-overlay-put, reftex-move-overlay)
15834         (reftex-delete-overlay): Move to the top level with the condition
15835         in the body.
15837         * progmodes/simula.el: Use when instead of if.
15839         * iimage.el (iimage-locate-file): Define unconditionally.
15841         * mail/mailabbrev.el (mail-abbrev-next-line):
15842         * emulation/vip.el (vip-enlarge-region, vip-line)
15843         (vip-next-line-at-bol, vip-previous-line)
15844         (vip-previous-line-at-bol, vip-find-char, vip-put-back, ex-read):
15845         Wrap with-no-warnings around uses of next-line and previous-line.
15847         * ediff.el (run-ediff-from-cvs-buffer):
15848         * ediff-vers.el (cvs-run-ediff-on-file-descriptor):
15849         Remove function not used by pcl-cvs anymore.
15850         (noninteractive, generic-sc-get-latest-rev)
15851         (ediff-generic-sc-internal, ediff-generic-sc-merge-internal):
15852         Delete support for long obsolete generic-sc.el.
15854 2007-10-31  Glenn Morris  <rgm@gnu.org>
15856         * cvs-status.el: No longer require pcvs when compiling.
15858         * doc-view.el (doc-view-conversion-refresh-interval)
15859         (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
15860         (doc-view-reset-slice): Doc fixes.
15861         (doc-view-menu): Remove deleted function doc-view-edit-doc.
15863 2007-10-31  Juanma Barranquero  <lekktu@gmail.com>
15865         * help-at-pt.el (help-at-pt-unload-hook): Remove.
15866         Timers are automatically canceled by `unload-feature'.
15868         * delsel.el (delsel-unload-hook): Remove function and variable.
15869         (delsel-unload-function): New-style unload function, adapted
15870         from `delsel-unload-hook'.
15872         * msb.el (msb-unload-hook): Remove function and variable.
15873         (msb-unload-function): New-style unload function, adapted from
15874         `msb-unload-hook'.
15876 2007-10-30  Juanma Barranquero  <lekktu@gmail.com>
15878         * desktop.el (uniquify-managed): Pacify byte compiler.
15879         (desktop-buffer-info): If the buffer name is managed by uniquify,
15880         save the base name, not the uniquified one.
15881         (desktop-create-buffer): Allow `rename-buffer' to generate a new
15882         name in case of conflict.
15884 2007-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15886         * doc-view.el: Use expand-file-name rather than concat.
15887         (doc-view-cache-directory): Add the UID so multiple users won't clash.
15888         (doc-view-current-overlay, doc-view-pending-cache-flush): New vars.
15889         (doc-view-goto-page, doc-view-insert-image, doc-view-buffer-message)
15890         (doc-view-toggle-display): Use an overlay over the whole buffer so as
15891         not to have to touch the buffer's content.
15892         (doc-view-initiate-display): New function, extracted from doc-view-mode.
15893         (doc-view-mode): Use it.  Don't mark as a special mode.
15894         Put the page numbers in the modeline.
15895         Set up the overlay.  Hide the cursor.  Run the mode hook.
15896         Use after-revert-hook rather than revert-buffer-function.
15897         (doc-view-search-internal): Fix typo.
15898         (doc-view-convert-current-doc, doc-view-insert-image): Delay the
15899         image-cache flush.
15900         (doc-view-reconvert-doc): Don't reset the whole mode.
15901         (doc-view-make-safe-dir): New function.
15902         (doc-view-current-cache-dir): Use it.
15904 2007-10-30  Jason Rumney  <jasonr@gnu.org>
15906         * time.el (display-time-world-list): Test for zoneinfo support.
15908 2007-10-30  Michael Albinus  <michael.albinus@gmx.de>
15910         * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
15912         * net/tramp-cache.el (tramp-flush-file-function): Check also
15913         `default-directory' if `buffer-file-name' does not return a
15914         string.  Added to `eshell-pre-command-hook'.
15916 2007-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15918         * doc-view.el (doc-view-current-doc): Remove.
15919         Replace all uses by buffer-file-name.
15920         (doc-view-menu): New menu.
15921         (doc-view-reconvert-doc): Don't bind inhibit-read-only and remove
15922         unused var `doc'.
15923         (doc-view-sort): Simplify.
15924         (doc-view-buffer-message): Don't change buffer-modified-p.
15925         (doc-view-mode): Change it here instead.
15926         Tighten scoping of prev-major-mode.  Don't re-insert the file's content.
15927         Don't modify the global value of revert-buffer-function.
15929         * image-mode.el (image-forward-hscroll, image-next-line, image-eol)
15930         (image-eob, image-mode, image-minor-mode, image-toggle-display-text)
15931         (image-toggle-display): Take overlays into account and don't assume
15932         point-min==1.
15934 2007-10-30  Thien-Thi Nguyen  <ttn@gnuvola.org>
15936         * vc.el (vc-annotate): Fix omission bug:
15937         Specify value for vc-sentinel-movepoint.
15939 2007-10-30  Michael Olson  <mwolson@gnu.org>
15941         * textmodes/remember.el (remember-mode-hook)
15942         (remember-handler-functions, remember-annotation-functions):
15943         Add additional items as options, including some Org functions.
15945 2007-10-30  Tassilo Horn  <tassilo@member.fsf.org>
15947         * doc-view.el: Remove cl-dependency.
15948         (doc-view-buffer-message): Mention new binding K.
15949         (doc-view-convert-current-doc): Use function d-v-current-cache-dir
15950         instead of variable.
15951         (doc-view-current-cache-dir): Better cache dir naming.
15952         (doc-view-current-display): Remove variable.
15953         (doc-view-edit-doc, doc-view-display-maybe): Remove functions.
15954         (doc-view-kill-proc): Set converter process to nil.
15955         (doc-view-minor-mode): New minor mode.
15956         (doc-view-minor-mode-map): New keymap.
15957         (doc-view-mode): Remove text/image switching code.  Use plain defun.
15958         (doc-view-mode-map): New binding K kills converter process.
15959         Remove C-c C-e binding.
15960         (doc-view-mode-text-map): Remove keymap.
15961         (doc-view-pdf/ps->png): Timer calls d-v-display instead of
15962         d-v-display-maybe.
15963         (doc-view-previous-major-mode): New variable.
15964         (doc-view-ps->pdf): Resort args to make ps2pdf happy.
15965         (doc-view-remove-if): New function.
15966         (doc-view-search-next-match, doc-view-search-previous-match): Use it.
15967         (doc-view-toggle-display): Toggle modes instead of display styles.
15968         (doc-view-reconvert-doc): Adapt to new way of doing things.
15970         * progmodes/ps-mode.el (ps-mode-map): Enable doc-view-minor-mode.
15972 2007-10-30  Glenn Morris  <rgm@gnu.org>
15974         * dirtrack.el (dirtrack-mode): Doc fix.
15976         * shell.el (shell-dirtrack-verbose, shell-mode)
15977         (shell-directory-tracker, shell-dirtrack-mode): Doc fix.
15979         * emacs-lisp/bytecomp.el (byte-compile-disable-warning)
15980         (byte-compile-enable-warning): Doc fix.
15982         * emulation/tpu-mapper.el (tpu-map-key): Use with-no-warnings to
15983         suppress byte-opt warning.
15985 2007-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
15987         * emulation/edt.el (edt-emacs19-p, edt-x-emacs19-p)
15988         (edt-gnu-emacs19-p): Remove.
15989         (edt-emacs-variant, edt-window-system): Use feature 'emacs.
15990         (edt-xserver, edt-page-backward, edt-beginning-of-line)
15991         (edt-end-of-line-forward, edt-end-of-line-backward)
15992         (edt-one-word-forward, edt-one-word-backward, edt-character)
15993         (edt-line-forward, edt-next-line, edt-previous-line, edt-top)
15994         (edt-find-forward, edt-find-backward, edt-find-next-forward)
15995         (edt-find-next-backward, edt-reset, edt-advance, edt-backup)
15996         (edt-define-key, edt-bottom-check, edt-sentence-forward)
15997         (edt-sentence-backward, edt-paragraph-forward)
15998         (edt-paragraph-backward, edt-restore-key, edt-window-top)
15999         (edt-window-bottom, edt-scroll-window-forward-line)
16000         (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
16001         (edt-line-to-top-of-window, edt-paragraph-backward)
16002         (edt-restore-key, edt-window-top, edt-window-bottom)
16003         (edt-scroll-window-forward-line)
16004         (edt-scroll-window-backward-line, edt-line-to-bottom-of-window)
16005         (edt-line-to-middle-of-window, edt-goto-percentage)
16006         (edt-display-the-time, edt-remember, edt-split-window)
16007         (edt-emulation-on, edt-emulation-off)
16008         (edt-default-emulation-setup, edt-user-emulation-setup)
16009         (edt-select-default-global-map, edt-select-user-global-map):
16010         Replace uses of edt-x-emacs19-p and edt-gnu-emacs19-p with feature
16011         tests.
16013         * textmodes/reftex-index.el (reftex-index-selection-or-word):
16014         Use feature test instead of boundp test so it can be resolved at
16015         compile time.
16017         * net/newsticker.el (replace-regexp-in-string): Only define for XEmacs.
16019 2007-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16021         * abbrev.el: Rename `count' and `system-flag' to :count and :system.
16022         Update all users.
16023         (abbrev-get, abbrev-put): Simplify.
16024         (define-abbrev): Don't store the `force' value in the :system property.
16025         (abbrev--before-point): Obey the :enable-function of the abbrev as well.
16027 2007-10-30  Michael Olson  <mwolson@gnu.org>
16029         * desktop.el (desktop-minor-mode-table): Add line for ERC.
16031         * textmodes/remember.el: New file that implements a mode for
16032         quickly jotting down things to remember.
16034         * textmodes/remember-diary.el: A backend for remember.el that
16035         implements saving notes to a Diary file.
16037 2007-10-29  Ken Manheimer  <ken.manheimer@gmail.com>
16039         * allout.el (allout-command-prefix, allout-inhibit-auto-fill):
16040         Relocate in file.
16041         (allout-doublecheck-at-and-shallower): Increase to include
16042         slightly greater depths, since yank interaction is now ok.
16043         Also, elaborate the docstring to explain the situation.
16044         (produce-allout-mode-map, allout-hotspot-key-handler): Use vconcat
16045         instead of concat, so we accommodate key sequences expressed as
16046         vectors as well as strings and lists.
16047         (allout-flag-region, allout-hide-by-annotation): Make the
16048         hidden-text overlays 'front-advance.
16049         (allout-overlay-insert-in-front-handler): Correct docstring's grammar.
16050         (allout-aberrant-container-p, allout-on-current-heading-p)
16051         (allout-e-o-prefix-p, allout-next-heading)
16052         (allout-previous-heading, allout-goto-prefix)
16053         (allout-end-of-prefix, allout-next-sibling-leap)
16054         (allout-next-visible-heading, allout-auto-fill)
16055         (allout-rebullet-heading, allout-kill-line, allout-kill-topic)
16056         (allout-yank-processing, allout-resolve-xref)
16057         (allout-current-topic-collapsed-p, allout-hide-region-body)
16058         (allout-latex-verbatim-quote-curr-line, allout-encrypt-string)
16059         (allout-encrypted-topic-p, allout-next-topic-pending-encryption)
16060         (count-trailing-whitespace-region): Preserve match data, so allout
16061         outline navigation doesn't disrupt other Emacs operations.
16062         (allout-beginning-of-line): Retreat to the beginning of the hidden
16063         text, so fields are respected (for submodes that care).
16064         (allout-end-of-line): Preserve mark activation status when jumping.
16065         (allout-open-topic): Account for opening after a child that
16066         contains a hidden trailing newline.  Preserve match data.
16067         Run allout-structure-added-hook
16068         (allout-encrypt-decrypted): Preserve match data.
16069         (allout-toggle-current-subtree-exposure): Add new interactive
16070         function for toggle subtree exposure - suggested by tassilo.
16071         (move-beginning-of-line, move-end-of-line): Don't use
16072         line-move-invisible-p, it's obsolete - substitute the code, instead.
16074 2007-10-29  Dan Nicolaescu  <dann@ics.uci.edu>
16076         * textmodes/flyspell.el (message-signature-separator):
16077         * longlines.el (message-indent-citation-function): Pacify byte
16078         compiler.
16080         * emacs-lisp/cl-loaddefs.el:
16081         * ldefs-boot.el: Regenerate.
16083         * Makefile.in (BYTE_COMPILE_EXTRA_FLAGS): New variable.
16084         (.el.elc, compile, compile-always, compile-calc)
16085         ($(lisp)/progmodes/cc-mode.elc): Use it.
16087         * ps-print.el (ps-xemacs-color-name, ps-xemacs-face-kind-p):
16088         Only do work for XEmacs.
16089         (ps-xemacs-mapper): Rename from ps-mapper, only work on XEmacs.
16090         (ps-xemacs-extent-sorter): Rename from ps-extent-sorter, only work
16091         on XEmacs.
16092         (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
16093         (ps-x-color-name, ps-x-color-specifier-p)
16094         (ps-x-copy-coding-system, ps-x-device-class)
16095         (ps-x-extent-end-position, ps-x-extent-face)
16096         (ps-x-extent-priority, ps-x-extent-start-position)
16097         (ps-x-face-font-instance, ps-x-find-coding-system)
16098         (ps-x-font-instance-properties, ps-x-make-color-instance)
16099         (ps-x-map-extents, ps-e-face-bold-p, ps-e-face-italic-p)
16100         (ps-e-next-overlay-change, ps-e-overlays-at, ps-e-overlay-get)
16101         (ps-e-overlay-end, ps-e-x-color-values, ps-e-color-values):
16102         (ps-generate-postscript-with-faces): Delete defaliases.
16103         (ps-face-foreground-name, ps-face-background-name)
16104         (ps-color-values, ps-face-bold-p, ps-face-italic-p):
16105         Move definitions to top level, make the body conditional on the Emacs
16106         flavor.  Replace uses of deleted aliases and renamed functions.
16107         (ps-generate-postscript-with-faces, ps-color-device): Replace uses
16108         of deleted aliases and renamed functions.
16110         * calc/calc.el (calc-emacs-type-lucid): Remove.
16111         (calc-digit-map, calcDigit-start, calc-read-key)
16112         (calc-clear-unread-commands):
16113         * calc/calc-ext.el (calc-user-key-map): Replace uses of
16114         calc-emacs-type-lucid with (featurep 'xemacs)
16116         * emulation/tpu-mapper.el: Replace tpu-lucid-emacs19-p with
16117         (featurep 'xemacs).
16118         (tpu-lucid-emacs19-p): Remove.
16119         (tpu-map-key): Make it a function instead of using fset.  Inline
16120         tpu-emacs-map-key and tpu-lucid-map-key.  Use featurep 'xemacs.
16121         (tpu-emacs-map-key, tpu-lucid-map-key): Remove.
16123         * ielm.el: Use featurep 'xemacs.
16125         * progmodes/cperl-mode.el (cperl-xemacs-p): Remove.
16126         (condition-case, cperl-can-font-lock, cperl-singly-quote-face)
16127         (cperl-define-key, cperl-mode-map, cperl-mode, cperl-init-faces)
16128         (cperl-write-tags, cperl-tags-hier-init, cperl-perldoc): Replace
16129         cperl-xemacs-p with (featurep 'xemacs).
16130         (font-lock-cache-position): Pacify byte compiler.
16132 2007-10-29  Drew Adams  <drew.adams@oracle.com>
16134         * faces.el (read-color): New function.
16135         (face-at-point, foreground-color-at-point)
16136         (background-color-at-point): New functions.
16138 2007-10-28  Richard Stallman  <rms@gnu.org>
16140         * net/browse-url.el (browse-url-text-xterm): Rename from
16141         browse-url-lynx-xterm and made generic.
16142         (browse-url-text-emacs): Likewise.
16143         (browse-url-text-browser): New variable.
16144         (browse-url-text-emacs-args): Rename from browse-url-lynx-emacs-args.
16145         (browse-url-text-input-field, browse-url-text-input-attempts)
16146         (browse-url-kde-program): Likewise.
16148 2007-10-29  Glenn Morris  <rgm@gnu.org>
16150         * textmodes/org-publish.el (org-publish-get-plist-from-filename):
16151         Use mapc rather than mapcar (reinstall change deleted without log
16152         entry 2007-10-22).
16154 2007-10-29  Martin Rudalics  <rudalics@gmx.at>
16156         * wdired.el (wdired-next-line, wdired-previous-line):
16157         Use next-line and previous-line wrapped in with-no-warnings.
16159 2007-10-29  Ryan Yeske  <rcyeske@gmail.com>
16161         * net/rcirc.el (rcirc-server-alist): Use keywords for parameter names.
16162         (rcirc-recent-quit-alist): New function.
16163         (rcirc): Print a better message when there is only one connected server.
16164         (rcirc-complete-nick): Do not update the nick table here.
16165         (rcirc-mode-map): Add M-o.
16166         (rcirc-current-line): Add variable.
16167         (rcirc-mode): Setup variables for line based omit.
16168         (rcirc-edit-multiline): Strip text properties.
16169         (rcirc-omit-responses): Add NICK.
16170         (rcirc-omit-threshold): Add variable.
16171         (rcirc-last-quit-line, rcirc-last-line, rcirc-elapsed-lines):
16172         Add functions.
16173         (rcirc-print): Keep track of current line.  Do not fill text if
16174         `rcirc-fill-flag' is null.  Only omit text if the last activity
16175         from the sender is more than `rcirc-omit-threshold' lines ago.
16176         (rcirc-put-nick-channel, rcirc-handler-PRIVMSG): Track line
16177         numbers instead of time.
16178         (rcirc-channel-nicks): Sort by line numbers instead of time.
16179         (rcirc-omit-mode): Add `...' when omitting text and recenter.
16180         (rcirc-handler-JOIN): Restore the joiners linestamp.
16181         (rcirc-maybe-remember-nick-quit): Add function.
16182         (rcirc-handler-QUIT): Record sender in table of recently quit nicks.
16184 2007-10-29  Juanma Barranquero  <lekktu@gmail.com>
16186         * loadhist.el (unload-feature-special-hooks):
16187         Add `delete-frame-functions' and `suspend-tty-functions'.
16189         * server.el (server-unload-function): Rename from `server-unload-hook'
16190         and adapt to new `unload-feature' functionality.  Remove hook from
16191         `kill-buffer-hook' buffer-locally.
16192         (server-unload-hook): Remove.
16193         (server-unload-function): New var; replaces `server-unload-hook'.
16195 2007-10-29  Glenn Morris  <rgm@gnu.org>
16197         * dirtrack.el (dirtrack-debug): Doc fix.
16198         (dirtrack-mode, dirtrack-debug-mode): New names for
16199         dirtrack-toggle and dirtrack-debug-toggle.  Use define-minor-mode.
16200         (dirtrack-toggle, dirtrack-debug-toggle, dirtrackp, dirtrack-debug):
16201         Make obsolete.
16202         (dirtrack-debug-message): Only print message if
16203         dirtrack-debug-mode is non-nil.  Use with-current-buffer.
16204         (dirtrack): Doc fix.  Use dirtrack-mode rather than dirtrackp.
16205         Remove dirtrack-debug checks now that dirtrack-debug-message does this.
16207 2007-10-28  Glenn Morris  <rgm@gnu.org>
16209         * emacs-lisp/bytecomp.el (byte-compile-warnings): Document `not'.
16210         (byte-compile-warnings-safe-p): Handle `not'.
16211         (byte-compile-warning-enabled-p, byte-compile-disable-warning)
16212         (byte-compile-enable-warning): New functions.
16213         (byte-compile-eval-before-compile)
16214         (byte-compile-file-form-require): Use byte-compile-disable-warning.
16215         (byte-compile-close-variables): Locally bind byte-compile-warnings,
16216         but do not modify it.
16217         (byte-compile-eval, byte-compile-obsolete)
16218         (byte-compile-warn-about-unresolved-functions)
16219         (byte-compile-file-form-defvar)
16220         (byte-compile-file-form-custom-declare-variable)
16221         (byte-compile-file-form-require)
16222         (byte-compile-file-form-defmumble, byte-compile-lambda)
16223         (byte-compile-form, byte-compile-normal-call)
16224         (byte-compile-variable-ref, byte-compile-defvar)
16225         (byte-compile-make-variable-buffer-local):
16226         Use byte-compile-warning-enabled-p.
16227         * emacs-lisp/advice.el (ad-compile-function):
16228         Use byte-compile-disable-warning.
16229         * emacs-lisp/cl.el: Move local variables to end of file, and set
16230         byte-compile-warnings to `(not cl-functions)'.
16231         * emacs-lisp/cl-compat.el: Add a local variables section, and set
16232         byte-compile-warnings to `(not cl-functions)'.
16233         * emacs-lisp/cl-macs.el: Unify local variable section, and set
16234         byte-compile-warnings to `(not cl-functions)'.
16235         (cl-do-proclaim): Use byte-compile-disable-warning and
16236         byte-compile-enable-warning.
16237         * emacs-lisp/cl-seq.el: Unify local variable section, and set
16238         byte-compile-warnings to `(not cl-functions)'.
16239         * progmodes/cc-bytecomp.el (cc-bytecomp-ignore-obsolete):
16240         Use byte-compile-disable-warning.
16242 2007-10-28  Dan Nicolaescu  <dann@ics.uci.edu>
16244         * cus-edit.el (custom-browse-insert-prefix):
16245         * emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
16247 2007-10-28  Juanma Barranquero  <lekktu@gmail.com>
16249         * server.el (server-process-filter): Fix typo in docstring.
16250         (server-log): Reflow docstrings.
16251         (server-delete-client, server-kill-emacs-query-function): Doc fixes.
16252         (server-goto-line-column): Use `when'.
16254 2007-10-28  Juri Linkov  <juri@jurta.org>
16256         * isearch.el (isearch-other-meta-char): Call `isearch-edit-string'
16257         when mouse is clicked on the isearch message.
16258         (isearch-resume): Call `isearch-update' at the end.
16259         Rename argument `search' to `string' to conform to the
16260         isearch terminology.
16262 2007-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16264         Rewrite abbrev.c in Elisp.
16265         * abbrev.el (abbrev-mode): Move custom group from cus-edit.el.
16266         (abbrev-table-get, abbrev-table-put, abbrev-get)
16267         (abbrev-put, make-abbrev-table, abbrev-table-p, clear-abbrev-table)
16268         (define-abbrev, abbrev--check-chars, define-global-abbrev)
16269         (define-mode-abbrev, abbrev--active-tables, abbrev-symbol)
16270         (abbrev-expansion, abbrev--before-point, expand-abbrev)
16271         (unexpand-abbrev, abbrev--write, abbrev--describe)
16272         (insert-abbrev-table-description, define-abbrev-table):
16273         New funs, largely transcribed from abbrev.c.
16274         (abbrev-with-wrapper-hook): New macro.
16275         (abbrev-table-name-list, global-abbrev-table)
16276         (abbrev-minor-mode-table-alist, fundamental-mode-abbrev-table)
16277         (abbrevs-changed, abbrev-all-caps, abbrev-start-location)
16278         (abbrev-start-location-buffer, last-abbrev, last-abbrev-text)
16279         (last-abbrev-location, pre-abbrev-expand-hook, abbrev-expand-function):
16280         New vars, largely transcribed from abbrev.c.
16281         * cus-edit.el (abbrev-mode): Remove.  Move to abbrev.el.
16282         * cus-start.el: Remove abbrev-all-caps and pre-abbrev-expand-hook.
16283         * loadup.el: Load "abbrev.el" before "lisp-mode.el".
16285 2007-10-27  Glenn Morris  <rgm@gnu.org>
16287         * shell.el (shell-dirtrack-verbose, shell-directory-tracker): Doc fix.
16288         (shell-dirtrack-toggle): Mark as obsolete.
16289         (dirtrack-toggle, dirtrack-mode): No longer alias to
16290         shell-dirtrack-mode.
16292 2007-10-27  Jay Belanger  <jay.p.belanger@gmail.com>
16294         * calc/calc.el (math-standard-opers): Lower the precedence
16295         of negation.
16296         * calc/calc-lang.el (math-oper-table): Lower precedence of
16297         negation for C, TeX, and eqn.
16299 2007-10-27  Dan Nicolaescu  <dann@ics.uci.edu>
16301         * progmodes/cc-defs.el: Reorder conditions to avoid warnings.
16303 2007-10-27  Juanma Barranquero  <lekktu@gmail.com>
16305         * desktop.el (desktop-load-locked-desktop, desktop-base-lock-name)
16306         (desktop-not-loaded-hook): Fix :version tags.
16308 2007-10-27  Michael Albinus  <michael.albinus@gmx.de>
16310         * net/tramp.el (tramp-wrong-passwd-regexp): Tune regexp.
16311         (tramp-get-remote-tmpdir): New defun.
16312         (tramp-make-tramp-temp-file): Use it.
16313         (tramp-local-call-process): New defun.  Replace all calls of
16314         `call-process' by this when appropriate.
16315         (tramp-handle-write-region): Replace calls of `file-attributes' by
16316         `tramp-compat-file-attributes'.
16317         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16318         Make the first command a `tramp-send-command' call, with let-bind
16319         of `tramp-end-of-output'.
16320         (tramp-version, tramp-bug, tramp-reporter-dump-variable)
16321         (tramp-load-report-modules, tramp-append-tramp-buffers):
16322         Move to tramp-cmds.el.
16324         * net/tramp-fish.el (tramp-fish-handle-copy-file)
16325         (tramp-fish-do-copy-or-rename-file)
16326         (tramp-fish-do-copy-or-rename-file-directly):
16327         * net/tramp-smb.el (tramp-smb-handle-copy-file):
16328         Add parameter PRESERVE-UID-GID.
16330 2007-10-27  Eli Zaretskii  <eliz@gnu.org>
16332         * time.el (zoneinfo-style-world-list, legacy-style-world-list):
16333         New defcustoms.
16334         (display-time-world-list): Use them as appropriate for the current
16335         value of `system-type'.
16337 2007-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
16339         * emulation/pc-select.el (next-line-mark, next-line-nomark)
16340         (previous-line-mark, previous-line-nomark): Wrap with-no-warnings
16341         around uses of previous-line and next-line.
16343         * diff.el (diff-old-file, diff-new-file, diff-extra-args):
16344         New defvars.
16346         * textmodes/css-mode.el (comment-continue):
16347         * net/browse-url.el (url-handler-regexp):
16348         * progmodes/idlw-help.el (idlwave-system-routines):
16349         Pacify byte-compiler.
16351         * textmodes/fill.el (fill-nobreak-p): Replace obsolete alias
16352         line-move-invisible-p with its former definition: invisible-p.
16353         line-move-invisible-p was removed on 2007-08-29.
16355 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
16357         * files.el (kill-emacs-query-functions): Doc fix;
16358         `save-buffers-kill-emacs' is no longer bound to a key.
16360 2007-10-26  Richard Stallman  <rms@gnu.org>
16362         * isearch-multi.el (isearch-buffers-multi): New option.
16363         (isearch-buffers-search-fun): Test it.
16365         * progmodes/ps-mode.el (ps-mode-map): Delete C-c v binding.
16366         Put ps-run-clear on C-c C-l.
16368         * newcomment.el (comment-styles): New style indent-or-triple.
16369         (comment-style): Make that the default.
16370         (comment-add defvar): Doc fix.
16371         (comment-add): Delete arg EXTRA.
16372         (comment-region-default): Open code call to comment-add.
16373         Handle indent-or-triple style which uses `multi-char' for INDENT.
16375 2007-10-26  Juanma Barranquero  <lekktu@gmail.com>
16377         * eshell/em-unix.el (nil-blank-string): Doc fix.
16379 2007-10-26  John Wiegley  <johnw@newartisans.com>
16381         * eshell/em-unix.el (eshell/diff): Before calling the `diff'
16382         function, ensure that the third argument is turned into a nil if
16383         the string is otherwise completely empty (either no characters, or
16384         all tabs/spaces).  This fixes a bug from a user who found himself
16385         unable to customize `diff-switches' and still use Eshell's diff
16386         command.
16388 2007-10-26  Glenn Morris  <rgm@gnu.org>
16390         * emacs-lisp/bytecomp.el (byte-compile-warnings): Autoload the
16391         safe-local-variable property.
16393 2007-10-26  Gwern Branwen  <gwern0@gmail.com>  (tiny change)
16395         * net/browse-url.el (browse-url-browser-function): Delete grail.
16396         (browse-url-grail): Function and variable deleted.
16397         (browse-url-browser-function): Delete IXI Mosaic.
16398         (browse-url-default-browser): Don't try IXI Mosaic.
16399         (browse-url-iximosaic): Function deleted.
16400         (browse-url-browser-function): Delete MMM.
16401         (browse-url-default-browser): Don't try MMM.
16402         (browse-url-mmm): Function deleted.
16404 2007-10-26  Drew Adams  <drew.adams@oracle.com>
16406         * custom.el (custom-note-var-changed): New function.
16408 2007-10-25  Dan Nicolaescu  <dann@ics.uci.edu>
16410         * emulation/edt-mapper.el (edt-emacs-variant): Replace the only
16411         use with the definition.  Remove.
16413         * add-log.el (change-log-start-entry-re): New defconst.
16414         (change-log-sortable-date-at): Use it.
16415         (change-log-beginning-of-defun, change-log-end-of-defun):
16416         New functions.
16417         (change-log-mode): Use them for beginning-of-defun-function and
16418         end-of-defun-function.
16420 2007-10-25  Jonathan Yavner  <jyavner@member.fsf.org>
16422         * ses.el: Make `ses--symbolic-formulas' a safe local variable.
16423         (ses-mode-print-map): Add `c' and `t' (suggested by Gareth Rees).
16424         (ses-recalculate-cell): Deal with point being just beyond end of
16425         data area (why does this happen?)
16426         (ses-set-curcell): Ditto.
16427         (ses-column-letter): Handle columns beyond 702.  Code written by
16428         Gareth Rees.
16430 2007-10-25  Carsten Dominik  <dominik@science.uva.nl>
16432         * textmodes/org.el (org-agenda-get-restriction-and-command):
16433         Use `mapc' instead of `mapcar'.
16434         (org-agenda-list): Numeric prefix argument can specify the number
16435         of days.
16436         (remember-register, remember-buffer): Prevent byte compiler from
16437         complaining.
16438         (org-todo): Save and restore match data.
16439         (org-no-warnings): New macro.
16440         (org-columns-eval): Use `org-no-warnings'.
16442 2007-10-25  Chris Moore  <christopher.ian.moore@gmail.com>
16444         * comint.el (comint-password-prompt-regexp):
16445         Handle `[sudo] password'-style prompt.
16447 2007-10-25  Glenn Morris  <rgm@gnu.org>
16449         * custom.el (custom-declare-variable): Add :risky and :safe keywords.
16450         (defcustom): Doc fix.
16452         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re):
16453         Add `non_intrinsic'.
16454         (f90-constants-re): Add ieee modules.
16455         (f90-typedef-matcher, f90-typedec-matcher)
16456         (f90-imenu-type-matcher): New functions.
16457         (f90-font-lock-keywords-1): Give module procedures function-name face.
16458         Use `f90-typedef-matcher' for derived types.  Fix `abstract interface'.
16459         Add `use, intrinsic'.
16460         (f90-font-lock-keywords-2): Use `f90-typedec-matcher' for derived types.
16461         Move start of `enum' blocks to separate entry.
16462         (f90-start-block-re): Fix `type', `abstract interface'.
16463         (f90-imenu-generic-expression): Use `f90-imenu-type-matcher' for
16464         derived types.
16465         (f90-mode-abbrev-table): Add `abstract interface', `asynchronous',
16466         `elemental', change `enumerator'.
16467         (f90-no-block-limit): Fix `abstract interface'.
16469         * progmodes/f90.el (f90-indented-comment-re)
16470         (f90-directive-comment-re, f90-break-delimiters):
16471         * progmodes/fortran.el (fortran-comment-line-start-skip)
16472         (fortran-directive-re):
16473         * textmodes/conf-mode.el (conf-space-keywords): Mark these regexps
16474         as safe if they are strings.
16476 2007-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
16478         * startup.el (window-system): Remove.  Don't make it frame-local.
16480 2007-10-24  Richard Stallman  <rms@gnu.org>
16482         * savehist.el (savehist-save): Omit unreadable elements.
16484         * loadhist.el (unload-function-defs-list): Rename from
16485         unload-function-features-list.
16486         (unload-feature-special-hooks, unload-feature): Doc fixes.
16488         * indent.el (indent-to-left-margin): If point's in the indentation,
16489         move to the end of the indentation.
16491         * cus-edit.el (customize-changed-options): Make arg optional.
16493 2007-10-24  Juanma Barranquero  <lekktu@gmail.com>
16495         * bs.el (bs-select, bs-select-other-window): Fix typos in docstrings.
16497 2007-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
16499         * textmodes/org-publish.el (org-publish-attachment): Re-install
16500         accidentally deleted change.
16502 2007-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16504         * term/iris-ansi.el (iris-function-map): Move init into declaration.
16506 2007-10-24  Juanma Barranquero  <lekktu@gmail.com>
16508         * buff-menu.el (Buffer-menu-sort-column): Doc fix.
16509         (Buffer-menu-mode-map): Initialize in the declaration.
16510         (Buffer-menu-mode): Define with `define-derived-mode'.
16512 2007-10-24  Carsten Dominik  <dominik@science.uva.nl>
16514         * textmodes/org.el (org-version): Change to 5.13e.
16515         (org-agenda-file-regexp): Fix typo in docstring.
16516         (org-add-planning-info): Fix bug in parenthesis settings.
16517         (org-scan-tags): Catch the case of indirect buffers with no filename.
16518         (org-fast-tag-selection, org-export-as-ascii, org-export-as-html):
16519         Re-install switch to mapc, had been removed by accident.
16520         (org-columns-map): New binding `C-c C-o'.
16521         (org-columns-menu): Change menu text and added new entry.
16522         (org-columns-eval): Document the use of `next-line'.
16523         (org-columns-open-link): New function.
16524         (org-columns-follow-link): Remove function.
16525         (org-open-link-from-string): New function.
16526         (org-read-date-get-relative): Fix typo in docstring.
16527         (org-read-date-get-relative): Leading +/- is not optional.
16528         (org-agenda-get-restriction-and-command): Always resize window on
16529         first loop cycle.
16530         (org-agenda-open-link): Make sure the link abbreviations are
16531         present in the agenda buffer.
16532         (org-agenda-copy-local-variable): New function.
16534 2007-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16536         * vc.el (vc-update-changelog-rcs2log): Remove incorrect `backend' arg.
16538 2007-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16540         * simple.el (reindent-then-newline-and-indent): Use a `move after
16541         insert' kind of marker in the save-excursion.
16543 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16545         * textmodes/css-mode.el: Require CL.
16546         (comment-continue): Declare.
16548         * subr.el (make-variable-frame-localizable): Remove.
16549         (make-variable-frame-local): Mark obsolete.
16551 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16553         * textmodes/tex-mode.el (tex-uptodate-p): Don't signal an error if one
16554         of the subdirs is unreadable.
16556 2007-10-23  Michael Albinus  <michael.albinus@gmx.de>
16558         * net/tramp.el (tramp-set-file-uid-gid): Protect `call-process'
16559         when we are local.
16561 2007-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16563         * progmodes/python.el (python-current-defun): Remove left-over
16564         assignment to `start'.
16566 2007-10-23  Juanma Barranquero  <lekktu@gmail.com>
16568         * ibuf-ext.el (ibuffer-auto-update-changed): Use `dolist' rather
16569         than `mapcar'; return value is not used.
16571 2007-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
16573         * progmodes/gud.el (gdb-source-window, gud-tooltip-mode)
16574         (hl-line-mode, hl-line-sticky-flag): Pacify byte compiler.
16576 2007-10-23  Juanma Barranquero  <lekktu@gmail.com>
16578         * ibuf-ext.el (ibuffer-switch-to-saved-filters)
16579         (ibuffer-switch-to-saved-filter-groups): Doc fixes.
16581 2007-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
16583         * term/xterm.el (terminal-init-xterm): Experiment with a longer timeout.
16585 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16587         * emacs-lisp/advice.el (ad-make-advised-docstring):
16588         Add ad-advice-info text property to doc string.
16590 2007-10-23  Glenn Morris  <rgm@gnu.org>
16592         * progmodes/f90.el (f90-do-indent, f90-if-indent)
16593         (f90-type-indent, f90-program-indent, f90-associate-indent)
16594         (f90-continuation-indent, f90-comment-region)
16595         (f90-beginning-ampersand, f90-smart-end)
16596         (f90-break-before-delimiters, f90-auto-keyword-case)
16597         (f90-leave-line-no, f90-mode-hook):
16598         Give an appropriate safe-local-variable property.
16600         * progmodes/fortran.el (fortran-tab-mode-default)
16601         (fortran-tab-mode-string, fortran-do-indent, fortran-if-indent)
16602         (fortran-structure-indent, fortran-continuation-indent)
16603         (fortran-comment-indent, fortran-comment-line-extra-indent)
16604         (fortran-comment-line-start)
16605         (fortran-minimum-statement-indent-fixed)
16606         (fortran-minimum-statement-indent-tab)
16607         (fortran-comment-indent-char, fortran-line-number-indent)
16608         (fortran-check-all-num-for-matching-do)
16609         (fortran-blink-matching-if, fortran-continuation-string)
16610         (fortran-comment-region, fortran-electric-line-number)
16611         (fortran-column-ruler-fixed, fortran-column-ruler-tab)
16612         (fortran-analyze-depth, fortran-break-before-delimiters):
16613         Give an appropriate safe-local-variable property.
16615 2007-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
16617         * printing.el: Move variable definitions before use.
16618         (pr-menu-char-width, pr-menu-char-height): Pacify byte compiler.
16620 2007-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16622         * emulation/tpu-edt.el (tpu-edt-old-global-values): New var.
16623         (tpu-edt-off): Use it.
16624         (tpu-edt-on): Set it.  Make sure the tpu-global-map is not already on
16625         the global-map before adding it to global-map.
16627         * menu-bar.el (global-buffers-menu-map): New var.
16628         (global-map, menu-bar-update-buffers): Use it.
16629         * msb.el (msb-menu-bar-update-buffers): Use it.
16630         (msb-sort-by-directory, msb--choose-menu, msb--mode-menu-cond)
16631         (msb--most-recently-used-menu, msb--create-buffer-menu-2):
16632         Use with-current-buffer.
16634 2007-10-22  Juri Linkov  <juri@jurta.org>
16636         * isearch-multi.el: New file.
16638         * isearch.el (isearch-search-string): After finding the next
16639         occurrence switch to buffer isearch-buffers-current-buffer when
16640         isearch-buffers-next-buffer-function is non-nil and
16641         isearch-buffers-current-buffer is live.
16643         * add-log.el (change-log-mode): Make and set buffer-local variable
16644         isearch-buffers-next-buffer-function to change-log-next-buffer.
16645         Call isearch-buffers-minor-mode.
16646         (change-log-next-buffer): New function.
16648 2007-10-22  Bastien Guerry  <Bastien.Guerry@ens.fr>
16650         * textmodes/org-export-latex.el (org-export-latex-protect-string):
16651         Renaming of `org-latex-protect'.
16652         (org-export-latex-emphasis-alist): By default, don't protect
16653         any emphasis formatter from further conversion.
16654         (org-export-latex-tables): Honor column grouping for tables.
16655         (org-export-latex-title-command): New option.
16656         (org-export-latex-treat-backslash-char): Use \textbackslash{} to
16657         export backslash character.
16659 2007-10-22  Carsten Dominik  <dominik@science.uva.nl>
16661         * textmodes/org.el (org-read-date-get-relative): New function.
16662         (org-agenda-file-regexp): New variable.
16663         (org-agenda-files): Allow directories in the variable.
16664         (org-agenda-get-restriction-and-command): New function.
16665         (org-agenda): Use `org-agenda-get-restriction-and-command'.
16666         (org-todo-blocker-hook, org-todo-trigger-hook): New hooks.
16667         (org-entry-is-todo-p, org-entry-is-done-p, org-get-todo-state):
16668         New functions.
16669         (org-entry-add-to-multivalued-property)
16670         (org-entry-remove-from-multivalued-property)
16671         (org-entry-member-in-multivalued-property): New functions.
16672         (org-remember-apply-template): Catch C-g and make sure window
16673         configuration is restored.
16674         (org-agenda-open-link): Make it work with several links in the line.
16675         (org-drawers, org-set-regexps-and-options)
16676         (org-get-current-options): Add support for a DRAWERS in-buffer option.
16677         (org-agenda-window-frame-fractions): New option.
16678         (org-fit-agenda-window): Use `org-agenda-window-frame-fractions'.
16679         (org-columns-cleanup-item, org-find-entry-with-id)
16680         (org-insert-columns-dblock, org-listtable-to-string)
16681         (org-dblock-write:columnview, org-columns-capture-view)
16682         (org-edit-headline): New functions.
16683         (org-agenda-to-appt): Require calendar.
16684         (org-entry-get-with-inheritance): Widen for search.
16685         (org-columns-display-here): Don't mark buffer as modified when
16686         adding space characters to accomodate column overlays.
16687         (org-export-as-html): Better formatting of tags in the toc.
16688         (org-columns-display-here): Make the ITEM column as compact as possible.
16689         (org-remember-templates): Customization interface improved.
16690         (org-export-with-property-drawer): Variable removed.
16691         (org-export-with-drawers): New option.
16692         (org-complex-heading-regexp): New variable.
16693         (org-sort-entries): Rewrite using `sort-subr'.
16694         (org-set-property): More appropriate completion during interactive use.
16695         (org-sort-entries): Allow sorting by property.
16696         (org-additional-option-like-keywords): Add more values.
16697         (org-sort-entries-or-items): Rename from `org-sort-entries'.
16699 2007-10-22  Carsten Dominik  <dominik@science.uva.nl>
16701         * textmodes/org.el (org-get-date-from-calendar): New function.
16702         (org-at-timestamp-p, org-timestamp-change)
16703         (org-remember-templates): First element of each entry is now a
16704         name for the template.
16705         (org-store-log-note): Check for `org-note-abort'.
16706         (org-kill-note-or-show-branches): New command.
16707         (org-fontify-priorities): New option.
16708         (org-fontify-priorities): New function.
16709         (org-cut-subtree, org-copy-subtree): New argument N to
16710         act on N sequential subtrees.
16711         (org-paste-subtree): Fix the level at which a tree is pasted.
16712         (org-fit-agenda-window): Limitations on window size removed.
16713         (org-agenda-find-same-or-today-or-agenda): Rename from
16714         `org-agenda-find-today-or-agenda'.
16715         (org-scheduled-past-days): New option.
16716         (org-agenda-scheduled-leaders)
16717         (org-agenda-deadline-leaders): New options.
16718         (org-agenda-get-deadlines): Use `org-agenda-deadline-leaders'.
16719         (org-agenda-get-scheduled): Use `org-agenda-scheduled-leaders'.
16720         (org-export-with-tags, org-export-plist-vars)
16721         (org-infile-export-plist): New "tags" option.
16722         (org-use-property-inheritance): New option.
16723         (org-cached-entry-get): Use `org-use-property-inheritance'.
16724         (org-remember-apply-template): Fix typo.
16726 2007-10-22  Michael Albinus  <michael.albinus@gmx.de>
16728         * net/tramp.el (tramp-find-shell)
16729         (tramp-open-connection-setup-interactive-shell): Improve sending
16730         initial commands.
16731         (tramp-action-terminal): Send debug message.
16732         (tramp-wait-for-shell-prompt, tramp-send-command-internal): Remove.
16733         (tramp-barf-if-no-shell-prompt): Insert code of
16734         `tramp-wait-for-shell-prompt'.
16736 2007-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16738         * term/AT386.el (terminal-init-AT386): Use input-decode-map.
16740         * term/vt200.el (terminal-init-vt200):
16741         * term/vt201.el (terminal-init-vt201):
16742         * term/vt220.el (terminal-init-vt220):
16743         * term/vt240.el (terminal-init-vt240):
16744         * term/vt300.el (terminal-init-vt300):
16745         * term/vt320.el (terminal-init-vt320):
16746         * term/vt400.el (terminal-init-vt400):
16747         * term/vt420.el (terminal-init-vt420): Use input-decode-map.
16749         * term/wyse50.el (wyse50-terminal-map): New var.
16750         (terminal-init-wyse50): Use it and input-decode-map.
16751         (enable-arrow-keys): Emasculate.
16753         * term/tvi970.el (tvi970-terminal-map): New var.
16754         (terminal-init-tvi970): Use it and input-decode-map.
16755         (tvi970-keypad-numeric): Remove.
16756         (tvi970-set-keypad-mode): Use a terminal-parameter rather than var.
16758         * term/sun.el (sun-raw-prefix): Fill as part of declaration.
16759         (terminal-init-sun): Use it and input-decode-map.
16761         * term/news.el (terminal-init-news):
16762         * term/lk201.el (terminal-init-lk201):
16763         * term/iris-ansi.el (terminal-init-iris-ansi): Use input-decode-map.
16765 2007-10-22  Sean O'Rourke  <sorourke@cs.ucsd.edu>
16767         * complete.el (PC-expand-many-files): Remove.
16768         (PC-do-completion): Call file-expand-wildcards instead of
16769         PC-expand-many-files.
16771         * net/tramp.el (tramp-handle-expand-many-files): Remove.
16772         (PC-expand-many-files): Remove advice.
16774 2007-10-22  Glenn Morris  <rgm@gnu.org>
16776         * progmodes/f90.el: Remove leading "*" from defcustom doc-strings.
16777         Add some support for Fortran 2003 syntax:
16778         (f90-type-indent): Now also applies to `enum'.
16779         (f90-associate-indent): New user option.
16780         (f90-keywords-re, f90-keywords-level-3-re, f90-procedures-re):
16781         Add some F2003 keywords.
16782         (f90-constants-re): New constant.
16783         (f90-font-lock-keywords-1): Add `associate' blocks, and `abstract
16784         Interface'.
16785         (f90-font-lock-keywords-2): Add `enumerator', `generic', `procedure',
16786         `class'.  Arguments for `type'/`class' may have spaces.  Add a new
16787         element for functions with specified types.  Add `end enum' and
16788         `select type'.  Add `implicit enumerator' and `procedure'.
16789         Add `class default' and `type is', `class is'.  Fix `go to' regexp.
16790         (f90-font-lock-keywords-3): Add `asynchronous' attribute.
16791         (f90-font-lock-keywords-4): Add `f90-constants-re'.
16792         (f90-blocks-re): Add `enum' and `associate'.
16793         (f90-else-like-re): Add `class is', `type is', and `class default'.
16794         (f90-end-type-re): Add `enum'.
16795         (f90-end-associate-re, f90-typeis-re): New constants.
16796         (f90-end-block-re): Add `enum' and `associate'.  Change from
16797         optional whitespace to end-of-word, to avoid `enumerator'.
16798         (f90-start-block-re): Add `select type', `abstract interface', and
16799         `enum'.  Avoid `type is', and `type (sometype)'.
16800         (f90-mode-abbrev-table): Add `enumerator', `protected', and `volatile'.
16801         (f90-mode): Doc fix.
16802         (f90-looking-at-select-case): Doc fix.  Add `select type'.
16803         (f90-looking-at-associate): New function.
16804         (f90-looking-at-type-like): Avoid `type is' and `type (sometype)'.
16805         Add `enum' and `abstract interface'.
16806         (f90-no-block-limit): Add `select type' and `abstract interface'.
16807         (f90-get-correct-indent, f90-calculate-indent)
16808         (f90-end-of-block, f90-beginning-of-block, f90-next-block)
16809         (f90-indent-region, f90-match-end): Handle `associate' blocks.
16811 2007-10-22  Martin Rudalics  <rudalics@gmx.at>
16813         * progmodes/fortran.el (fortran-mode-map, fortran-window-create):
16814         Use window-full-width-p.
16816 2007-10-22  Dan Nicolaescu  <dann@ics.uci.edu>
16818         * mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
16820         * tooltip.el: Use featurep 'xemacs.
16822         * printing.el: Move variable definitions before use, no code change.
16824 2007-10-22  Juri Linkov  <juri@jurta.org>
16826         * simple.el (goto-history-element): Allow minibuffer-default to be
16827         a list of default values accessible by typing M-n in the minibuffer.
16829         * dired-x.el (dired-guess-shell-command): Put all guesses to the
16830         minibuffer default value list instead of pushing them temporarily
16831         to the history list.
16833 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
16835         * hexl.el (hexl-menu): New major mode menu.
16837 2007-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
16839         * emacs-lisp/byte-opt.el (byte-optimize-featurep): Fix paren typo.
16841 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
16843         * w32-fns.el (w32-quote-process-args):
16844         * dos-w32.el (print-region-function, lpr-headers-switches)
16845         (ps-print-region-function): Pacify byte-compiler.
16847         * emulation/edt-mapper.el (function-key-map):
16848         (edt-map-key): Make it a function instead of using fset.
16849         Inline edt-gnu-map-key and edt-lucid-map-key.  Use featurep 'xemacs.
16850         (edt-gnu-map-key, edt-lucid-map-key): Remove.
16851         (edt-x-emacs-p): Remove.
16852         (edt-emacs-variant, edt-window-system, edt-xserver):
16853         Use featurep 'xemacs.
16855         * net/eudc.el: Use (featurep 'xemacs) instead of the string test.
16856         Replace eudc-xemacs-p with its definition.
16857         (eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p)
16858         (eudc-emacs-mule-p): Remove.
16859         (eudc-install-menu, eudc-mode): Replace eudc-emacs-p and
16860         eudc-xemacs-p with feature tests.
16862         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap)
16863         (eudc-bob-url-keymap, eudc-bob-sound-keymap)
16864         (eudc-bob-generic-keymap, eudc-bob-popup-menu)
16865         (eudc-bob-toggle-inline-display):
16866         * net/eudc-hotlist.el (eudc-hotlist-emacs-menu):
16867         Replace eudc-emacs-p and eudc-xemacs-p with feature tests.
16869         * net/eudcb-ph.el (eudc-ph-open-session):
16870         Replace eudc-xemacs-mule-p with its former definition.
16872         * progmodes/octave-mod.el (octave-xemacs-p): Remove.
16873         (octave-abbrev-start): Replace octave-xemacs-p with (featurep 'xemacs).
16875         * progmodes/vera-mode.el (vera-xemacs): Remove.
16876         (vera-mode-syntax-table): Replace vera-xemacs with (featurep 'xemacs).
16878         * progmodes/vhdl-mode.el (vhdl-xemacs): Remove.
16879         (vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init)
16880         (vhdl-speedbar-initialize, vhdl-ps-print-init)
16881         (vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages)
16882         (vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs
16883         with (featurep 'xemacs).
16885         * progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx)
16886         (save-buffer-state-x):
16887         * obsolete/fast-lock.el (fast-lock-verbose):
16888         * emulation/viper-init.el (viper-xemacs-p)
16889         (viper-cond-compile-for-xemacs-or-emacs):
16890         * emacs-lisp/checkdoc.el (checkdoc-minor-mode-map):
16891         * ps-print.el (case-fold-search):
16892         * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs):
16893         * calculator.el (calculator-help): Use featurep 'xemacs.
16895         * progmodes/prolog.el: Undo previous change.
16896         (comint-prompt-regexp, comint-process-echoes): Pacify byte-compiler.
16898         * progmodes/dcl-mode.el:
16899         * play/yow.el:
16900         * calendar/todo-mode.el:
16901         * calendar/cal-hebrew.el:
16902         * vc-hg.el: Undo previous change.
16904         * vms-patch.el: Likewise.
16905         (print-region-function): Pacify byte-compiler.
16907 2007-10-21  Michael Albinus  <michael.albinus@gmx.de>
16909         * files.el (backup-buffer-copy): Call `copy-file' with non-nil
16910         preserve-uid-gid.
16912         * net/ange-ftp.el (ange-ftp-copy-file): Add PRESERVE-UID-GID for
16913         compatibility.  It is not used, though.
16915         * net/tramp.el (top): Put load of all tramp-* files into a dolist.
16916         Require tramp-cmds.el.
16917         (tramp-make-tramp-temp-file): We can get rid of DONT-CREATE.
16918         (tramp-handle-file-name-all-completions): Expand DIRECTORY.
16919         (tramp-do-copy-or-rename-file-directly): Make more rigid checks.
16920         (tramp-do-copy-or-rename-file-out-of-band)
16921         (tramp-maybe-open-connection): Use `make-temp-name'.  This is
16922         possible, because we don't need to create the temporary file, but
16923         we need a prefix for ssh, which has its own temporary file handling.
16924         (tramp-handle-delete-directory): Add "-f" to rmdir.
16925         (tramp-handle-dired-recursive-delete-directory): Call "rm -rf".
16926         (tramp-handle-insert-file-contents): Don't raise a tramp-error but
16927         a signal, in order to give the callee a chance to suppress.
16928         (tramp-handle-write-region): Set owner also in case of short
16929         track.  Don't use compatibility calls for `write-region' anymore.
16930         (tramp-clear-passwd): Add parameter VEC.  Adapt all callees.
16931         (tramp-append-tramp-buffers): Apply `tramp-list-tramp-buffers'.
16933         * net/tramp-cmds.el: New file.
16935         * net/tramp-gw.el (tramp-gw-basic-authentication): Apply VEC to
16936         `tramp-clear-passwd'.
16938         * net/trampver.el: Update release number.
16940 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
16942         * progmodes/gud.el (gud-target-name): Move definition before use.
16944         * progmodes/dcl-mode.el: Require imenu at compile time.
16946         * progmodes/cc-engine.el (c-maybe-stale-found-type):
16947         Pacify byte-compiler.
16949         * obsolete/fast-lock.el: Use featurep test instead of string-match.
16951         * eshell/esh-mode.el (eshell-handle-ansi-color):
16952         Require ansi-color at compile time too.
16954         * eshell/em-unix.el (eshell/info): Require info at compile time too.
16956         * w32-fns.el: Require w32-vars.
16958         * diff-mode.el (diff-refine-hunk): Require smerge-mode at compile
16959         time too.
16961 2007-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
16963         * double.el ([ignore]): Use `ignore'.
16964         (double-setup): Inline into double-mode.
16965         (double-mode): Use define-minor-mode.
16967 2007-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
16969         * textmodes/reftex.el: Move require easymenu before first use.
16970         (reftex-info): Require info at compile too.
16972         * textmodes/org-publish.el (org-publish-org-to-html)
16973         (org-publish-org-to): Require org at compile time too.
16974         (org-publish-attachment): Require at compile time too.
16976         * term/tty-colors.el (w32-tty-standard-colors):
16977         Pacify byte-compiler.
16979         * term/pc-win.el (frame-creation-function-alist): Add to this
16980         instead of setting frame-creation-function.
16982         * play/blackbox.el (bb-up, bb-down): Use forward-line.
16984         * net/rcirc.el (rcirc-markup-text-functions): Move definition earlier.
16986         * calendar/todo-mode.el: Require calendar at compile time.
16988         * calendar/cal-hebrew.el: Require holidays at compile time.
16990         * w32-vars.el: Provide w32-vars.
16992         * term/w32-win.el: Require w32-vars.
16993         (w32-color-map): Pacify byte-compiler.
16995         * loadup.el: Load w32-vars before term/w32-win.
16997 2007-10-20  Juri Linkov  <juri@jurta.org>
16999         * textmodes/fill.el (fill-paragraph): When the region is active,
17000         don't try other `or' branches regardless of the value returned by
17001         fill-region; just return t.
17003 2007-10-20  Eric S. Raymond  <esr@snark.thyrsus.com>
17005         * vc.el (vc-do-command): Condition out a misleading message when
17006         running asynchronously.
17007         (vc-deduce-fileset): New argument enables using an unregistered
17008         visited file as a singleton fileset if nothing else is available.
17009         (vc-next-action): Restore file-registering behavior.
17011 2007-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
17013         * calc/README: Add recent news.
17015 2007-10-20  Dan Nicolaescu  <dann@ics.uci.edu>
17017         * term/x-win.el (x-gtk-stock-map, icon-map-list)
17018         (x-gtk-map-stock): Delete duplicated definitions from merge.
17020         * progmodes/compile.el (compilation-skip-to-next-location)
17021         (compilation-skip-threshold, compilation-skip-visited):
17022         Move definitions earlier.
17024         * play/decipher.el (decipher-keypress):
17025         * play/zone.el (zone-fall-through-ws):
17026         * play/landmark.el (lm-move-down, lm-move-up):
17027         * play/handwrite.el (handwrite):
17028         * mail/mspools.el (mspools-visit-spool):
17029         * wdired.el (wdired-next-line, wdired-previous-line):
17030         * tar-mode.el (tar-subfile-save-buffer):
17031         * scroll-lock.el (scroll-lock-next-line)
17032         (scroll-lock-previous-line):
17033         * image-dired.el (image-dired-next-line)
17034         (image-dired-previous-line):
17035         * ediff-help.el (ediff-help-message-line-length):
17036         Use forward-line.
17038         * smerge-mode.el (smerge-auto-refine):
17039         * diff-mode.el (diff-auto-refine): Add :group.
17041         * play/yow.el: Require doctor at compile time.
17043         * vmsproc.el: Provide vmsproc.
17044         (command-send-input): Use forward-line.
17046         * vms-patch.el: Require ps-print and vmsproc at compile time.
17048         * vc-mtn.el (log-view-message-re, log-view-file-re)
17049         (log-view-font-lock-keywords): Pacify byte-compiler.
17051         * vc-hg.el: Require log-view at compile time.
17053 2007-10-20  Eric S. Raymond  <esr@snark.thyrsus.com>
17055         * log-view.el (log-view-diff): Adapt log-view-diff for new VC API.
17057 2007-10-20  Glenn Morris  <rgm@gnu.org>
17059         * progmodes/f90.el (f90-font-lock-keywords-2)
17060         (f90-looking-at-type-like): Fix regexp typos.
17062 2007-10-19  Juanma Barranquero  <lekktu@gmail.com>
17064         * bs.el (bs--track-window-changes): Don't refresh the whole list.
17065         (bs-mode): Set mode-class property to special.
17067 2007-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17069         * diff-mode.el (diff-auto-refine): New var.
17070         (diff-hunk): Use it.
17071         (diff-ignore-whitespace-hunk): Rename diff-refine-ignore-spaces-hunk.
17072         (diff-refine-change): Rename from diff-fine-change.  Change it.
17073         (diff-refine-preproc): Rename from diff-fine-highlight-preproc.
17074         (diff-refine-hunk): Rename from diff-fine-highlight.
17076 2007-10-20  John Paul Wallington  <jpw@pobox.com>
17078         * help-fns.el (describe-variable-custom-version-info): New function
17079         to return variable's version or package version note.
17080         (describe-variable): Use it, display result.
17082 2007-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17084         * smerge-mode.el (smerge-auto-refine): New var.
17085         (smerge-next, smerge-prev): Use it.
17086         (smerge-batch-resolve): Ad-hoc trick for Arch's .rej files.
17088         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
17089         Add `body' arg.  Cleanup the check-narrow-maybe/re-narrow-maybe mess.
17091         * vc-bzr.el (vc-bzr-diff-tree):
17092         * vc-git.el (vc-git-diff-tree):
17093         * vc-hg.el (vc-hg-diff-tree):
17094         * vc-mcvs.el (vc-mcvs-diff-tree):
17095         * vc-mtn.el (vc-mtn-diff-tree):
17096         * vc-svn.el (vc-svn-diff-tree): Remove.
17098         * vc-mtn.el (vc-mtn-revision-completion-table):
17099         * vc-cvs.el (vc-cvs-revision-completion-table):
17100         * vc-arch.el (vc-arch-revision-completion-table):
17101         * vc-hg.el (vc-hg-revision-completion-table, vc-hg-revision-table):
17102         * vc-git.el (vc-git-revision-completion-table, vc-git-revision-table):
17103         Make it work when the arg is a list of files.
17105 2007-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17107         * vc.el: Remove `diff-tree' operation, now subsumed by `diff'.
17108         Also `revision-completion-table' now takes a list of files.
17109         (vc-deduce-fileset): Remove unused var `regexp'.
17110         Only obey allow-directory-wildcard in dired buffers.
17111         (vc-default-diff-tree): Remove.
17112         (vc-diff-added-files): New var.
17113         (vc-diff-internal): Use it.  Remove arg `backend'.  Update callers.
17114         (vc-version-diff): Revert from `vc-history-diff' to the original name.
17115         Remove the `backend' arg.
17116         (vc-contains-version-controlled-file): Remove.
17117         (vc-diff): Bring it closer to the version in Emacs-22.
17118         (vc-revert): Fix typo in let-binding.
17119         (vc-default-unregister): Remove.
17120         (vc-dired-buffers-for-dir): Remove N^2 behavior.
17122 2007-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
17124         * textmodes/two-column.el (2C-split, 2C-merge):
17125         * textmodes/bib-mode.el (bib-find-key, mark-bib):
17126         * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
17127         * progmodes/etags.el (find-tag-in-order, etags-tags-apropos)
17128         * progmodes/ada-xref.el (ada-get-all-references):
17129         * obsolete/mlsupport.el (ml-next-line, ml-previous-line):
17130         * emulation/vi.el (vi-previous-line-first-nonwhite)
17131         (vi-effective-range, vi-put-before):
17132         * emulation/edt.el (edt-next-line, edt-previous-line)
17133         (edt-paragraph-forward): Use forward-line.
17135         * progmodes/etags.el (tags-apropos): Require apropos at compile
17136         time too.
17138         * progmodes/prolog.el: Require comint when compiling.
17139         (inferior-prolog-flavor): Move defvar before use.
17141 2007-10-19  Richard Stallman  <rms@gnu.org>
17143         * font-core.el (turn-on-font-lock-if-desired):
17144         Rename from `turn-on-font-lock-if-enabled'.
17145         Fully obey `font-lock-global-modes'.
17147 2007-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17149         * diff-mode.el (diff-fine-highlight-preproc): Stick to minimal changes
17150         which will not affect the behavior of things like forward-word.
17151         (diff-fine-highlight): Preserve point.
17153         * doc-view.el (doc-view-mode-map): Use remapping.
17154         Don't rebind C-v, M-v to their default value.
17155         Don't bind mouse-4 and mouse-5: it's mwheel.el's job.
17157         * smerge-mode.el: Add word-granularity refinement.
17158         (smerge-refine-forward-function, smerge-refine-ignore-whitespace)
17159         (smerge-refine-weight-hack): New vars.
17160         (smerge-refine-forward): New fun.
17161         (smerge-refine-chopup-region, smerge-refine-highlight-change): Use them.
17162         (smerge-refine-subst): Use them as well.  Preserve point.
17164 2007-10-19  Juanma Barranquero  <lekktu@gmail.com>
17166         * follow.el (follow-unload-function): New function.
17168         * loadhist.el (unload-function-features-list):
17169         Rename from `unload-hook-features-list'.
17170         (unload-hook-features-list): Add as obsolete alias.
17171         (unload-feature): Use `unload-function-features-list'
17172         and new FEATURE-unload-function.
17174 2007-10-19  Glenn Morris  <rgm@gnu.org>
17176         * bindings.el (mouse-minor-mode-menu)
17177         (minor-mode-menu-from-indicator): Move to mouse.el.
17178         * mouse.el (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
17179         Move here from bindings.el.
17181 2007-10-19  Richard Stallman  <rms@gnu.org>
17183         * help-fns.el (describe-function-1): Don't use the advice origname
17184         if it has no function definition.
17186 2007-10-18  Johan Bockgård  <bojohan@gnu.org>
17188         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Save excursion.
17189         Use `save-restriction' rather than `widen'.
17191 2007-10-18  Richard Stallman  <rms@gnu.org>
17193         * time.el (display-time-world-time-format): Display day # not month #.
17195 2007-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
17197         * files.el (auto-mode-alist): Don't use doc-view for PS and EPS.
17199         * doc-view.el: Remove version keyword.
17200         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17201         (doc-view-ps2pdf-program): Use executable-find.  Simplify custom type.
17202         (doc-view-ghostscript-options): Improve custom type.
17203         (doc-view-cache-directory, doc-view-conversion-buffer)
17204         (doc-view-conversion-refresh-interval): Simplify custom type.
17206 2007-10-18  Tassilo Horn  <tassilo@member.fsf.org>
17208         * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
17209         (doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
17210         (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
17211         (doc-view-ps->pdf-sentinel, doc-view-ps->pdf):
17212         Remove superfluous messages.
17213         (doc-view-mode-map): Use the image-mode scrolling commands.
17214         Don't rebind C-x k.
17216 2007-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
17218         * doc-view.el (doc-view-ghostscript-options, doc-view-ps->pdf):
17219         Add comment about "-dSAFER".
17221 2007-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17223         * term/xterm.el: Don't require xt-mouse.
17224         (terminal-init-xterm): Run terminal-init-xterm-hook rather than
17225         calling turn-on-xterm-mouse-tracking-on-terminal directly.
17227         * xt-mouse.el: Don't change the global function-key-map anny more.
17228         (xterm-mouse-mode): Use terminal-init-xterm-hook.
17229         Don't use after-make-frame-functions now that term/xterm.el calls
17230         us directly.
17231         (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
17232         Use turn-*-xterm-mouse-tracking-on-terminal.  Only once per terminal.
17233         (turn-on-xterm-mouse-tracking-on-terminal): Make param optional.
17234         Setup input-decode-map and remember that xterm-mouse-mode was
17235         enabled in this terminal.
17236         (turn-off-xterm-mouse-tracking-on-terminal): Only disable on those
17237         terminals where it has been enabled.
17239         * faces.el (tty-create-frame-with-faces): Make sure not only
17240         tty-run-terminal-initialization but also set-locale-environment
17241         are run only once per terminal.
17242         (tty-run-terminal-initialization): Don't check if the terminal was
17243         already initted.
17245         * international/encoded-kb.el (encoded-kbd-setup-display): Be careful
17246         not to remove keymaps that just happen to inherit from one of ours.
17247         When setting up our keymap, make sure it won't be accidentally
17248         modified by someone else.
17250 2007-10-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
17252         * textmodes/artist.el (artist-previous-line, artist-next-line):
17253         * dired.el (dired-next-line, dired-previous-line):
17254         * progmodes/delphi.el (delphi-newline):
17255         * textmodes/org.el (org-columns-eval):
17256         Use forward-line.
17258         * emerge.el (emerge-setup): Use insert-buffer-substring.
17259         (emerge-prepare-error-list, emerge-setup-with-ancestor): Likewise.
17261 2007-10-18  Juanma Barranquero  <lekktu@gmail.com>
17263         * textmodes/fill.el (fill-individual-paragraphs): Doc fix.
17264         (adaptive-fill-function): Doc fix.  Remove * from docstring.
17266 2007-10-18  Tom Horsley  <tom.horsley@att.net>
17268         * simple.el (interprogram-paste-function): Doc fix.
17269         (current-kill): Accept list of strings as well
17270         as single string from `interprogram-paste-function'.
17272 2007-10-18  Glenn Morris  <rgm@gnu.org>
17274         * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix.
17276 2007-10-18  Drew Adams  <drew.adams@oracle.com>
17278         * bindings.el (mode-line-minor-mode-keymap):
17279         Add mouse-minor-mode-menu on mouse-1.
17280         (mode-line-modes): Add mouse-1 to help-echo text.
17281         (mouse-minor-mode-menu, minor-mode-menu-from-indicator):
17282         New functions.
17283         (mode-line-minor-mode-help): Doc fix.
17285 2007-10-17  Juri Linkov  <juri@jurta.org>
17287         * textmodes/fill.el (fill-paragraph-or-region): Remove function
17288         at the request of RMS.
17289         (fill-paragraph): Change `arg' to optional `justify'.  Add interactive
17290         arg `region'.  Fix docstring.  At the first `or' branch add call to
17291         `fill-region' if it the region is active in transient-mark-mode.
17293         * bindings.el (esc-map): Bind M-q to fill-paragraph
17294         instead of fill-paragraph-or-region.
17296         * tutorial.el (tutorial--default-keys): Replace fill-paragraph-or-region
17297         with fill-paragraph.
17299         * textmodes/ispell.el (ispell-word): Add interactive arg `region'.
17300         Fix docstring.
17302         * indent.el (indent-for-tab-command): Change interactive spec from
17303         "P" to "p".  Add check for interactive arg before indenting the
17304         active region.
17306         * files.el (auto-mode-alist): Add \\. before PDF/PS/DVI extensions.
17307         Regroup.
17309 2007-10-17  Juanma Barranquero  <lekktu@gmail.com>
17311         * emacs-lisp/find-func.el: Don't require loadhist.
17313         * loadhist.el (feature-symbols, file-provides, file-requires)
17314         (file-set-intersect, file-dependents): Simplify.
17315         (unload-feature-special-hooks): Update list of special hooks.
17317 2007-10-17  Tassilo Horn  <tassilo@member.fsf.org>
17319         * bindings.el (completion-ignored-extensions): Remove pdf and dvi
17320         extensions since they can be viewed with doc-view.
17322         * files.el (auto-mode-alist): Make doc-view-mode the default mode
17323         for pdf, ps and dvi files.
17325         * doc-view.el: Make doc-view-mode the standard mode for viewing
17326         pdf, [e]ps and dvi files and add binding C-c C-c to toggle between
17327         text and image display.  Add binding C-c C-e to switch to an
17328         editing mode.
17329         (doc-view-ghostscript-options, doc-view-ps->pdf): Add "-dSAFER" to
17330         avoid security problems when rendering files from untrusted sources.
17332 2007-10-17  Aaron Hawley  <aaronh@garden.org>
17334         * tutorial.el (tutorial--save-tutorial): Display message when tutorial
17335         position is not saved.
17337 2007-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
17339         * doc-view.el: Mention xpdf.  Fix spelling of Ghostscript.
17340         (doc-view-ghostscript-options): Fix typo in doc string.
17342 2007-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17344         * progmodes/compile.el (compilation-next-error-function): Fix timestamp
17345         handling, so compilation-fake-loc works again.
17347         * server.el (server-select-display): Nop if we do not support m-f-o-d.
17348         (server-process-filter): Revert last change.
17350         * vc.el (vc-diff-sentinel, vc-diff-internal): Revert some change in the
17351         behavior unrelated to filesets.
17353 2007-10-17  Chong Yidong  <cyd@stupidchicken.com>
17355         * longlines.el (longlines-wrap-follows-window-size): Integer value
17356         specifies wrapping margin.
17357         (longlines-mode, longlines-window-change-function):
17358         Set window-specific wrapping margin based on the above.
17360 2007-10-17  John Wiegley  <johnw@newartisans.com>
17362         * eshell/esh-cmd.el (eshell-complex-commands): Add "ls".
17364 2007-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
17366         * server.el (server-process-filter): Only set display if X11 is
17367         supported.
17369 2007-10-17  Glenn Morris  <rgm@gnu.org>
17371         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
17372         Tweak regexp to avoid stack overflow.
17374 2007-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17376         * simple.el (reindent-then-newline-and-indent): Don't assume that
17377         indent-according-to-mode preserves point.
17379 2007-10-16  Juanma Barranquero  <lekktu@gmail.com>
17381         * bs.el (bs--make-header-match-string, bs-show-in-buffer)
17382         (bs--nth-wrapper): Simplify.
17383         (bs-select, bs--insert-one-entry): Simplify.  Use `when'.
17384         (bs-buffer-list): Simplify.  Use `when'.  Use `string-match-p'.
17385         (bs-sort-buffer-interns-are-last): Use `string-match-p'.
17386         (bs-attributes-list, bs-max-window-height, bs-must-always-show-regexp)
17387         (bs-maximal-buffer-name-column, bs-minimal-buffer-name-column)
17388         (bs-configurations, bs-default-configuration)
17389         (bs-alternative-configuration, bs-cycle-configuration-name)
17390         (bs-string-show-always, bs-string-show-never, bs-string-current)
17391         (bs-string-current-marked, bs-string-marked, bs-string-show-normally)
17392         (bs-sort-functions, bs-default-sort-name): Remove * in docstrings.
17393         (bs--redisplay, bs--goto-current-buffer, bs--current-buffer, bs-delete)
17394         (bs-apply-sort-faces, bs-next-config-aux): Use `when'.
17395         (bs--window-config-coming-from): Revert 2006-11-09 change.
17396         (bs--restore-window-config): Keep the selected frame.
17397         (bs--track-window-changes, bs--remove-hooks): New functions.
17398         (bs-mode): Use `define-derived-mode'.  Set hook to track window changes.
17399         (bs--create-header): Remove.
17400         (bs--create-header-line): New function, based on `bs--create-header'.
17401         (bs--show-header): Use `bs--create-header-line'.
17402         (bs--show-with-configuration): Revert 2006-11-09 change.
17403         Don't reuse window unless it is visible on the selected frame.
17404         Restore window configuration (possibly in a different frame)
17405         before creating any window.
17407 2007-10-16  Glenn Morris  <rgm@gnu.org>
17409         * simple.el (blink-matching-open): Don't report false errors with
17410         the `$' syntax class.
17412 2007-10-16  Richard Stallman  <rms@gnu.org>
17414         * emacs-lisp/advice.el (ad-get-advice-info): Change to a function.
17415         (ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
17416         (ad-is-advised, ad-get-advice-info-field)
17417         (ad-set-advice-info-field): Use ad-get-advice-info-macro.
17419 2007-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17421         * vc-hooks.el (vc-workfile-version): Compatibility alias.
17422         (vc-default-working-revision): Compatibility for backends.
17424 2007-10-15  Juanma Barranquero  <lekktu@gmail.com>
17426         * filesets.el (filesets-alist-get): Use `let' rather than `let*'.
17427         (filesets-ormap, filesets-sort-case-sensitive-flag)
17428         (filesets-remake-shortcut, filesets-ingroup-collect-files):
17429         Fix typos in docstrings.
17430         (filesets-conditional-sort, filesets-find-or-display-file)
17431         (filesets-data-get-name, filesets-data-get-data)
17432         (filesets-data-set, filesets-cmd-query-replace-getargs)
17433         (filesets-ingroup-collect): Doc fixes.
17435 2007-10-15  Sam Steingold  <sds@gnu.org>
17437         * mail/sendmail.el (sendmail-error-reporting-interactive)
17438         (sendmail-error-reporting-non-interactive): New variables for
17439         sendmail error reporting options to simplify support for imperfect
17440         sendmail emulators.
17441         (sendmail-send-it): Use them instead of list literals.
17443 2007-10-15  Juanma Barranquero  <lekktu@gmail.com>
17445         * help-fns.el: Revert previous change; it creates a
17446         dependency loop between advice.el and help-fns.el.
17448 2007-10-15  Juanma Barranquero  <lekktu@gmail.com>
17450         * help-fns.el: Require advice when compiling.
17452 2007-10-14  Drew Adams  <drew.adams@oracle.com>
17454         * emacs-lisp/ring.el (ring-convert-sequence-to-ring)
17455         (ring-insert+extend, ring-remove+insert+extend, ring-member)
17456         (ring-next, ring-previous): New functions.
17458 2007-10-14  Richard Stallman  <rms@gnu.org>
17460         * emacs-lisp/advice.el (documentation): Advice deleted.
17461         Doc for advised functions is now handled at C level.
17462         (ad-stop-advice, ad-start-advice): Don't enable or disable
17463         advice for `documentation'.
17464         (ad-advised-definition-docstring-regexp): Var deleted.
17465         (ad-make-advised-definition-docstring): Store orig name
17466         as text property of string.
17467         (ad-advised-definition-p): Check for text property of docstring.
17469         * help-fns.el (describe-function-1): Find source of advised functions.
17471 2007-10-14  Juri Linkov  <juri@jurta.org>
17473         * faces.el (describe-face): Allow handling a string as the face name.
17475         * textmodes/ispell.el (ispell-word): Call `ispell-region' on the
17476         active region in transient-mark-mode.
17477         (ispell-region): Change messages displayed at the start and end of
17478         the spell-checking to be the same.
17480         * startup.el (fancy-startup-tail): Say exactly what does the button
17481         dismiss ("Dismiss this startup screen").  Use text "Never show
17482         it again" for the checkbox after this button.
17483         (fancy-startup-screen, fancy-about-screen): Put point before the
17484         first link, so the user can quickly select links with the keyboard.
17485         (normal-mouse-startup-screen): Add more useful text describing how
17486         to follow a link.
17488 2007-10-14  Glenn Morris  <rgm@gnu.org>
17490         * progmodes/etags.el (select-tags-table): Disable undo in the
17491         `*Tags Table List*' buffer.
17493 2007-10-13  Eli Zaretskii  <eliz@gnu.org>
17495         * dired.el (dired-warn-writable): New face.
17496         (dired-warn-writable-face): New variable.
17497         (dired-font-lock-keywords): Use dired-warn-writable-face, instead
17498         of dired-warning-face, for group- and world-writable files.
17500 2007-10-13  Richard Stallman  <rms@gnu.org>
17502         * files.el (directory-abbrev-alist): Doc fix.
17504 2007-10-13  Jari Aalto  <jari.aalto@cante.net>
17506         * comint.el (comint-password-prompt-regexp): Add 'LDAP'.
17508 2007-10-12  Martin Rudalics  <rudalics@gmx.at>
17510         * frame.el (set-frame-configuration): Assign name parameter only
17511         if it has been set explicitly before.
17513 2007-10-11  Tom Tromey  <tromey@redhat.com>
17515         * progmodes/gdb-ui.el (gdb-info-stack-custom): Ensure current
17516         frame is visible.
17518 2007-10-10  Richard Stallman  <rms@gnu.org>
17520         * emacs-lisp/debug.el (debugger-setup-buffer): Disable undo
17521         in *Backtrace*.
17523         * faces.el (face-font-selection-order): Doc fix.
17525         * loadhist.el (unload-feature): Doc fix.
17527 2007-10-13  Glenn Morris  <rgm@gnu.org>
17529         * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string.
17530         (octave-re-search-forward-kw, octave-re-search-backward-kw):
17531         Add doc string, and an explicit COUNT argument.
17532         (octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
17533         `inc' to search functions.
17535         * faces.el (face-spec-set): When FRAME is nil, set the default for
17536         new frames (restores pre-2007-09-17 behavior).  Doc fix.
17538 2007-10-13  John W. Eaton  <jwe@octave.org>
17540         * progmodes/octave-mod.el (octave-looking-at-kw)
17541         (octave-re-search-forward-kw, octave-re-search-backward-kw):
17542         New functions.
17543         (octave-in-defun-p, calculate-octave-indent)
17544         (octave-blink-matching-block-open, octave-beginning-of-defun)
17545         (octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
17546         to search for regexps that contain case-sensitive keywords.
17547         (octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
17548         (octave-scan-blocks): Likewise, for octave-re-search-forward-kw.
17550 2007-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
17552         * frame.el (select-frame-set-input-focus): Fix typo "max" -> "mac".
17553         Do not use a single clause cond.
17555         * cus-start.el (all): Use test that does not match the X11 version
17556         for mac.
17558 2007-10-13  Markus Gritsch  <m.gritsch@gmail.com>  (tiny change)
17560         * progmodes/ebrowse.el (ebrowse-tree-mode): Disable undo in the
17561         BROWSE buffer.
17563 2007-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
17565         * cus-start.el (all): Undo previous change.
17567 2007-10-13  Glenn Morris  <rgm@gnu.org>
17569         * woman.el (woman0-rename): Fix paren typo.
17571         * mail/feedmail.el (feedmail-run-the-queue)
17572         (feedmail-look-at-queue-directory):
17573         * mail/reporter.el (reporter-dump-state):
17574         * net/eudc-hotlist.el (eudc-edit-hotlist):
17575         * net/eudc.el (eudc-display-records)
17576         (eudc-filter-duplicate-attributes)
17577         (eudc-distribute-field-on-records, eudc-query-form, eudc-process-form):
17578         * net/eudcb-bbdb.el (eudc-bbdb-filter-non-matching-record)
17579         (eudc-bbdb-query-internal):
17580         * net/eudcb-ldap.el (eudc-ldap-simple-query-internal):
17581         * net/socks.el (socks-build-auth-list):
17582         * progmodes/cc-cmds.el (top level):
17583         * progmodes/cc-styles.el (c-make-styles-buffer-local, c-set-style):
17584         * progmodes/cperl-mode.el (top level, cperl-imenu-addback)
17585         (cperl-write-tags, cperl-tags-treeify):
17586         * progmodes/ebnf-yac.el (ebnf-yac-token-table):
17587         * progmodes/ebnf2ps.el (ebnf-map-name, ebnf-dimensions):
17588         * progmodes/idlw-shell.el (idlwave-shell-filter-bp, top level):
17589         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
17590         (idlwave-toolbar-remove-everywhere):
17591         * progmodes/idlwave.el (idlwave-indent-line)
17592         (idlwave-sintern-keyword-list, idlwave-scan-user-lib-files)
17593         (idlwave-write-paths, idlwave-all-method-classes)
17594         (idlwave-all-method-keyword-classes, idlwave-entry-keywords)
17595         (idlwave-fix-keywords, idlwave-display-calling-sequence)
17596         (idlwave-complete-in-buffer):
17597         * textmodes/org.el (org-export-as-html, org-export-as-ascii)
17598         (org-fast-tag-selection):
17599         * textmodes/reftex-sel.el (reftex-select-item): Use mapc rather
17600         than mapcar.
17602 2007-10-13  Dan Nicolaescu  <dann@ics.uci.edu>
17604         * diff-mode.el (diff-fine-change): Add :group.
17606 2007-10-12  Dan Nicolaescu  <dann@ics.uci.edu>
17608         * cus-start.el (all): Use the same test as the 22.2 branch.
17610 2007-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17612         * diff-mode.el (diff-current-defun): Force recomputation of
17613         change-log-default-name.
17615 2007-10-12  Chong Yidong  <cyd@stupidchicken.com>
17617         * startup.el (fancy-startup-screen): Remove an unnecessary newline
17618         and some leftover logic regarding dedicated frames.  If showing
17619         concise startup screen, fit window to buffer.
17620         (command-line-1): If we will be using the splash screen, use
17621         find-file instead of find-file-other-window to find additional files.
17622         Comment out unused code for coping with the old sit-for behavior.
17624 2007-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17626         * term/xterm.el (xterm-function-map, xterm-alternatives-map): Use the
17627         `meta' modifier consistently, rather than using sometimes meta
17628         sometimes alt.
17630 2007-10-12  Martin Rudalics  <rudalics@gmx.at>
17632         * window.el (handle-select-window): Revert part of 2007-10-08
17633         change setting the input focus.
17635 2007-10-12  Glenn Morris  <rgm@gnu.org>
17637         * startup.el (command-line): Do not read abbrev file in batch mode.
17639         * emacs-lisp/byte-opt.el (top level):
17640         * mail/rmail.el (rmail-list-to-menu):
17641         * obsolete/hilit19.el (hilit-mode):
17642         * progmodes/cc-mode.el (c-postprocess-file-styles)
17643         (c-submit-bug-report):
17644         * textmodes/org-publish.el (org-publish-get-plist-from-filename):
17645         * textmodes/reftex.el (reftex-erase-all-selection-and-index-buffers)
17646         (reftex-access-parse-file):
17647         * textmodes/reftex-cite.el (reftex-do-citation)
17648         (reftex-insert-bib-matches):
17649         * textmodes/reftex-ref.el (reftex-offer-label-menu):
17650         * textmodes/reftex-sel.el (reftex-select-unmark):
17651         * textmodes/reftex-toc.el (reftex-toc-do-promote):
17652         * vc-mcvs.el (vc-mcvs-checkin): Use mapc rather than mapcar.
17654         * cus-edit.el (custom-variable-menu, custom-face-menu)
17655         (custom-group-menu): Check init-file-user rather than
17656         user-init-file, in case cus-edit is loaded by site-run-file.
17658 2007-10-11  Dan Nicolaescu  <dann@ics.uci.edu>
17660         * vc.el (vc-deduce-fileset): Delete unused code.
17661         (vc-next-action): Fix typos.
17663 2007-10-11  Juanma Barranquero  <lekktu@gmail.com>
17665         * bs.el (bs--mark-unmark): New function.
17666         (bs-mark-current, bs-unmark-current): Use it.
17668 2007-10-11  Eric S. Raymond  <esr@snark.thyrsus.com>
17670         * vc.el (vc-diff):
17671         (vc-diff-internal): Merge a patch by Juanma Barranquero.  Also,
17672         temporarily disable the check for his edge case of
17673         vc-diff (stopping it from grinding when called from $HOME), as
17674         it's calling some brittle code in vc-hooks.el.
17675         (with-vc-properties): Fix evaluation time of a macro argument.
17676         * ediff-vers.el (ediff-vc-internal):
17677         * vc-hooks.el:
17678         * loaddefs.el: Follow up on VC terminology change.
17680 2007-10-11  Juanma Barranquero  <lekktu@gmail.com>
17682         * follow.el (follow-stop-intercept-process-output):
17683         Use `follow-call-process-filter' rather than `process-filter'.
17684         Simplify.
17686 2007-10-11  Eric S. Raymond  <esr@snark.thyrsus.com>
17688         * vc-hooks.el (vc-registered): Robustify this function a bit
17689         against filenames with no directory component.
17691 2007-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
17693         * international/characters.el: Undo unwanted and unexplained change.
17695 2007-10-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
17697         * ps-print.el: Fix the usage of :foreground and :background face
17698         attributes.  Reported by Nikolaj Schumacher <n_schumacher@web.de>.
17699         (ps-print-version): New version 6.7.6.
17700         (ps-face-attributes, ps-face-attribute-list, ps-face-background):
17701         Fix code.
17702         (ps-face-foreground-color-p, ps-face-background-color-p)
17703         (ps-face-color-p): New inline funs.
17705 2007-10-10  Carsten Dominik  <dominik@science.uva.nl>
17707         * textmodes/org.el (org-additional-option-like-keywords): New constant.
17708         (org-complete): Use `org-additional-option-like-keywords'.
17709         (org-parse-local-options): New function.
17711 2007-10-10  Carsten Dominik  <dominik@science.uva.nl>
17713         * textmodes/org.el (org-in-clocktable-p): New function.
17714         (org-clock-report): Only update the table at point, or insert a new one.
17715         (org-clock-goto): New function.
17716         (org-open-file): Use `start-process-shell-command' instead of
17717         `shell-command' with an ampersand.
17718         (org-deadline, org-schedule): New argument REMOVE to remove the
17719         date from the entry.
17720         (org-agenda-schedule, org-agenda-deadline): Pass the prefix
17721         argument to `org-schedule' and `org-deadline'.
17722         (org-trim): Use the correct expressions for beginning and end of
17723         the string.
17724         (org-get-cleaned-entry): Trim the string before returning it.
17725         (org-clock-find-position): New function.
17726         (org-clock-into-drawer): New option.
17727         (org-agenda-tags-column): Rename from
17728         `org-agenda-align-tags-to-column'.
17729         (org-agenda-align-tags): Allow negative values for
17730         `org-agenda-tags-column'.
17731         (org-insert-labeled-timestamps-before-properties-drawer): Remove var.
17732         (org-agenda-to-appt): New optional argument FILTER.
17733         (org-completion-fallback-command): New variable.
17734         (org-complete): Use `org-completion-fallback-command'.
17735         (org-find-base-buffer-visiting): Catch the case that there is no
17736         buffer visiting the file.
17737         (org-property-or-variable-value): New function.
17738         (org-todo): Use `org-property-or-variable-value'
17739         (org-agenda-compact-blocks): New option.
17740         (org-prepare-agenda, org-agenda-list): Use `org-agenda-compact-blocks'.
17741         (org-agenda-schedule, org-agenda-deadline):
17742         Call `org-agenda-show-new-time'.
17743         (org-agenda-show-new-time): New argument PREFIX.
17744         (org-colgroup-info-to-vline-list): Fix but that cause a
17745         shift in the vertical lines.
17746         (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
17747         (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
17748         (org-indent-item): No arg in call to `org-fix-bullet-type'.
17749         (org-fix-bullet-type): Remove argument.
17750         (org-read-date): Check for am/pm twice, to catch the end time.
17751         (org-goto-map): Use `suppress-keymap'.
17752         (org-remember-apply-template): Respect the dynamically scoped
17753         selection character.
17755 2007-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
17757         * frame.el (frame-inherited-parameters): Remove unused `environment'
17758         parameter, and let server.el add `client' when needed.
17760         * server.el (server-create-tty-frame)
17761         (server-create-window-system-frame): Set frame-inherited-parameters.
17763         * frame.el (frame-inherited-parameters): New var.
17764         (make-frame): Use it.
17766         * font-lock.el (lisp-font-lock-keywords-2): Remove let-environment.
17768         * env.el (let-environment): Remove.  Unused.
17769         (read-envvar-name): Simplify.
17770         (setenv): Remove unused arg `frame'.
17772         * help-fns.el (describe-variable): Add missing "  " for multiline
17773         obsolescence info and missing EOL after global value.
17775 2007-10-10  Eric S. Raymond  <esr@snark.thyrsus.com>
17777         * add-log.el:
17778         * ediff-vers.el:
17779         * log-view.el:
17780         * pcvs.el:
17781         * vc-arch.el:
17782         * vc-bzr.el:
17783         * vc-cvs.el:
17784         * vc.el:
17785         * vc-git.el:
17786         * vc-hg.el:
17787         * vc-hooks.el:
17788         * vc-mcvs.el:
17789         * vc-mtn.el:
17790         * vc-rcs.el:
17791         * vc-sccs.el:
17792         * vc-svn.el: Terminology cleanup: workfile-version -> working-revision,
17793         {find,init,next,previous,annotate-*,log}-version ->
17794         {find,init,next,previous,annotate-*,log}-revision,
17795         annotate-focus-version -> annotate-working-revision, The term
17796         'focus' is gone.  The term 'revision' is now used consistently
17797         everywhere that reference to a revision ID is intended, replacing
17798         older use of 'version'.
17800 2007-10-10  Juanma Barranquero  <lekktu@gmail.com>
17802         * follow.el: Change all instances of "Follow Mode" to "Follow
17803         mode" in docstrings and messages.
17804         (follow-menu-filter): Fix arg passed to `bound-and-true-p'.
17806 2007-10-10  Eric S. Raymond  <esr@snark.thyrsus.com>
17808         * vc.el (vc-next-action): Rewrite completely; this principal
17809         entry point now operates on a current fileset selected either
17810         explicitly via VC-Dired or implicitly by visiting a file buffer,
17811         rather than always operating on the file of the current buffer as
17812         in older versions.  Rewrite the rest of the mode to match.
17813         (with-vc-properties): Rewrite to operate on a file list.
17814         (with-vc-file): vc-checkin takes a file list argument now.
17815         (vc-post-command-functions): This hook now receives a file list.
17816         (vc-do-command): Take a either a file or a file list as argument.
17817         (vc-deduce-fileset): New function for deducing a file list to
17818         operate on.
17819         (vc-next-action-on-file, vc-next-action-dired): Remove.
17820         Merge into vc-next-action.
17821         (vc-register): Adapt to the fact that vc-start-entry now takes a
17822         file list.
17823         (vc-register-with): New function.
17824         (vc-start-entry): Take a file list argument rather than a
17825         file argument.
17826         (vc-checkout): Cope with vc-start-entry taking a file list.
17827         (vc-steal-lock): Cope with with-vc-properties taking a
17828         file list.
17829         (vc-checkin): Take a file list argument rather than a file argument.
17830         (vc-finish-logentry): Use the filelist passed by vc-start-entry.
17831         (vc-diff-internal): Rewrite for filesets.
17832         (vc-diff-sentinel): New function, tests whether changes were
17833         written into a diff buffer.
17834         (vc-diff): Rewrite for filesets.
17835         (vc-version-diff): Rewrite for filesets.
17836         (vc-print-log): Take a fileset argument.
17837         (vc-revert): Revert the entire selected fileset, not just the
17838         current buffer.
17839         (vc-rollback): Roll back the entire selected fileset, if
17840         possible.  No longer accepts a prefix argument.
17841         (vc-update): Merge new changes for the entire selected
17842         fileset, not just the current buffer.
17843         (vc-revert-file): Cope with with-vc-properties taking a file list.
17844         (vc-default-dired-state-info): Add + status suffix if the file is
17845         modified.
17846         (vc-annotate-warp-version): Use the new diff machinery.
17847         (vc-log-edit): Take a file list argument rather than a file argument.
17849 2007-10-10  Michael Albinus  <michael.albinus@gmx.de>
17851         Sync with Tramp 2.1.11.
17853         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
17854         Pacify byte compiler.
17856         * net/trampver.el: Update release number.
17858 2007-10-09  Richard Stallman  <rms@gnu.org>
17860         * play/gamegrid.el (gamegrid-setup-default-font): Use face-spec-set.
17862 2007-10-09  Juanma Barranquero  <lekktu@gmail.com>
17864         * follow.el: Require easymenu.
17865         (follow-mode-hook, follow-mode): Doc fixes.
17866         (follow-mode-off-hook): Mark as obsolete.
17868 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
17870         * window.el (mouse-autoselect-window-cancel): Don't cancel for
17871         select-window or select-frame events.
17872         (handle-select-window): When autoselecting window set input
17873         focus.  Restructure.
17875         * frame.el (focus-follows-mouse): Move to frame.c.
17876         * cus-start.el (all): Add focus-follows-mouse.
17878 2007-10-08  Juanma Barranquero  <lekktu@gmail.com>
17880         * bs.el (bs-mode): Make sure global-font-lock-mode doesn't
17881         activate font-locking in the *buffer-selection* buffer.
17882         (bs-show-sorted): Doc fix.
17884         * bs.el (bs--get-marked-string, bs--get-modified-string)
17885         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
17886         (bs--get-mode-name, bs-mode): Fix typos in docstrings.
17887         (bs--format-aux): Doc fix.
17889 2007-10-08  Michaël Cadilhac  <michael@cadilhac.name>
17891         * progmodes/gud.el (gud-gud-gdb-command-name): Fix typo in docstring.
17893 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
17895         * progmodes/gud.el (gud-gud-gdb-command-name): New option.
17896         (gud-gdb): New function for old M-x gdb (text command mode).
17897         (gud-gdb-command-name, gdb): Move to...
17899         * progmodes/gdb-ui.el: ...here and adapt doc string.
17900         (gud-gdba-command-name, gdba): Delete.
17902 2007-10-08  Juanma Barranquero  <lekktu@gmail.com>
17904         * bs.el: Don't defvar `font-lock-verbose'.
17905         (bs-config-clear, bs-kill, bs-string-show-normally, bs-sort-functions)
17906         (bs--get-file-name): Fix typos in docstrings.
17907         (bs--show-header): Use `dolist' instead of `mapcar'.
17908         (bs-mode): Set `show-trailing-whitespace' to nil.
17909         (bs-buffer-sort-function, bs-mouse-select-other-frame)
17910         (bs-visits-non-file, bs-sort-buffer-interns-are-last, bs-show):
17911         Doc fixes.
17913 2007-10-08  Adam Hupp  <adam@hupp.org>  (tiny change)
17915         * progmodes/gud.el (pdb): Specify file for gud-break.
17917 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
17919         * progmodes/gud.el (gdb): Make graphical mode the default and
17920         switch to text command mode if appropriate, i.e., reverse previous
17921         arrangement.
17922         (gud-gdb-marker-filter): Adapt for above change.
17924         * progmodes/gdb-ui.el (gdb-init-1): Don't set the values
17925         gud-minor-mode and gud-marker-filter.
17926         (gdb-fullname-regexp): New variable.
17927         (gud-gdba-marker-filter): Use it to switch to text command
17928         mode if appropriate.
17930 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
17932         * progmodes/gud.el (gud-display-line): Find source buffer even when
17933         GUD buffer has its own frame.
17935 2007-10-08  Jan Djärv  <jan.h.d@swipnet.se>
17937         * term/x-win.el (icon-map-list): Set to nil for 22.1 compatibility.
17939 2007-10-08  Jan Djärv  <jan.h.d@swipnet.se>
17941         * term/x-win.el (x-gtk-stock-map): Version is 22.2.
17943 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
17945         * allout.el (allout-before-change-handler): Replace got-char by
17946         goto-char.
17948 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17950         * vc-svn.el (vc-svn-resolve-when-done, vc-svn-find-file-hook): New funs.
17951         Used to try and automatically enabled smerge-mode in the presence of
17952         conflicts and to call `svn resolved' when the conflicts are gone.
17953         (vc-svn-parse-status): Remember the svn-specific status.
17955 2007-10-08  Eli Zaretskii  <eliz@gnu.org>
17957         * menu-bar.el (menu-bar-search-documentation-menu): Rename from
17958         menu-bar-apropos-menu.  All users changed.
17959         (menu-bar-help-menu): Change menu symbols to better match the text
17960         displayed by the menu.
17962 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
17964         * files.el (file-name-sans-versions): Use [:alnum:] and also allow
17965         #, @, : and ^.
17967 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
17969         * pcvs-defs.el (cvs-mode-map): Bind TAB and backtab.
17971         * log-view.el (log-view-mode-map): Likewise.
17973         * diff-mode.el (diff-mode-shared-map): Likewise.
17975 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
17977         * files.el (file-name-sans-versions): Also allow `A-Z'.
17979         * vc.el: Mention all supported VC backends.
17981 2007-10-08  Richard Stallman  <rms@gnu.org>
17983         * wid-edit.el (widget-specify-button): Don't merge mouse-face with
17984         neighbouring buttons.
17986 2007-10-08  Andreas Schwab  <schwab@suse.de>
17988         * files.el (file-name-sans-versions): Also allow `_'.
17990 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
17992         * files.el (file-name-sans-versions): Allow - and a-z in version names.
17994         * log-view.el (log-view-mode-map, log-view-mode-menu):
17995         Bind log-view-annotate-version.
17996         (log-view-beginning-of-defun, log-view-end-of-defun)
17997         (log-view-annotate-version): New functions.
17998         (log-view-mode): Use log-view-beginning-of-defun and
17999         log-view-end-of-defun.
18001 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18003         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix staging.
18005 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18007         * wid-edit.el (widget-image-insert): Don't merge mouse-face with
18008         neighbouring buttons.
18010         * progmodes/compile.el (compilation-error-regexp-alist-alist):
18011         Recognize gcc's use of "note" for informational messages.
18013 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18015         * textmodes/css-mode.el (css-electric-keys): electrick->electric.
18016         (css-mode): Update correspondingly.
18018 2007-10-08  Dan Nicolaescu  <dann@ics.uci.edu>
18020         * vc-git.el (vc-git-log-view-mode): Add font-lock patterns for
18021         Signed-off-by, Acked-by and Merge.
18023 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18025         * ediff-init.el (ediff-verbose-p): This var is not a constant.
18027 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18029         * vc-mtn.el: New file.
18031         * vc-hooks.el (vc-handled-backends): Add Mtn.
18033 2007-10-08  Eli Zaretskii  <eliz@gnu.org>
18035         * files.el (find-file, find-file-other-window)
18036         (find-file-other-frame, find-file-existing, find-file-read-only)
18037         (find-file-read-only-other-window)
18038         (find-file-read-only-other-frame)
18039         (find-alternate-file-other-window, find-alternate-file): Doc fixes.
18041 2007-10-08  Nick Roberts  <nickrob@snap.net.nz>
18043         * progmodes/gud.el (gdb-ready): New variable.
18044         (gdb): Set it to nil.  Set gud-running to nil here...
18045         (gud-common-init): ...instead of here.
18047         * progmodes/gdb-ui.el (gdba, gdb-send, gdb-source-info):
18048         Use gdb-ready.  Discard input until GDB is ready to accept it.
18050 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18052         * dired.el (dired-warning): Inherit from font-lock-warning-face to
18053         make it show up with eight colors.
18055 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18057         * diff-mode.el (diff-sanity-check-hunk): Fix up the case when unified
18058         diffs are concatenated with no intervening line.
18060 2007-10-08  Dave Love  <fx@gnu.org>
18062         * progmodes/python.el: Merge changes from Dave Love's v2007-Sep-10.
18063         (python-font-lock-keywords): Update to the 2.5 version of the language.
18064         (python-quote-syntax): Let-bind font-lock-syntactic-keywords to nil.
18065         (python-backspace): Only behave funny in code.
18066         (python-compilation-regexp-alist): Add PDB stack trace regexp.
18067         (inferior-python-mode): Add PDB prompt regexp.
18068         (python-fill-paragraph): Refine the fenced-string regexp.
18069         (python-find-imports): Handle imports spanning several lines.
18070         (python-mode): Add `class' to hideshow support.
18072 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18074         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
18075         Use add-log-buffer-file-name-function rather than binding
18076         buffer-file-name, so we don't end up calling change-log-mode in *cvs*
18077         when `fi' is the ChangeLog file itself.
18079         * outline.el (outline-flag-region): Use front-advance.
18081 2007-10-08  Ilya Zakharevich  <ilyaz@cpan.org>
18083         * progmodes/cperl-mode.el: Merge upstream 5.23.
18084         (cperl-where-am-i): Remove function.
18085         (cperl-backward-to-noncomment): Don't go too far when skipping POD/HEREs
18086         (cperl-sniff-for-indent): De-invert [string] and [comment].
18087         When looking for label, skip s:m:y:tr.
18088         (cperl-indent-line): Likewise.
18089         (cperl-mode): Don't assume `font-lock-multiline' is auto-local.
18090         (cperl-windowed-init): Wrong `ps-print' handling.
18091         Both thanks to Chong Yidong.
18092         (cperl-look-at-leading-count): Could fail with unfinished RExen.
18093         (cperl-find-pods-heres): If the second part of s()[] is missing,
18094         don't try to highlight delimiters...
18096 2007-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18098         * progmodes/compile.el (compilation-get-file-structure): Complete last
18099         change by also using spec-directory in the puthash.
18101 2007-10-08  Riccardo Murri  <riccardo.murri@gmail.com>
18103         * vc-bzr.el (vc-bzr-file-name-relative): Use 'when' instead of 'and'.
18104         (vc-bzr-status): Fix shadowing of variable 'status'.
18105         (vc-bzr-workfile-version): Use correct path to 'last-revision' file.
18106         Use `expand-file-name' instead of `concat'.
18107         (vc-bzr-annotate-command): Use option name '--long' instead of '-l'.
18108         Update annotation line regexp.  Fixes launchpad.net [Bug 137435].
18110 2007-10-08  Jason Rumney  <jasonr@gnu.org>
18112         * frame.el (focus-follows-mouse): Doc-fix.  Change default on w32.
18114 2007-10-08  Richard Stallman  <rms@gnu.org>
18116         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom.
18117         Add `safe-local-variable' property.
18118         (lisp-body-indent): Likewise.
18120 2007-10-08  Richard Stallman  <rms@gnu.org>
18122         * files.el (hack-local-variables-confirm): Rename arg VARS to ALL-VARS.
18123         Add doc string.
18125 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18127         * files.el (backup-buffer-copy): Try to overwrite old backup first.
18129 2007-10-08  Martin Rudalics  <rudalics@gmx.at>
18131         * repeat.el (repeat): Use last-repeatable-command instead of
18132         real-last-command.  Run pre- and post-command hooks for
18133         self-insertion.  Update doc-string.
18135 2007-10-08  Alexandre Julliard  <julliard@winehq.org>
18137         * vc-git.el (vc-git-state): Call git-add --refresh to update the
18138         state of the file.
18139         (vc-git-workfile-unchanged-p): Delegate implementation to vc-git-state.
18140         (vc-git-create-repo): Fix invalid command.
18142 2007-10-08  Richard Stallman  <rms@gnu.org>
18144         * textmodes/flyspell.el (flyspell-mode):
18145         Catch errors in flyspell-mode-on.
18147 2007-10-09  Juanma Barranquero  <lekktu@gmail.com>
18149         * term/x-win.el (x-alternatives-map): Remove spurious parenthesis.
18151 2007-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
18153         * international/encoded-kb.el (encoded-kbd-setup-display):
18154         Use input-decode-map rather than local-key-translation-map.
18156         * term/rxvt.el (rxvt-alternatives-map): New map.
18157         (terminal-init-rxvt): Use it.
18158         Bind rxvt-function-map in input-decode-map.
18160         * term/xterm.el (xterm-alternatives-map): New map.
18161         (terminal-init-xterm): Use it.
18162         Bind xterm-function-map in input-decode-map.
18164         * term/x-win.el (x-alternatives-map): New var.
18165         (x-setup-function-keys): Use it.
18167         * help-fns.el (describe-variable): Slightly change the layout of
18168         meta-info to separate it better from the docstring.
18169         Standardize insertion of extra empty lines in various circumstances.
18171         * diff-mode.el (diff-hunk-style): New fun.
18172         (diff-end-of-hunk): Use it.
18173         (diff-context->unified): Use the new `apply' undo element,
18174         if applicable, so as to save undo-log space.
18175         (diff-fine-change): New face.
18176         (diff-fine-highlight-preproc): New function.
18177         (diff-fine-highlight): New command.
18178         (diff-mode-map, diff-mode-menu): Add diff-fine-highlight.
18180         * smerge-mode.el (smerge-refine-chopup-region): Add `preproc' argument.
18181         (smerge-refine-highlight-change): Add `props' argument.
18182         (smerge-refine-subst): New function holding most of smerge-refine.
18183         (smerge-refine): Use it.
18185 2007-10-08  Eric S. Raymond  <esr@snark.thyrsus.com>
18187         * vc.el (vc-default-wash-log): Remove unused code, the
18188         log washers all live in the backends now.
18189         (vc-default-comment-history): Correct for the fact
18190         that wash-log is argumentless in the new API.
18192 2007-10-08  Michael Albinus  <michael.albinus@gmx.de>
18194         * net/tramp.el (tramp-find-foreign-file-name-handler): Check also host.
18195         (tramp-maybe-send-script): Apply `member' but `memq'.
18196         (tramp-advice-file-expand-wildcards): Simplify implementation.
18198 2007-10-08  Juanma Barranquero  <lekktu@gmail.com>
18200         * follow.el (follow-mode): Don't run hooks twice.  Use `when'.
18202         * mb-depth.el (minibuf-depth-indicator-function): New variable.
18203         (minibuf-depth-setup-minibuffer): Use it.
18205 2007-10-07  Glenn Morris  <rgm@gnu.org>
18207         * simple.el (bad-packages-alist): Clarify Semantic and CEDET
18208         version numbers.
18210 2007-10-06  Juri Linkov  <juri@jurta.org>
18212         * textmodes/fill.el (fill-paragraph-or-region): New function.
18214         * bindings.el (esc-map): Bind M-q to fill-paragraph-or-region
18215         instead of fill-paragraph.
18217         * tutorial.el (tutorial--default-keys): Replace fill-paragraph
18218         with fill-paragraph-or-region.  Suspend command is now the same
18219         `suspend-frame' on window systems and on tty.
18221         * image.el (image-type): Check if image-types is bound to not fail
18222         on tty.
18224         * delsel.el (delete-selection-pre-hook):
18225         * emulation/cua-base.el (cua-paste): Check if mouse-region-match
18226         is fbound to not fail on mouseless tty.
18228 2007-10-06  Michael Albinus  <michael.albinus@gmx.de>
18230         * net/tramp.el (top): Move loading of tramp-util.el and
18231         tramp-vc.el to tramp-compat.el.
18232         (tramp-make-tramp-temp-file): Complete rewrite.  Create remote
18233         temporary file if possible, in order to avoid a security hole.
18234         (tramp-do-copy-or-rename-file-out-of-band)
18235         (tramp-maybe-open-connection): Call `tramp-make-tramp-temp-file'
18236         with DONT-CREATE, because the connection is not setup yet.
18237         (tramp-handle-process-file): Rewrite temporary file handling.
18238         (tramp-completion-mode): New defvar.
18239         (tramp-completion-mode-p): Use it.
18241         * net/tramp-compat.el (top): Load tramp-util.el and tramp-vc.el.
18243         * net/tramp-fish.el (tramp-fish-handle-process-file):
18244         Rewrite temporary file handling.
18246 2007-10-06  Eric S. Raymond  <esr@snark.thyrsus.com>
18248         * vc.el: Workfile version -> focus version change.  Port various
18249         comments from new VC to reduce the noise in the diff.
18250         Patch in the new vc-create-repo function to go with the
18251         header comment about it already present.
18252         There are no changes to existing logic in this patch.
18253         (vc-revert-buffer1): Rename to vc-revert-buffer-internal.
18255 2007-10-06  Aaron Hawley  <aaronh@garden.org>
18257         * autoinsert.el (auto-insert-alist): Add a Texinfo entry.
18259 2007-10-05  Chris Moore  <dooglus@gmail.com>
18261         * server.el (server-kill-new-buffers): Doc fix.
18263 2007-10-05  John W. Eaton  <jwe@octave.org>
18265         * progmodes/octave-mod.el (octave-abbrev-table): Add "until".
18266         (octave-begin-keywords): Add "do".
18267         (octave-end-keywords): Remove "end".
18268         (octave-reserved-words): Add "end".  Remove "all_va_args",
18269         "gplot", and 'gsplot".
18270         (octave-text-functions): Remove "gset", "gshow", "set", and "show".
18271         (octave-variables): Remove "IMAGEPATH", "INFO_FILE",
18272         "INFO_PROGRAM", "LOADPATH", "__error_text__", "automatic_replot",
18273         "default_return_value", "define_all_return_values",
18274         "do_fortran_indexing", "empty_list_elements_ok",
18275         "gnuplot_has_multiplot", "implicit_str_to_num_ok",
18276         "ok_to_lose_imaginary_part", "prefer_column_vectors",
18277         "prefer_zero_one_indexing", "propagate_empty_matrices",
18278         "resize_on_range_error", "treat_neg_dim_as_zero",
18279         "warn_assign_as_truth_value", "warn_comma_in_global_decl",
18280         "warn_divide_by_zero", "warn_function_name_clash",
18281         "warn_missing_semicolon", "whitespace_in_literal_matrix".
18282         Add "DEFAULT_EXEC_PATH", "DEFAULT_LOADPATH", "IMAGE_PATH",
18283         "crash_dumps_octave_core", "sighup_dumps_octave_core",
18284         "sigterm_dumps_octave_core".
18285         (octave-block-match-alist): Remove "end" from block-end keywords.
18286         (octave-mode): Update ftp site address.
18288 2007-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
18290         * vc.el: Reorder functions, no code changes.
18292 2007-10-04  Michael Albinus  <michael.albinus@gmx.de>
18294         * net/tramp.el (tramp-make-temp-file): Move to tramp-compat.el.
18295         (tramp-do-copy-or-rename-file-directly): Handle tmpfile only in
18296         the cond clauses where needed.
18297         (tramp-handle-write-region): Rearrange code for proper handling of
18298         tmpfile.
18300         * net/tramp-compat.el (tramp-compat-make-temp-file): New defsubst.
18302         * net/tramp.el:
18303         * net/tramp-fish.el:
18304         * net/tramp-ftp.el:
18305         * net/tramp-smb.el: Rename `tramp-make-temp-file' to
18306         `tramp-compat-make-temp-file'.
18308 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
18310         * image-dired.el (image-dired-image-at-point-p): Fix typo in docstring.
18312 2007-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18314         * emacs-lisp/copyright.el (copyright-update): Don't update if the file
18315         already uses a more recent copyright version than the "current" one.
18317 2007-10-03  Michaël Cadilhac  <michael@cadilhac.name>
18319         * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
18320         (doc-view-insert-image): Minor aesthetical docstring changes.
18322 2007-10-03  Tassilo Horn  <tassilo@member.fsf.org>
18324         * doc-view.el (doc-view): Don't ignore pdf and dvi files when
18325         completing filename.
18326         (doc-view-search-internal): Docstring change.
18328 2007-10-03  Michael Albinus  <michael.albinus@gmx.de>
18330         * net/tramp.el (top): Add tramp-compat to `tramp-unload-hook'.
18331         (tramp-file-name-handler-alist):
18332         Add `tramp-handle-insert-file-contents-literally'.  Needed for XEmacs.
18333         (tramp-make-temp-file): Use `make-temp-name'.  `make-temp-file',
18334         used before, creates the file already, which is not desired.
18335         (tramp-do-copy-or-rename-file-directly): Simplify handling of
18336         temporary file.
18337         (tramp-handle-insert-file-contents): Assign the result in the
18338         short track case.
18339         (tramp-handle-insert-file-contents-literally): New defun.
18340         (tramp-completion-mode-p): Revert change from 2007-09-24.
18341         Checking for `return' etc as last character is not sufficient, for
18342         example in dired-mode when entering <g> (revert-buffer) or
18343         <s> (dired-sort).
18345         * net/tramp-compat.el (top): Add also compatibility code for loading
18346         appropriate timer package.
18347         (tramp-compat-copy-tree): Check for `subrp' and `symbol-file' in
18348         order to avoid autoloading problems.
18350         * net/tramp-fish.el:
18351         * net/tramp-smb.el: Move further compatibility code to tramp-compat.el.
18353         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Handle the case
18354         where the second parameter of `copy-file' or `rename-file' is a
18355         remote file but not via ftp.
18357 2007-10-02  Richard Stallman  <rms@gnu.org>
18359         * frame.el (cursor-in-non-selected-windows): Doc fix.
18361 2007-10-01  Thien-Thi Nguyen  <ttn@gnuvola.org>
18363         * play/zone.el (zone): Let-bind show-trailing-whitespace to nil.
18364         Suggested by Chris Moore <christopher.ian.moore@gmail.com>.
18366 2007-10-01  Jay Belanger  <jay.p.belanger@gmail.com>
18368         * calc/calc-math.el (math-largest-emacs-expt): Handle the cases
18369         when `expt' doesn't give range errors.
18371 2007-10-01  Markus Triska  <markus.triska@gmx.at>
18373         * calc/calc-math.el (math-smallest-emacs-expt):
18374         Make the computation more robust.
18376 2007-09-30  David Kastrup  <dak@gnu.org>
18378         * startup.el (argv): Alias for `command-line-args-left' to use as
18379         `(pop argv)' inside of --eval command sequences.  Allows for
18380         passing shell commands into Emacs verbatim without need for Lisp
18381         quoting.
18383         * autorevert.el (auto-revert-handler): In `auto-revert-tail-mode',
18384         check only for changed size.
18385         (auto-revert-tail-handler): Get size from caller.  If the file has
18386         shrunk, tail the whole file again (the file presumably has been
18387         rewritten).
18389         * woman.el (woman-topic-all-completions, woman-mini-help):
18390         Fix fallout from 2007-09-07 introduction of `dolist' when the list
18391         actually was being manipulated in the loop.
18392         (woman-Cyg-to-Win, woman-pre-process-region)
18393         (woman-horizontal-escapes, woman-if-body, woman-unescape)
18394         (woman-strings, woman-special-characters, woman1-hc)
18395         (woman-change-fonts, woman-find-next-control-line):
18396         Use `match-beginning' rather than `match-string' when the result is
18397         just used as a flag.
18399 2007-09-30  Michael Albinus  <michael.albinus@gmx.de>
18401         * net/tramp-compat.el: New file.
18403         * net/tramp.el:
18404         * net/tramp-fish.el:
18405         * net/tramp-smb.el:
18406         * net/tramp-uu.el:
18407         * net/trampver.el: Move compatibility code to tramp-compat.el.
18408         Apply `mapc' instead of `mapcar' when the code needs side effects
18409         only.  Move utf-8 coding cookie to the second line.
18411 2007-09-30  Reiner Steib  <Reiner.Steib@gmx.de>
18413         * term/x-win.el (x-gtk-stock-map): Add Gnus and MH-E icons.
18414         Improve custom type.
18415         (icon-map-list): Make it customizable.  Document how to disable
18416         stock icons.
18418 2007-09-30  Richard Stallman  <rms@gnu.org>
18420         * play/zone.el (zone-hiding-modeline): Use mode-line-format.
18422 2007-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18424         * t-mouse.el (gpm-mouse-mode): Rename from t-mouse-mode.  Rewrite.
18425         (t-mouse-mode): New compatibility alias.
18427 2007-09-28  Dan Nicolaescu  <dann@ics.uci.edu>
18429         * server.el (server-delete-client): Only delete the terminal if it
18430         is non-nil.
18432 2007-09-28  Michael Albinus  <michael.albinus@gmx.de>
18434         * net/tramp.el (with-file-property, with-connection-property):
18435         Highlight as keyword.
18436         (tramp-rfn-eshadow-setup-minibuffer)
18437         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
18438         (tramp-set-file-uid-gid, tramp-do-copy-or-rename-file-via-buffer)
18439         (tramp-do-copy-or-rename-file-directly)
18440         (tramp-do-copy-or-rename-file-out-of-band)
18441         (tramp-handle-shell-command, tramp-get-debug-buffer)
18442         (tramp-send-command-and-read, tramp-equal-remote)
18443         (tramp-get-local-gid): Pacify byte-compiler.
18444         (tramp-handle-file-name-directory): Result shall not be expanded.
18445         (tramp-find-foreign-file-name-handler): Rewrite.
18446         (tramp-dissect-file-name): Add optional parameter NODEFAULT.
18448         * net/tramp-cache.el (tramp-cache-print): Pacify byte-compiler.
18450         * net/tramp-fish.el (tramp-fish-handle-expand-file-name):
18451         Apply `tramp-completion-mode-p'.
18452         (tramp-fish-handle-set-file-times)
18453         (tramp-fish-handle-executable-find)
18454         (tramp-fish-handle-process-file, tramp-fish-get-file-entries)
18455         (tramp-fish-retrieve-data): Pacify byte-compiler.
18457         * net/tramp-gw.el (tramp-gw-basic-authentication):
18458         Call `tramp-read-passwd' with first parameter `nil'.
18460 2007-09-28  Glenn Morris  <rgm@gnu.org>
18462         * mail/supercite.el (sc-attribs-filter-namelist): Use mapc rather
18463         than mapcar.
18465         * textmodes/tex-mode.el (tex-suscript-height-ratio)
18466         (tex-suscript-height-minimum): New customizable variables.
18467         (tex-suscript-height): New function.
18468         (superscript, subscript): Set height using tex-suscript-height
18469         rather than fixing at 0.8.
18470         (tex-fontify-script, tex-font-script-display): Add :version tag.
18472 2007-09-27  Juanma Barranquero  <lekktu@gmail.com>
18474         * progmodes/python.el (python-eldoc-function): Doc fix.
18476 2007-09-27  Glenn Morris  <rgm@gnu.org>
18478         * image.el (image-type-auto-detected-p): Doc fix.  Don't detect an
18479         image if it is not in image-type-auto-detectable, or is there with
18480         a nil value.
18482 2007-09-27  Michael Albinus  <michael.albinus@gmx.de>
18484         * net/tramp.el (tramp-maybe-open-connection): Make test for alive
18485         connection more robust.
18487 2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
18489         * emacs-lisp/eldoc.el (eldoc-function-argstring-format):
18490         Deal with the case that special &keywords are at the beginning or
18491         end of the argument list.  Also add some (incomplete) support for
18492         non-standard arglists.
18494 2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
18496         * emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
18497         (eldoc-message-commands, eldoc-current-idle-delay)
18498         (eldoc-function-argstring-format): Fix typos in docstrings.
18500 2007-09-26  Jay Belanger  <jay.p.belanger@gmail.com>
18502         * calc/calc-units.el (calc-convert-units)
18503         (calc-convert-temperature): Remove unnecessary colons.
18505 2007-09-26  Bastien Guerry  <bzg@altern.org>
18507         * textmodes/org-export-latex.el (org-export-latex-tables-verbatim):
18508         New function.
18509         (org-export-latex-remove-from-headlines): Name changed because of typo.
18510         (org-export-latex-quotation-marks-convention): Option removed.
18511         (org-export-latex-make-preamble): Handle the DATE option.
18512         (org-export-latex-cleaned-string): Now the only cleaning function,
18513         synched up with org.el.
18514         (org-export-latex-lists, org-export-latex-parse-list)
18515         (org-export-list-to-latex): New functions.
18517 2007-09-26  Carsten Dominik  <dominik@science.uva.nl>
18519         * textmodes/org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
18520         (org-outline-regexp): New constant.
18521         (org-remember-handler): Throw error when the target file is not in
18522         org-mode.
18523         (org-cleaned-string-for-export): No longer call
18524         `org-export-latex-cleaned-string' with an argument.
18525         (org-get-tags): Returns now a list, not a string.
18526         (org-get-tags-string): New function.
18527         (org-archive-subtree): No need to split return of `org-get-tags'.
18528         (org-set-tags, org-entry-properties): Call `org-get-tags-string'
18529         instead of `org-get-tags'.
18530         (org-agenda-format-date): Rename from `org-agenda-date-format'.
18531         (org-time-from-absolute, org-agenda-format-date-aligned): New funs.
18532         (org-compatible-face): New argument INHERITS.  Inherit from this
18533         face if possible.
18534         (org-level-1, org-level-2, org-level-3, org-level-4)
18535         (org-level-5, org-level-6, org-level-7, org-level-8)
18536         (org-special-keyword, org-drawer, org-column, org-warning)
18537         (org-archived, org-todo, org-done, org-headline-done, org-table)
18538         (org-formula, org-code, org-agenda-structure)
18539         (org-scheduled-today, org-scheduled-previously)
18540         (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
18541         in the new way.
18542         (org-get-heading): New argument NO-TAGS.
18543         (org-fast-tag-selection-include-todo): Made defvar instead of
18544         defcustom, feature is not deprecated.
18545         (org-remember-store-without-prompt): New default value t.
18546         (org-todo-log-states): New variable.
18547         (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
18548         Compute the log states.
18549         (org-goto-map): More commands copied from global map.  Also bind
18550         `org-occur'.
18551         (org-goto): Made into a general lookup command.
18552         (org-get-location): Complete rewrite.
18553         (org-goto-exit-command): New variable.
18554         (org-goto-selected-point): New variable.
18555         (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit):
18556         Set the new variables.
18557         (org-paste-subtree): Whitespace insertion strategy revised.
18558         (org-remember-apply-template): Protect v-A from the possibility
18559         that v-a might be nil.
18560         (org-remember-handler): Insertion rules revised.
18561         (org-todo): Respect org-todo-log-states.
18562         (org-up-heading-safe): New function.
18563         (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
18565 2007-09-26  Dan Nicolaescu  <dann@ics.uci.edu>
18567         * progmodes/cc-cmds.el (c-indent-line-or-region): Only indent the
18568         region if in transient-mark-mode.
18570 2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
18572         * calc/calc-ext.el (calc-init-extensions, calc-reset):
18573         * calc/calc-help.el (calc-full-help):
18574         * calc/calc-misc.el (another-calc):
18575         * calc/calc-store.el (calc-var-name-map):
18576         * calc/calc-stuff.el (calc-flush-caches):
18577         * calc/calc-units.el (math-build-units-table):
18578         * calc/calc.el (calc-digit-map, calc-dispatch-map, calc-mode)
18579         (calc-quit):
18580         * calendar/icalendar.el (icalendar--format-ical-event)
18581         (icalendar--convert-ical-to-diary):
18582         * emacs-lisp/authors.el (authors):
18583         * emacs-lisp/cust-print.el (custom-print-install)
18584         (custom-print-uninstall):
18585         * emacs-lisp/disass.el (disassemble-1):
18586         * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
18587         * emacs-lisp/edebug.el (byte-compile-resolve-functions):
18588         * emacs-lisp/elint.el (elint-current-buffer, elint-check-defun-form)
18589         (elint-check-let-form, elint-check-condition-case-form)
18590         (elint-initialize):
18591         * emacs-lisp/elp.el (elp-results):
18592         * emacs-lisp/generic.el (generic-mode-internal):
18593         * emacs-lisp/re-builder.el (reb-delete-overlays):
18594         * emacs-lisp/regi.el (regi-interpret):
18595         * emacs-lisp/sregex.el (sregex--char-aux):
18596         * emulation/cua-rect.el (cua--deactivate-rectangle)
18597         (cua--highlight-rectangle, cua--rectangle-post-command):
18598         * emulation/viper-keym.el (viper-toggle-key, viper-ESC-key):
18599         * emulation/viper-macs.el (viper-describe-kbd-macros)
18600         (viper-describe-one-macro):
18601         * emulation/viper-util.el (viper-setup-master-buffer):
18602         * emulation/viper.el (set-viper-state-in-major-mode):
18603         * international/mule-diag.el (describe-current-coding-system):
18604         * language/ethio-util.el (ethio-fidel-to-sera-buffer):
18605         * mail/emacsbug.el (report-emacs-bug):
18606         * net/ange-ftp.el (ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
18607         * obsolete/hilit19.el (hilit-unhighlight-region)
18608         (hilit-set-mode-patterns):
18609         * play/solitaire.el (solitaire-check, solitaire-solve):
18610         * play/zone.el (zone-pgm-rotate):
18611         * progmodes/ada-mode.el (ada-save-exceptions-to-file):
18612         * progmodes/ada-prj.el (ada-prj-display-page):
18613         * progmodes/delphi.el (delphi-search-directory, delphi-find-unit-file)
18614         (delphi-debug-mode-map, delphi-mode-map, delphi-mode):
18615         * progmodes/ebrowse.el (ebrowse-tree-mode, ebrowse-view-exit-fn)
18616         (ebrowse-member-mode, ebrowse-save-tree-as, ebrowse-save-class):
18617         * progmodes/sh-script.el (sh-make-vars-local)
18618         (sh-reset-indent-vars-to-global-values):
18619         * progmodes/sql.el (top):
18620         * progmodes/vhdl-mode.el (vhdl-set-style, vhdl-regress-line):
18621         * progmodes/xscheme.el (top):
18622         * textmodes/artist.el (artist-mt-get-symbol-from-keyword-sub)
18623         (artist-go-retrieve-from-symbol-sub, artist-go-get-symbol-shift-sub)
18624         (artist-fc-retrieve-from-symbol-sub, artist-vaporize-line)
18625         (artist-vaporize-lines, artist-ellipse-compute-fill-info)
18626         (artist-submit-bug-report):
18627         * textmodes/flyspell.el (flyspell-delay-commands)
18628         (flyspell-deplacement-commands):
18629         * textmodes/table.el (table--generate-source-epilogue, table-insert)
18630         (table--generate-source-cells-in-a-row, table--make-cell-map)
18631         (*table--cell-describe-bindings): Use `mapc' rather than `mapcar'.
18633 2007-09-25  Juanma Barranquero  <lekktu@gmail.com>
18635         * allout.el (produce-allout-mode-map, allout-process-exposed):
18636         * ansi-color.el (ansi-color-make-color-map):
18637         * autoinsert.el (auto-insert):
18638         * bookmark.el (bookmark-bmenu-list, bookmark-show-all-annotations):
18639         * dired-aux.el (dired-create-files):
18640         * dired.el (dired-restore-desktop-buffer):
18641         * ediff-diff.el (ediff-setup-fine-diff-regions):
18642         * ediff-mult.el (ediff-intersect-directories)
18643         (ediff-redraw-directory-group-buffer, ediff-dir-diff-copy-file)
18644         (ediff-redraw-registry-buffer):
18645         * ediff-ptch.el (ediff-fixup-patch-map):
18646         * ediff-util.el (ediff-toggle-multiframe, ediff-toggle-use-toolbar)
18647         (ediff-really-quit, ediff-clear-diff-vector):
18648         * emerge.el (emerge-really-quit):
18649         * ffap.el (ffap-replace-file-component):
18650         * filecache.el (file-cache-add-directory)
18651         (file-cache-add-directory-recursively)
18652         (file-cache-add-from-file-cache-buffer, file-cache-delete-file-regexp)
18653         (file-cache-delete-directory, file-cache-files-matching-internal)
18654         (file-cache-display):
18655         * files.el (cd):
18656         * find-lisp.el (find-lisp-insert-directory):
18657         * finder.el (finder-compile-keywords):
18658         * help.el (view-emacs-news):
18659         * hi-lock.el (hi-lock-write-interactive-patterns):
18660         * ido.el (ido-to-end, ido-set-matches-1):
18661         * image-dired.el (image-dired-display-thumbs, image-dired-remove-tag)
18662         (image-dired-mark-tagged-files):
18663         * jka-cmpr-hook.el (jka-compr-get-compression-info):
18664         * printing.el (pr-eval-local-alist, pr-eval-setting-alist):
18665         * ps-print.el (ps-background, ps-begin-file)
18666         (ps-build-reference-face-lists):
18667         * simple.el (clone-buffer):
18668         * startup.el (command-line):
18669         * tempo.el (tempo-insert-template, tempo-is-user-element)
18670         (tempo-forward-mark, tempo-backward-mark):
18671         * woman.el (woman-dired-define-keys): Use `mapc' rather than `mapcar'.
18673 2007-09-25  Glenn Morris  <rgm@gnu.org>
18675         * textmodes/tex-mode.el (tex-font-script-display): Doc fix.
18677         * view.el (view-search-no-match-lines): Add a doc string.
18678         Rewrite to simplify and work better.
18680 2007-09-24  Dan Nicolaescu  <dann@ics.uci.edu>
18682         * progmodes/cc-mode.el (c-mode-base-map):
18683         Use c-indent-line-or-region instead of c-indent-line.
18685         * indent.el (indent-for-tab-command): First check if the region is
18686         active.
18688 2007-09-24  Michaël Cadilhac  <michael@cadilhac.name>
18690         * whitespace.el (whitespace-tickle-timer): Don't install the timer if
18691         whitespace-rescan-timer-time is 0.
18693 2007-09-24  Karl Berry  <karl@gnu.org>
18695         * international/mule.el (coding-system-base): Fix doc string grammar.
18697 2007-09-24  Michael Albinus  <michael.albinus@gmx.de>
18699         * net/tramp.el (tramp-completion-mode-p): Rename from
18700         `tramp-completion-mode'.  Revert logic, check `return', `newline'
18701         and such alike.  Packages like Icicles tend to use other completion
18702         characters but `tab' and `space' only.
18704 2007-09-24  Adam Hupp  <adam@hupp.org>
18706         * progmodes/python.el (run-python): Import emacs module without
18707         waiting; prevents lockup on error.
18709 2007-09-23  Richard Stallman  <rms@gnu.org>
18711         * mail/sendmail.el (mail-bury): Delete the frame
18712         if this frame looks like it was made for this message.
18714         * completion.el (completion-separator-self-insert-command)
18715         (completion-separator-self-insert-autofilling):
18716         If `self-insert-command' has been remapped, use the substitute.
18718         * simple.el (copy-region-as-kill): Doc fix.
18720         * textmodes/org.el (org-confirm-shell-link-function)
18721         (org-confirm-elisp-link-function): Doc fixes.
18723 2007-09-23  Glenn Morris  <rgm@gnu.org>
18725         * ses.el (ses-calculate-cell): Don't evaluate unsafe formulae.
18727 2007-09-23  Dan Nicolaescu  <dann@ics.uci.edu>
18729         * term/w32-win.el (w32-drag-n-drop): Use mapc instead of mapcar.
18731         * term/tvi970.el (terminal-init-tvi970): Likewise.
18733         * term/sun-mouse.el (print-mouse-format): Likewise.
18735         * term/sun.el (scroll-down-in-place, scroll-up-in-place):
18736         Use forward-line instead of previous-line and next-line.
18738 2007-09-22  Juri Linkov  <juri@jurta.org>
18740         * textmodes/org.el (org-confirm-shell-link-function): Doc fix.
18742         * tutorial.el (tutorial--default-keys): Update standard bindings:
18743         rename `iconify-or-deiconify-frame' to `suspend-frame',
18744         and `save-buffers-kill-emacs' to `save-buffers-kill-terminal'.
18746 2007-09-22  Juri Linkov  <juri@jurta.org>
18748         * startup.el (fancy-startup-text, fancy-about-text, fancy-startup-tail):
18749         Add help-echo to external links and to links without description.
18750         (fancy-splash-insert): Use help-echo from the 3rd element of the
18751         link specification list, or "Follow this link" if it's nil.  Doc fix.
18753 2007-09-22  Juri Linkov  <juri@jurta.org>
18755         * startup.el (command-line): Rename `inhibit-startup-message' to
18756         `inhibit-startup-screen'.
18757         (fancy-about-text): Use shorter label for "Ordering Manuals".
18758         (fancy-startup-tail): Add optional arg `concise'.  When `concise'
18759         is nil, display a line with "To start..." and 3 links to useful
18760         tasks.  Display the "Dismiss" button and "Don't show this message
18761         again" only when concise is non-nil.
18762         (fancy-startup-screen): Call `fancy-startup-tail' with optional
18763         arg `concise'.  If CONCISE is non-nil, display a concise version
18764         of the splash screen in another window.  Otherwise, switch to the
18765         startup buffer in the same window.
18766         (startup-echo-area-message): Change displayed binding from
18767         C-h C-p (describe-project) to C-h C-a (about-emacs), and change
18768         text "about the GNU system and GNU/Linux" to "about GNU Emacs and
18769         the GNU system".
18770         (display-startup-screen): Fix buffer name from "*About GNU Emacs*"
18771         to "*GNU Emacs*".
18772         (display-about-screen): Don't check the existence of the buffer
18773         "*About GNU Emacs*".
18774         (display-splash-screen): Make alias to `display-startup-screen'.
18775         (command-line-1): Rename `inhibit-startup-message' to
18776         `inhibit-startup-screen'.  Inhibit startup screen when Emacs is
18777         started with command line options "-f", "-funcall", "-e", "-eval",
18778         "-execute", "-insert", "-find-file", "-file", "-visit".
18779         Inhibit startup screen when Emacs is started with a file name only
18780         on tty (i.e. don't inhibit it when started with a file name like
18781         "emacs FILE..." on a window system).
18782         (command-line-1): Simplify logic of displaying the startup screen:
18783         if file-count > 0, then display the concise version in another
18784         window, otherwise display full version in the same window.
18786         * help.el (help-map): Bind C-h C-a to about-emacs.
18787         (help-for-help-internal): Add C-a description to C-h help text.
18789 2007-09-22  Dan Nicolaescu  <dann@ics.uci.edu>
18791         * emacs-lisp/checkdoc.el (checkdoc-force-docstrings-flag)
18792         (checkdoc-permit-comma-termination-flag): Autoload the
18793         safe-local-variable setting.
18795         * bookmark.el (bookmark-xemacsp): Remove.
18796         (bookmark-make): Don't use bookmark-xemacsp,
18797         use (featurep 'xemacs) instead.
18799         * speedbar.el (speedbar-frame-mode)
18800         (speedbar-frame-reposition-smartly)
18801         (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps)
18802         (speedbar-check-vc): Remove use of non-existent variable
18803         dframe-xemacsp, use (featurep 'xemacs) instead.
18805         * indent.el (indent-for-tab-command): Indent the region if
18806         transient-mark-mode and the region is active.
18808 2007-09-21  Francesco Potortì  <pot@gnu.org>
18810         * progmodes/octave-inf.el (inferior-octave-mode): Use add-hook to
18811         add inferior-octave-directory-tracker to the buffer-local value
18812         of comint-input-filter-functions.
18814 2007-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
18816         * xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
18818 2007-09-21  Juanma Barranquero  <lekktu@gmail.com>
18820         * frame.el (suspend-frame): Call `iconify-or-deiconify-frame' also
18821         on w32 frames.
18823 2007-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18825         * startup.el (normal-top-level): Remove DISPLAY from
18826         process-environment to let it be computed dynamically in callproc.c.
18828         * frame.el (frame-initialize, make-frame):
18829         * faces.el (tty-set-up-initial-frame-faces):
18830         * env.el (setenv): Don't set display-environment-variable.
18832         * server.el (server-getenv-from): Remove.  Use getenv-internal instead.
18833         (server-create-tty-frame): Don't set unused `tty' property.
18834         Set `display' instead of display-environment-variable.
18835         (server-create-window-system-frame): No display-environment-variable.
18837 2007-09-21  Michael Albinus  <michael.albinus@gmx.de>
18839         * rfn-eshadow.el (rfn-eshadow-setup-minibuffer-hook)
18840         (rfn-eshadow-update-overlay-hook): New defvars.
18841         (rfn-eshadow-setup-minibuffer, rfn-eshadow-update-overlay):
18842         Run the hooks.
18844         * net/tramp.el (tramp-rfn-eshadow-overlay): New defvar.
18845         (tramp-rfn-eshadow-setup-minibuffer)
18846         (tramp-rfn-eshadow-update-overlay): New defuns.  Hook into
18847         rfn-eshadow.el.
18849         * net/tramp-smb.el (tramp-smb-errors): Add error message for call
18850         timeout.
18852 2007-09-21  Glenn Morris  <rgm@gnu.org>
18854         * obsolete/sun-fns.el (emacs-quit-menu): Remove emacstool-related code.
18855         * term/sun-mouse.el (suspend-emacstool): Remove.
18856         * term/sun.el: Remove emacstool-related code.
18858         * emacs-lisp/bytecomp.el (byte-compile-warnings)
18859         (byte-compile-warnings-safe-p): Add `mapcar'.
18860         (byte-compile-warning-types): Add mapcar and make-local.
18861         (byte-compile-normal-call): Add option to suppress mapcar warning.
18862         (top-level): Use mapc rather than mapcar in eval-when-compile.
18864         * textmodes/tex-mode.el (tex-validate-region): Handle escaped parens.
18865         (tex-next-unmatched-eparen, tex-last-unended-eparen): New functions.
18866         (latex-forward-sexp-1, latex-backward-sexp-1): Doc fix.
18867         Handle escaped parens.
18868         (latex-forward-sexp): Doc fix.
18870         * eshell/esh-mode.el (eshell-output-filter-functions):
18871         Add eshell-postoutput-scroll-to-bottom.
18873         * loadup.el: Remove termdev.
18875         * progmodes/fortran.el (fortran-mode-abbrev-table, fortran-line-length):
18876         * progmodes/f90.el (f90-mode-abbrev-table): Use mapc rather than mapcar.
18878 2007-09-21  Markus Triska  <markus.triska@gmx.at>
18880         * emacs-lisp/bytecomp.el (byte-compile-normal-call): Warn when
18881         `mapcar' is called for effect.
18883 2007-09-21  Kevin Ryde  <user42@zip.com.au>
18885         * international/mule.el (sgml-html-meta-auto-coding-function):
18886         Bind `case-fold-search' to t.
18888 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18890         * termdev.el: Remove.
18892         * frame.el (get-device-terminal): New function.  Moved from termdev.el.
18893         (frames-on-display-list): Use it.
18895         * bindings.el: Bind C-z to suspend-frame instead of suspend-emacs.
18897         * termdev.el (terminal-id): Ask terminal-live-p before giving up.
18899 2007-09-20  Richard Stallman  <rms@gnu.org>
18901         * newcomment.el (comment-add): If EXTRA, double `comment-add' value.
18903 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18905         * add-log.el (add-log-current-defun): Fix thinko w.r.t derived-mode-p.
18907 2007-09-20  Glenn Morris  <rgm@gnu.org>
18909         * textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
18910         motion functions, rather than hard-coding "\n\n".
18911         (tex-validate-region): Check for eobp, to speed up.
18912         (tex-next-unmatched-end): Doc fix.
18914 2007-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
18916         * files.el (auto-mode-alist): Use archive-mode for .rar files.
18918         * international/mule.el (auto-coding-alist): Rar archives are binary.
18920         * arc-mode.el: Add basic support for Rar.
18921         (archive-find-type): Recognize Rar's signature.
18922         (archive-desummarize): New fun.
18923         (archive-summarize): Use it to restore the buffer's data in case
18924         someone wants to switch to some other major mode.
18925         (archive-resummarize): Use it as well.
18926         (archive-rar-summarize, archive-rar-extract): New functions.
18928         * filesets.el: Remove spurious * in docstrings.
18929         (filesets-running-xemacs): Remove.  Use (featurep 'xemacs) instead.
18930         (filesets-conditional-sort): Remove unused arg `simply-do-it'.
18931         (filesets-ingroup-collect): Remove unused arg `depth'.
18932         (filesets-update): Remove unused arg `version'.
18934         * finder.el (finder-compile-keywords): Fix up comment style.
18935         (finder-mouse-face-on-line): previous-line -> forward-line.
18937         * recentf.el: Remove spurious * in docstrings.
18938         (recentf-save-list): Fix up comment style.
18940         * progmodes/octave-mod.el: Remove spurious * in docstrings.
18941         (octave-mode-map): Move init into declaration and remove \t binding.
18942         (octave-mode-startup-message): Remove unused var.
18943         (octave-scan-blocks): Remove unused arg `from'.
18944         (octave-forward-block, octave-down-block, octave-up-block):
18945         Update callers.
18947         * progmodes/meta-mode.el (meta-mode-syntax-table): Move init into decl.
18948         (meta-mode-map): Likewise and remove \t binding.
18950         * net/snmp-mode.el: Remove spurious * in docstrings.
18951         (snmp-rfc1155-types, snmp-rfc1213-types, snmp-rfc1902-types)
18952         (snmp-rfc1903-types, snmp-rfc1155-access, snmp-rfc1902-access)
18953         (snmp-rfc1212-status, snmp-rfc1902-status): Remove list wrappers now
18954         that completion accepts lists of strings.
18955         (snmp-mode-syntax-table): Move initialization into declaration.
18956         (snmp-mode-map): Likewise and remove \t binding.
18957         (snmp-common-mode): Set tab-always-indent according to snmp-t-a-i.
18958         (snmp-indent-line, snmp-mode-imenu-create-index): Remove unused var.
18959         (snmp-indent-command): Remove.
18961         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB
18962         binding, so tab-always-indent works right.
18964 2007-09-19  Johannes Weiner  <hannes@saeurebad.de>
18966         * net/browse-url.el (browse-url-elinks-new-window): New function.
18967         (browse-url-elinks): Use browse-url-elinks-new-window.
18968         Accept optional second argument `new-window'.  Fix typo in doc-string.
18969         (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
18970         Improve error message.
18972 2007-09-19  Michaël Cadilhac  <michael@cadilhac.name>
18974         * net/browse-url.el (browse-url-url-encode-chars): Use the right
18975         parameter name in the function body.
18976         Reported by Johannes Weiner.
18978 2007-09-19  Glenn Morris  <rgm@gnu.org>
18980         * net/socks.el (socks-open-network-stream): Signal an explicit
18981         error if the port associated with a service string can't be found.
18983         * textmodes/tex-mode.el (tex-terminate-paragraph):
18984         Use backward-paragraph.
18986 2007-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
18988         * server.el (server-running-p): New function.
18990 2007-09-18  Jason Rumney  <jasonr@gnu.org>
18992         * term/w32-win.el (w32-focus-frame): Make obsolete alias for
18993         x-focus-frame.
18995         * frame.el (select-frame-set-input-focus, select-frame-by-name):
18996         Use x-focus-frame for w32.
18998 2007-09-17  David Kastrup  <dak@gnu.org>
19000         * textmodes/tex-mode.el (tex-verbatim-environments):
19001         Eliminate CL dependency.
19003 2007-09-17  Richard Stallman  <rms@gnu.org>
19005         * newcomment.el (comment-add): New arg EXTRA.
19006         (comment-region-default): Pass EXTRA if not indenting lines.
19008 2007-09-17  Michaël Cadilhac  <michael@cadilhac.name>
19010         * net/browse-url.el (browse-url-url-encode-chars): New function.
19011         URL-encode some chars in a string.
19012         (browse-url-encode-url): Rewrite using the previous function.
19013         (browse-url-file-url): Use `browse-url-url-encode-chars'.
19014         (browse-url-elinks-sentinel): Fix typo.
19015         (browse-url-new-window-flag): Doc change.
19017 2007-09-17  Glenn Morris  <rgm@gnu.org>
19019         * textmodes/tex-mode.el (tex-compilation-parse-errors): Prefer the
19020         filename from `--file-line-error', if it is available.
19022 2007-09-17  Joe Wells  <jbw@macs.hw.ac.uk>  (tiny change)
19024         * textmodes/tex-mode.el (tex-compilation-parse-errors): Also match
19025         TeX `--file-line-error' format.
19027 2007-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
19029         * xt-mouse.el: Delete add-hook calls that were moved to
19030         xterm-mouse-mode.
19031         (xterm-mouse-mode): Disable resume-tty-functions, explain why it
19032         does not work.
19034 2007-09-17  Richard Stallman  <rms@gnu.org>
19036         * cus-face.el (custom-theme-set-faces): Undo previous change.
19038         * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC.
19040 2007-09-17  Glenn Morris  <rgm@gnu.org>
19042         * textmodes/tex-mode.el (tex-region): Simplify previous change,
19043         handling the case where the region is not in `tex-main-file'.
19044         (tex-region-1): Delete.
19045         (tex-region-header): New function, doing the header part of the
19046         old tex-region-1.
19048 2007-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19050         * simple.el (newline): Simplify use of prefix-numeric-value.
19051         (line-move-partial): Remove unused var `ppos'.
19052         (line-move-1): Replace 9999 with most-positive-fixnum.
19053         (move-end-of-line): Use more efficient single-property search.
19054         (move-beginning-of-line): Remove unused var `start'.
19055         (blink-matching-open): Restructure in a more functional style.
19057 2007-09-16  Michaël Cadilhac  <michael@cadilhac.name>
19059         * calendar/holidays.el (list-holidays): Remove the cyclic alias.
19061 2007-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19063         * server.el (server-clients): Only keep procs, no properties any more.
19064         (server-client): Remove.
19065         (server-client-get, server-client-set): Remove, replace all callers by
19066         process-get and process-put resp.
19067         (server-clients-with, server-add-client, server-delete-client)
19068         (server-create-tty-frame, server-create-window-system-frame)
19069         (server-process-filter, server-execute, server-visit-files)
19070         (server-buffer-done, server-kill-buffer-query-function)
19071         (server-kill-emacs-query-function, server-switch-buffer)
19072         (server-save-buffers-kill-terminal): Update accordingly.
19074         * server.el (server-with-environment): Simplify.
19075         (server-select-display, server-unselect-display): Re-add functions that
19076         seem to have been lost in the multi-tty merge.
19077         (server-eval-and-print, server-create-tty-frame)
19078         (server-create-window-system-frame, server-goto-toplevel)
19079         (server-execute, server-return-error): New functions extracted from
19080         server-process-filter.
19081         (server-execute-continuation): New functions.
19082         (server-process-filter): Restructure so that all arguments are analysed
19083         first and then acted upon in a subsequent stage.  This way
19084         server-goto-toplevel can be executed later, when we know if
19085         it's necessary.
19086         Remove the "-version" and "-version-good" support.
19088 2007-09-16  Drew Adams  <drew.adams@oracle.com>
19090         * cus-edit.el (custom-face-edit-activate): Doc fix.
19092 2007-09-16  Glenn Morris  <rgm@gnu.org>
19094         * calendar/cal-menu.el, calendar/calendar.el, calendar/diary-lib.el:
19095         Following cal-bahai renaming, update all instances of
19096         list-bahai-diary-entries to diary-bahai-list-entries,
19097         mark-bahai-diary-entries to diary-bahai-mark-entries,
19098         calendar-goto-bahai-date to calendar-bahai-goto-date,
19099         insert-bahai-diary-entry to diary-bahai-insert-entry,
19100         insert-monthly-bahai-diary-entry to diary-bahai-insert-monthly-entry,
19101         insert-yearly-bahai-diary-entry to diary-bahai-insert-yearly-entry, and
19102         calendar-print-bahai-date to calendar-bahai-print-date.
19104         * textmodes/tex-mode.el (tex-region): Handle the case where the
19105         region is not in `tex-main-file'.  Move the old code that applies
19106         to both cases...
19107         (tex-region-1): ...to this new function.
19109 2007-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19111         * vc.el (vc-process-sentinel): New function.
19112         (vc-exec-after): Use it instead of using ugly hackish analysis and
19113         construction of Elisp code.
19114         (vc-sentinel-movepoint): New dynamically scoped var.
19115         (vc-print-log, vc-annotate): Set it to move the user's point.
19117         * vc-cvs.el (vc-cvs-annotate-time): Use inhibit-read-only and
19118         inhibit-modification-hooks.
19120         * calendar/cal-bahai.el (mark-bahai-diary-entries): Fix up typo.
19121         (calendar-bahai-print-date, calendar-bahai-goto-date)
19122         (diary-bahai-list-entries, diary-bahai-insert-entry):
19123         New names to clean up the namespace a bit more.
19124         (calendar-goto-bahai-date, calendar-print-bahai-date): Compat aliases.
19126 2007-09-15  Glenn Morris  <rgm@gnu.org>
19128         * calendar/holidays.el (holiday-list): Rename it back to
19129         `list-holidays', but leave `holiday-list' as an alias.
19131         * textmodes/bibtex-style.el (bibtex-style-indent-basic): Specify a
19132         custom group.
19134         * textmodes/css-mode.el (css): New custom group.
19135         (css-electrick-keys, css-selector, css-property)
19136         (css-indent-offset): Specify custom group.
19138 2007-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19140         * pcvs.el (cvs-tags-list, cvs-retrieve-revision, cvs-find-modif)
19141         (cvs-execute-single-file): Use process-file.
19142         (cvs-run-process): Use start-file-process.
19144 2007-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
19146         * xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
19147         level.  Remove the hooks when turning off the mode.
19149         * term/xterm.el: Require xt-mouse at compile time.
19150         (terminal-init-xterm): Turn on xterm mouse tracking for this
19151         terminal if xterm-mouse-mode is enabled.
19153 2007-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
19155         * term/xterm.el (xterm-function-map): Replace bindings that were
19156         deleted by the merge.
19158 2007-09-14  Ulf Jasper  <ulf.jasper@web.de>
19160         * play/bubbles.el (bubbles-version): Bump value to "0.5".
19161         (bubbles-mode-map): Move define-key statements here.
19162         (bubbles-game-theme-menu): Ditto.
19163         (bubbles-graphics-theme-menu): Ditto.
19164         (bubbles-menu): Ditto.
19165         (bubbles-mode): Initialize buffer-undo-list, redisplay.
19166         (bubbles--initialize): Reset buffer-undo-list, redisplay.
19167         (bubbles-plop): Set buffer-undo-list, redisplay.
19168         (bubbles-undo): Reset buffer-undo-list, redisplay.
19169         (bubbles--show-images): Take care of missing text properties.
19171 2007-09-14  Glenn Morris  <rgm@gnu.org>
19173         * startup.el (fancy-startup-text, fancy-about-text): Fix face
19174         quoting.
19176         * calendar/cal-hebrew.el, calendar/cal-menu.el
19177         * calendar/calendar.el, calendar/diary-lib.el
19178         * calendar/holidays.el: Rename all instances of
19179         list-calendar-holidays callers to calendar-list-holidays,
19180         list-holidays to holiday-list, check-calendar-holidays to
19181         calendar-check-holidays, mark-calendar-holidays to
19182         calendar-mark-holidays, and filter-visible-calendar-holidays to
19183         holiday-filter-visible-calendar.
19185 2007-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
19187         * term/xterm.el (xterm-function-map): Add C-M- bindings.
19189 2007-09-13  Sascha Wilde  <wilde@sha-bang.de>  (tiny change)
19191         * play/bubbles.el (bubbles--initialize-images): Fix bug:
19192         Use transparent background for empty cells in graphics mode.
19194 2007-09-13  Jari Aalto  <jari.aalto@cante.net>
19196         * man.el (Man-default-man-entry): At end of line, continue looking
19197         to the next line for possible end of hyphenated command.
19199 2007-09-13  Chris Moore  <dooglus@gmail.com>
19201         * shell.el (shell-resync-dirs): Don't move the cursor relative to
19202         the command being edited.
19204 2007-09-12  Jim Meyering  <jim@meyering.net>  (tiny change)
19206         * emacs-lisp/copyright.el (copyright-names-regexp): Doc fix: typo.
19208 2007-09-12  Dan Nicolaescu  <dann@ics.uci.edu>
19210         * term/xterm.el (xterm-function-map): Add bindings for M-S- and
19211         C-M-S- keys.
19213         * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
19215 2007-09-12  Michaël Cadilhac  <michael@cadilhac.name>
19217         * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
19218         New argument `filename-p' to use one set of confusing chars or another.
19219         (browse-url-file-url): Use the argument.
19220         Suggested by Johannes Weiner.
19222 2007-09-12  Romain Francoise  <romain@orebokech.com>
19224         * cus-start.el (all): Revert 2007-09-08 change.
19226 2007-09-12  Aaron Hawley  <aaronh@garden.org>
19228         * jka-cmpr-hook.el (jka-compr-compression-info-list): Use gzip to
19229         extract .Z files, since it is more common than uncompress.
19231 2007-09-12  Glenn Morris  <rgm@gnu.org>
19233         * textmodes/org-publish.el (org-publish-org-to-html): Remove
19234         duplicate function definition.
19236 2007-09-10  Chris Moore  <dooglus@gmail.com>
19238         * diff-mode.el (diff-sanity-check-hunk):
19239         Also accept single-line hunks.
19241 2007-09-10  Chong Yidong  <cyd@stupidchicken.com>
19243         * startup.el (startup-screen-inhibit-startup-screen)
19244         (pure-space-overflow-message): New vars.
19245         (fancy-splash-insert): Allow functions for face and link specs.
19246         (fancy-splash-head): Remove unused arg.  Move splash text...
19247         (fancy-startup-text, fancy-about-text): ...here.
19248         (fancy-startup-tail): Rename from fancy-splash-tail.
19249         (fancy-startup-screen, fancy-about-screen): Split off from
19250         fancy-splash-screens.
19251         (display-startup-screen): New function.
19252         (display-about-screen): Rename from display-splash-screen.
19253         (command-line-1): Use concise startup screen if necessary.
19255 2007-09-10  Thien-Thi Nguyen  <ttn@gnuvola.org>
19257         * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
19258         Reported by Jan Djärv <jan.h.d@swipnet.se>.
19260 2007-09-10  Dave Love  <fx@gnu.org>
19262         * outline.el (outline-4, outline-5, outline-7):
19263         Move font-lock-builtin-face down from 4 to 7 to better keep the
19264         progression of color brightness, and to better match Org-mode's faces.
19266 2007-09-10  Michaël Cadilhac  <michael@cadilhac.name>
19268         * progmodes/meta-mode.el (meta-font-lock-keywords)
19269         (font-lock-match-meta-declaration-item-and-skip-to-next)
19270         (meta-comment-indent, meta-indent-previous-line)
19271         (meta-indent-unfinished-line, meta-beginning-of-defun)
19272         (meta-end-of-defun, meta-common-initialization): Handle \f.
19273         (meta-indent-unfinished-line): Do not handle a `%' in a string as
19274         a comment-start.
19276         * files.el (file-modes-char-to-who, file-modes-char-to-right)
19277         (file-modes-rights-to-number): Auxiliary functions for symbolic to
19278         numeric notation of file modes.
19279         (file-modes-symbolic-to-number): New.  Convert symbolic modes to its
19280         numeric value.
19281         (read-file-modes): New.  Read either an octal value of a file mode or a
19282         symbolic value, and return its numeric value.
19284         * dired-aux.el (dired-do-chmod): Change to use the built-in
19285         `set-file-modes' and the previous symbolic mode parsing functions.
19287 2007-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
19289         * textmodes/texinfo.el: Remove spurious * in docstrings.
19290         (texinfo-mode-syntax-table, texinfo-mode-map):
19291         Initialize in the declaration.
19293         * tmm.el: Remove spurious * in docstrings.
19294         (tmm-prompt): Use with-current-buffer.
19296         * vcursor.el: Remove spurious * in docstrings.
19297         (vcursor-map): Initialize in the declaration.
19298         (vcursor-use-vcursor-map): Use define-minor-mode.
19299         (vcursor-toggle-vcursor-map): Keep as an obsolete alias.
19301         * wid-browse.el (widget-browse-mode-map, widget-minor-mode-map):
19302         Initialize in the declaration.
19303         (widget-minor-mode): Use define-minor-mode.
19305         * woman.el (woman-mode-map, woman-syntax-table):
19306         Initialize in the declaration.
19308 2007-09-09  Tassilo Horn  <tassilo@member.fsf.org>
19310         * doc-view.el: New file.
19312 2007-09-09  Juri Linkov  <juri@jurta.org>
19314         * Makefile.in (update-authors): Add etc/ to AUTHORS.
19316         * makefile.w32-in (update-authors): Add etc/ to AUTHORS.
19318         * startup.el (initial-buffer-choice): Rename choice "Splash screen"
19319         to "Startup screen".  Fix docstring.
19320         (inhibit-startup-screen): Rename from `inhibit-splash-screen'.
19321         (inhibit-splash-screen): Make alias to `inhibit-startup-screen'.
19322         (inhibit-startup-message): Change alias to `inhibit-startup-screen'.
19323         (initial-scratch-message): Fix docstring.
19324         (fancy-startup-text): Move link to Emacs Manual below Emacs Guided
19325         Tour (which is a kind of tutorial and will be next to Emacs Tutorial).
19326         Add link to "Customize Startup" and set interval between links to
19327         5 spaces.
19328         (fancy-about-text): Add links "Authors" and "Contributing".
19329         (fancy-splash-head): Add text "Welcome to " on the startup screen,
19330         and "This is " on the about screen.  Add link to
19331         "http://www.gnu.org/software/emacs/" for "GNU Emacs".
19332         For the about screen move emacs version to the header from
19333         `fancy-splash-tail' (as it's done already for normal about screen).
19334         (fancy-splash-tail): Insert emacs version only for startup screen.
19335         (normal-splash-screen): Remove duplicate empty lines.
19336         (normal-about-screen): Add links "Authors" and "Contributing".
19338         * menu-bar.el (menu-bar-help-menu):
19339         Move "About Emacs" and "About GNU" to the end of the Help menu.
19340         Move "Emacs Psychotherapist" after "Send Bug Report...".
19341         Move "External Packages" after "Find Emacs Packages".
19343 2007-09-09  Michael Albinus  <michael.albinus@gmx.de>
19345         * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
19346         they are useless with the byte compiler.
19347         (tramp-make-temp-file, tramp-make-tramp-temp-file): Move up.
19348         (tramp-do-copy-or-rename-file-directly): Rearrange let-bindings.
19349         (tramp-compute-multi-hops): Mask `tramp-gw-*' symbols.
19350         (tramp-file-name-real-host, tramp-file-name-port)
19351         (tramp-find-method, tramp-find-user, tramp-find-host): Make them
19352         defuns.
19354         * net/tramp-cache.el (top): Improve error message when
19355         `tramp-persistency-file-name' is corrupted.
19357 2007-09-09  Carsten Dominik  <dominik@science.uva.nl>
19359         * textmodes/org.el (org-re): Also replace the :alpha: class.
19360         (org-todo-tag-alist): Variable removed.
19361         (org-todo-key-alist, org-todo-key-trigger): New variables.
19362         (org-use-fast-todo-selection): New option.
19363         (org-log-done): Docstring fixed.
19364         (org-deadline-warning-days): New default value 14.
19365         (org-edit-timestamp-down-means-later): New option.
19366         (org-tag-alist): Docstring fixed.
19367         (org-fast-tag-selection-include-todo): New option.
19368         (org-export-language-setup): New languages added.
19369         (org-set-regexps-and-options): Compute the new variables.
19370         (org-paste-subtree): Cleaning up.
19371         (org-remember-apply-template): New escape %A.
19372         (org-todo): Call fast TODO selection.
19373         (org-fast-todo-selection): New function.
19374         (org-add-log-note): Allow prefix for abort exit.
19375         (org-at-property-p, org-entry-properties)
19376         (org-columns-get-autowidth-alist): Use :alpha: class.
19377         (org-get-wdays): New function.
19378         (org-agenda-remove-date): New variable.
19379         (org-agenda-get-deadlines): Use `org-get-wdays'.
19380         (org-agenda-get-deadlines): Reverse ee before returning.
19381         (org-format-agenda-item): New argument REMOVE-RE.
19382         (org-agenda-convert-date): Baha'i calendar added.
19383         (org-infile-export-plist): Also find DATE line.
19384         (org-get-min-level): New function.
19385         (org-export-as-html, org-export-as-ascii): Use the date format.
19386         (org-shiftup, org-shiftdown): Use.
19387         `org-edit-timestamp-down-means-later'.
19388         (org-assign-fast-keys): New function.
19390 2007-09-08  Fredrik Axelsson  <f.axelsson@gmail.com>
19392         * cus-start.el (all): Add prefer-window-split-horizontally from
19393         window.c.
19395 2007-09-08  Eli Zaretskii  <eliz@gnu.org>
19397         * net/browse-url.el (browse-url-galeon): Fix last change.
19398         (top-level): Require cl when compiling.
19400 2007-09-08  Carsten Dominik  <dominik@science.uva.nl>
19402         * textmodes/org-export-latex.el: arch-tag restored.
19404         * textmodes/org-publish.el: arch-tag restored.
19406 2007-09-08  Masatake YAMATO  <jet@gyve.org>
19408         * progmodes/which-func.el (which-func-modes): Add diff-mode.
19410         * progmodes/cc-langs.el: Support new keywords added to
19411         objective-c frontend of gcc.
19412         (c-simple-stmt-kwds): Add @throw.
19413         (c-block-stmt-2-kwds): Add @synchronized.
19414         (c-block-stmt-1-kwds): Add @finally and @try.
19416 2007-09-07  Carsten Dominik  <dominik@science.uva.nl>
19418         * textmodes/org.el (org-edit-timestamp-down-means-later): New option.
19419         (org-agenda-after-show-hook): New variable.
19420         (org-columns-compile-format)
19421         (org-columns-get-autowidth-alist, org-buffer-property-keys)
19422         (org-entry-properties, org-at-property-p): Allow [:alnum:] in
19423         property names.
19424         (org-get-wdays): New function.
19426 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19428         * simple.el (normal-erase-is-backspace-setup-frame): Massage.
19430         * term/xterm.el (xterm-function-map): Initialize in the declaration.
19432         * vc-arch.el (vc-arch-checkin): Fix typo.
19434 2007-09-07  Johan Bockgård  <bojohan@gnu.org>
19436         * cus-face.el (custom-theme-set-faces): Set face attributes
19437         locally for each frame.
19439 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19441         * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
19442         via font-lock-defaults.
19444         * emacs-lisp/bytecomp.el (byte-compile-log-file): Check major-mode via
19445         derived-mode-p.
19447 2007-09-07  Thien-Thi Nguyen  <ttn@gnuvola.org>
19449         * progmodes/autoconf.el (autoconf-definition-regexp):
19450         Handle optional square brackets around definition name.
19452 2007-09-07  Johannes Weiner  <hannes@saeurebad.de>
19454         * net/browse-url.el (browse-url-browser-function): Add elinks.
19455         (browse-url-elinks-wrapper): New option.
19456         (browse-url-encode-url, browse-url-elinks)
19457         (browse-url-elinks-sentinel): New functions.
19458         (browse-url-file-url, browse-url-netscape, browse-url-mozilla)
19459         (browse-url-firefox, browse-url-galeon, browse-url-epiphany):
19460         Use new function browse-url-encode-url.
19462 2007-09-07  Glenn Morris  <rgm@gnu.org>
19464         * version.el (emacs-version): Revert 2007-08-29 change: no need to
19465         say if multi-tty is present.
19467 2007-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19469         * cus-start.el (split-window-preferred-function): Add custom info.
19471         * calendar/holidays.el (holiday-list, calendar-check-holidays)
19472         (calendar-mark-holidays, calendar-list-holidays)
19473         (holiday-filter-visible-calendar): New names to clean up namespace.
19474         (filter-visible-calendar-holidays, list-calendar-holidays)
19475         (mark-calendar-holidays, check-calendar-holidays, list-holidays):
19476         Add compatibility aliases.
19477         (calendar-check-holidays, calendar-mark-holidays)
19478         (calendar-holiday-list, holiday-filter-visible-calendar): Use dolist.
19479         (holiday-sexp): Replace append with list.
19480         (holiday-filter-visible-calendar): Replace append with push.
19482         * woman.el: Remove spurious * in docstrings.
19483         (woman-mini-help, woman-non-underline-faces, woman0-rename)
19484         (woman-topic-all-completions-merge, woman-file-name-all-completions)
19485         (woman-select-symbol-fonts, woman-expand-directory-path): Use dolist.
19486         (woman-write-directory-cache, woman-display-extended-fonts)
19487         (WoMan-log-begin, WoMan-log-1): Use with-current-buffer.
19488         (woman-really-find-file): Use pop-to-buffer if switch-to-buffer fails.
19489         (woman-mode): Use inhibit-read-only.
19490         (woman-negative-vertical-space): Use dotimes.
19491         (woman2-tagged-paragraph, woman-tab-to-tab-stop): Use insert-char.
19493 2007-09-06  Romain Francoise  <romain@orebokech.com>
19495         * vc-bzr.el (vc-bzr-admin-lastrev): New defconst.
19496         (vc-bzr-workfile-version): Use it.
19498 2007-09-06  Sean O'Rourke  <sorourke@cs.ucsd.edu>
19500         * complete.el (PC-do-completion): Don't try to treat
19501         empty string as an abbreviation.
19503 2007-09-06  Johan Bockgård  <bojohan@dd.chalmers.se>
19505         * help-fns.el (describe-variable): Keep doc's text properties.
19507 2007-09-06  Dan Nicolaescu  <dann@ics.uci.edu>
19509         * vc.el (vc-default-diff-tree): Pass a list to the diff vc command
19510         instead of a file.
19512 2007-09-06  Glenn Morris  <rgm@gnu.org>
19514         * emacs-lisp/checkdoc.el (checkdoc-minor-mode-string): New.
19515         (checkdoc-minor-mode): Allow user to specify lighter via
19516         checkdoc-minor-mode-string.
19518 2007-09-05  Richard Stallman  <rms@gnu.org>
19520         * startup.el (fancy-startup-text): Rename from fancy-splash-text.
19521         Several items removed, simplified, or put on one line.
19522         (fancy-about-text): Add substantial contents, part of startup text.
19523         (fancy-splash-head): Make "GNU" or "GNU/Linux" a link.
19524         (normal-splash-screen): Call normal-mouse-startup-screen,
19525         normal-no-mouse-startup-screen, or normal-about-screen.
19526         (normal-mouse-startup-screen): New fn, broken out, shortened.
19527         (normal-no-mouse-startup-screen): New fn, broken out.
19528         (normal-about-screen): New function, contents all new.
19530 2007-09-05  Michaël Cadilhac  <michael@cadilhac.name>
19532         * emacs-lisp/rx.el (rx): Fix typo in docstring.
19534 2007-09-05  Glenn Morris  <rgm@gnu.org>
19536         * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
19537         is bound.
19539 2007-09-05  Johan Bockgård  <bojohan@dd.chalmers.se>
19541         * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
19542         in doc string.
19544 2007-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
19546         * server.el (server-start, server-unload-hook): Undo previous change.
19548         * xt-mouse.el: Undo previous change.
19550 2007-09-04  Juri Linkov  <juri@jurta.org>
19552         * startup.el (fancy-about-text): New variable.
19553         (fancy-splash-delay, fancy-splash-max-time): Remove user options.
19554         (fancy-current-text, fancy-splash-stop-time)
19555         (fancy-splash-outer-buffer): Remove variables.
19556         (fancy-splash-head, fancy-splash-tail): Add new optional argument
19557         `startup' and use it to conditionally display different texts for
19558         Startup and About screens.  Don't display Help commands on the About
19559         screen.
19560         (fancy-splash-screens-1): Remove function and move its content to
19561         `fancy-splash-screens' to the part that dislpays the About screen.
19562         (exit-splash-screen): Don't treat specially exiting from
19563         alternating screens.
19564         (fancy-splash-screens): Rename argument `static' to `startup'.
19565         Fix docstring.  Remove code for displaying alternating screens.
19566         Use arg `startup' in calls to `fancy-splash-head', `fancy-splash-tail'.
19567         Remove let-bind for `fancy-splash-outer-buffer' and add let-bind
19568         for `inhibit-read-only'.
19569         (normal-splash-screen): Rename argument `static' to `startup'.
19570         Fix docstring.  Use argument `startup' to conditionally display
19571         different texts for Startup and About screens.  Don't display Help
19572         commands on the About screen.  Remove `unwind-protect' `sit-for'
19573         delay and `kill-buffer' after it.
19574         (display-startup-echo-area-message): Remove call to
19575         `use-fancy-splash-screens-p' because image.el is preloaded and
19576         doesn't display "Loading image... done".
19577         (display-splash-screen): Rename argument `static' to `startup'.
19578         Fix docstring.
19580 2007-09-04  Dan Nicolaescu  <dann@ics.uci.edu>
19582         * server.el (server-start, server-unload-hook):
19583         suspend-tty-functions has been renamed to suspend-tty-hook.
19585         * xt-mouse.el: Likewise.  resume-tty-functions has been renamed to
19586         resume-tty-hook.
19588 2007-09-03  Emanuele Giaquinta  <e.giaquinta@glauco.it>  (tiny change)
19590         * loadup.el: Fix merge problem, only load "button" once.
19592 2007-09-03  Glenn Morris  <rgm@gnu.org>
19594         * vc-svn.el (vc-svn-print-log): If there is only one file, use
19595         "Working file:" as the prefix, for the sake of
19596         log-view-current-file.
19598 2007-09-02  Dan Nicolaescu  <dann@ics.uci.edu>
19600         * term/xterm.el (xterm-modify-other-keys-terminal-list): New variable.
19601         (xterm-turn-on-modify-other-keys): Only turn on modify-other-keys
19602         if the selected frames is in
19603         xterm-modify-other-keys-terminal-list.
19604         (xterm-turn-off-modify-other-keys): Add an optional frame
19605         parameter.  Only turn off modify-other-keys if FRAME is in
19606         xterm-modify-other-keys-terminal-list.
19607         (xterm-remove-modify-other-keys): New function.
19608         (terminal-init-xterm): Use it.  Deal with delete-frame hook.
19609         Add the selected frame to xterm-modify-other-keys-terminal-list.
19611 2007-09-02  Jan Djärv  <jan.h.d@swipnet.se>
19613         * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
19614         (icon-map-list): New variable.
19615         (x-gtk-map-stock): Use icon-map-list.
19617 2007-09-02  Romain Francoise  <romain@orebokech.com>
19619         * log-view.el (log-view-current-file): Balance parens.
19621 2007-09-02  Glenn Morris  <rgm@gnu.org>
19623         * comint.el (comint-mode): Don't set scroll-conservatively.
19625         * eshell/em-unix.el (eshell/time): Stringify and flatten the
19626         non-command arguments.
19628         * log-view.el (log-view-current-file): Give a more explicit error
19629         if log-view-file-re fails to find a match.
19631 2007-09-01  Thien-Thi Nguyen  <ttn@gnuvola.org>
19633         * emacs-lisp/bytecomp.el (byte-recompile-directory):
19634         Fix bug: Don't expand top-level file name more than once.
19635         Reported by Dmitry Antipov <dmantipov@yandex.ru>.
19637 2007-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19639         * server.el (server-process-filter): Don't display the splash screen.
19640         It's annoying enough on the initial screen and becomes positively
19641         obnoxious here.
19643 2007-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19645         * emacs-lisp/avl-tree.el: Use defstruct rather than macros.
19646         Change naming to use "avl-tree--" for internal functions.
19648 2007-08-31  Dan Nicolaescu  <dann@ics.uci.edu>
19650         * term/x-win.el (x-menu-bar-open): Delete duplicated function from
19651         the merge.
19652         (global-set-key): Delete f10 mapping, now done in menu-bar.el.
19653         (provide): Move to the end of file.
19655         * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
19657 2007-08-31  Michaël Cadilhac  <michael@cadilhac.name>
19659         * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
19660         New variable.  List of exceptions for the duplicated word rule.
19661         (flyspell-mark-duplications-flag): Mention it.
19662         (flyspell-word): Treat it.
19664         * files.el (create-file-buffer): If the filename sans directory starts
19665         with spaces, remove them.
19667 2007-08-31  Jan Djärv  <jan.h.d@swipnet.se>
19669         * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
19670         (x-gtk-map-stock): Use two directory elements when matching
19671         file name.
19673 2007-08-31  James Wright  <james@chumsley.org>
19675         * eshell/em-unix.el (eshell/info): New function.
19677 2007-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19679         * frame.el (frame-initialize, make-frame):
19680         * server.el (server-process-filter):
19681         * faces.el (tty-set-up-initial-frame-faces): Don't set
19682         term-environment-variable since it's not used any more.
19684         * env.el (setenv): Don't treat $TERM specially.
19686         * startup.el (normal-top-level): Set $TERM to `dumb' so that unless
19687         stated otherwise, subprocesses do not send back escape sequences
19688         corresponding to the terminal from which Emacs was started.
19690 2007-08-31  Thien-Thi Nguyen  <ttn@gnuvola.org>
19692         * calculator.el: Require cl for compilation.
19694 2007-08-30  Daniel Pfeiffer  <occitan@esperanto.org>
19696         * outline.el (outline-font-lock-levels): Comment out unused var.
19697         (outline-font-lock-face): Wrap around face list to handle any
19698         nesting depth gracefully.
19700 2007-08-30  Michael Albinus  <michael.albinus@gmx.de>
19702         * net/ange-ftp.el: Add ange-ftp property to `set-file-modes' and
19703         `set-file-times'.
19705 2007-08-30  Carsten Dominik  <dominik@science.uva.nl>
19707         * textmodes/org.el (org-export-visible): Fix drawers before export.
19708         (org-do-sort): Allow sorting by priority.
19709         (org-agenda-files): Ignore non-existing files.
19710         (org-agenda-skip-unavailable-files): New variable.
19711         (org-ellipsis): All a face as value.
19712         (org-mode): Interprete the face value of `org-ellipsis'.
19713         (org-archive-save-context-info): New option.
19714         (org-archive-subtree): Store context info in archived entry.
19715         (org-fast-tag-selection-can-set-todo-state): New variable.
19716         (org-fast-tag-selection): Allow setting TODO states through this
19717         interface.
19718         (org-cycle): Docstring updated.
19719         (org-todo-keyword-faces): New option.
19720         (org-get-todo-face): New function.
19721         (org-set-font-lock-defaults, org-agenda-highlight-todo):
19722         Use `org-get-todo-face'.
19723         (org-switch-to-buffer-other-window): New function.
19724         (org-table-edit-field, org-table-show-reference)
19725         (org-table-edit-formulas, org-add-log-note)
19726         (org-fast-tag-selection, org-agenda, org-prepare-agenda)
19727         (org-timeline): Use `org-switch-to-buffer-other-window' instead of
19728         `switch-to-buffer-other-window' to make sure that the temporary
19729         windows show up on the current frame.
19730         (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
19731         (org-get-entries-from-diary, org-replace-region-by-html):
19732         Don't allow pop-up frames.
19733         (org-agenda-get-deadlines, org-agenda-get-scheduled):
19734         Fix problems with time-of-day.
19735         (org-export-get-title-from-subtree): New function.
19736         (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
19737         with listing items that are DONE.
19738         (org-change-tag-in-region): New command.
19739         (org-agenda-skip-scheduled-if-done)
19740         (org-agenda-skip-deadline-if-done): Docstring clarified.
19741         (org-mode): Hide drawers on startup.
19742         (org-get-todo-face): New function.
19743         (org-todo-keyword-faces): New option.
19744         (org-set-regexps-and-options): Use `org-remove-keyword-keys'.
19745         (org-remove-keyword-keys): New function.
19747 2007-08-30  Jari Aalto  <jari.aalto@cante.net>  (tiny change)
19749         * progmodes/grep.el (grep-find-ignored-directories):
19750         Add monotone _MTN bookkeeping directory in workspaces.
19751         Add RCS control directory.  List items in alphabetical order.
19753         * progmodes/grep.el (grep-files-aliases): Add cc alias.
19754         Sort items in alphabetical order.  Fix parens.
19756 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
19758         * vc-hg.el (vc-hg-extra-menu-map): New variable.
19759         (vc-hg-extra-menu, vc-hg-outgoing, vc-hg-incoming, vc-hg-push)
19760         (vc-hg-pull): New functions.
19761         (vc-hg-outgoing-mode, vc-hg-incoming-mode): New derived modes.
19763         * term/mac-win.el: Don't require url, only autoloaded url
19764         functions are used in this file.
19766 2007-08-29  Andreas Schwab  <schwab@suse.de>
19768         * shell.el (shell): Return correct value from interactive spec.
19770 2007-08-29  Glenn Morris  <rgm@gnu.org>
19772         * version.el (emacs-version): Increase to 23.0.50.
19774 2007-08-29  Jan Djärv  <jan.h.d@swipnet.se>
19776         * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
19778 2007-08-29  Juri Linkov  <juri@jurta.org>
19780         * loadup.el: Add "button" loading after "faces" and move "startup"
19781         to load after "button".
19783 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
19785         * loadup.el: Load term/mac-win on a Mac using Carbon.
19787         * term/mac-win.el: Provide mac-win.
19788         (mac-initialized): New variable.
19789         (mac-initialize-window-system): New function.  Move global setup here.
19790         (handle-args-function-alist, frame-creation-function-alist):
19791         (window-system-initialization-alist): Add mac entries.
19792         (x-setup-function-keys): New function containing all the
19793         top level function key definitions.
19795         * term/x-win.el (x-menu-bar-open): Use accelerate-menu.
19797         * env.el (read-envvar-name): Don't consider the environment frame param.
19799         * env.el (setenv):
19800         * frame.el (frame-initialize, make-frame):
19801         * faces.el (tty-set-up-initial-frame-faces):
19802         * server.el (server-process-filter): Set
19803         display-environment-variable and term-environment-variable.
19805         * server.el (server-process-filter): Set COLORFGBG and COLORTERM.
19807 2007-08-29  Jason Rumney  <jasonr@gnu.org>
19809         * loadup.el: Only load term/x-win when X is compiled in.
19810         Load term/w32-win and dependencies on windows-nt.
19812         * term/w32-win.el: Reorder to match x-win.el more closely.
19813         Provide w32-win.  Don't throw error when global window-system not w32.
19814         (internal-face-interactive): Remove obsolete function.
19815         (x-setup-function-keys): Use local-function-key-map.
19816         (w32-initialized): New variable.
19817         (w32-initialize-window-system): Set it.
19818         Move more global setup here.
19819         (x-setup-function-keys): New function.
19820         (w32-initialize-window-system): Move non function key global setup here.
19821         (x-cut-buffer-max): Remove.
19822         (w32-initialize-window-system): New function.
19823         (handle-args-function-alist, frame-creation-function-alist):
19824         (window-system-initialization-alist): Add w32 entries.
19826 2007-08-29  David Kastrup  <dak@gnu.org>
19828         * env.el (getenv): Pass frame to getenv-internal.
19830 2007-08-29  Károly Lőrentey  <lorentey@elte.hu>
19832         * version.el (emacs-version): Show if multi-tty is present.
19834         * loadup.el: Delay loading env; mule-conf gets confused by cl
19835         during bootstrap.  Also load termdev and term/x-win.
19837         * bindings.el (mode-line-client): New variable.
19838         (help-echo): Add it to the default mode-line format.
19840         * cus-start.el: Remove bogus window-system reference from GTK test.
19842         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map)
19843         (ebrowse-electric-position-mode-map):
19844         * ebuff-menu.el (electric-buffer-menu-mode-map):
19845         * echistory.el (electric-history-map): Bind C-z to `suspend-frame',
19846         not `suspend-emacs'.
19848         * ediff-wind.el (ediff-setup-windows-automatic): New function.
19849         (ediff-window-setup-function): Use it as default.
19851         * files.el (save-buffers-kill-terminal): New function.
19852         (ctl-x-map): Change binding of C-x C-c to save-buffers-kill-terminal.
19854         * font-lock.el (lisp-font-lock-keywords-2): Add `let-environment'
19855         and `with-selected-frame'.
19857         * help-fns.el (describe-variable): Describe frame-local variables
19858         correctly.
19860         * simple.el (normal-erase-is-backspace-mode): Rewrite for multiple
19861         display support.
19862         (normal-erase-is-backspace-setup-frame): New function.
19864         * subr.el (with-selected-frame): New function.
19865         (read-quoted-char): Use terminal-local binding of
19866         local-function-key-map instead of function-key-map.
19868         * talk.el (talk): New function.
19869         (talk-handle-delete-frame): New function.
19870         (talk-add-display): Open a new frame only if FRAME was not a frame.
19872         * termdev.el: New file.
19874         * menu-bar.el (menu-bar-open): New function.  Bind it to f10.
19875         * term/x-win.el: Don't bind f10.
19876         * tmm.el: Remove autoload binding for f10.
19878         * international/encoded-kb.el (encoded-kbd-setup-display): Use
19879         `set-input-meta-mode'.  Fix broken condition before set-input-mode.
19880         Store the saved input method as a terminal parameter.  Add keymap
19881         parameter.  Use it instead of changing key-translation-map directly.
19882         (saved-key-translation-map, encoded-kbd-mode, saved-input-mode):
19883         Remove.
19884         (encoded-kbd-setup-display): New function.
19886         * international/mule-cmds.el (set-locale-environment): Fix getenv
19887         call.  Use save-buffers-kill-terminal.  Ignore window-system; always
19888         set the keyboard coding system.  Add DISPLAY parameter.
19889         (set-display-table-and-terminal-coding-system): Add DISPLAY
19890         parameter.  Pass it to set-terminal-coding-system.
19892         * international/mule.el (keyboard-coding-system): Test for
19893         encoded-kbd-setup-display, not encoded-kbd-mode.
19894         (set-terminal-coding-system, set-keyboard-coding-system): Add
19895         DISPLAY parameter.
19896         (set-keyboard-coding-system): Use encoded-kbd-setup-display.
19898         * term/README: Update.
19900         * term/linux.el (terminal-init-linux): Use `set-input-meta-mode'.
19902         * term/x-win.el (x-setup-function-keys): New function.  Move
19903         function-key-map tweaks here.  Protect against multiple calls on
19904         the same terminal.  Use terminal-local binding of
19905         local-function-key-map instead of function-key-map.
19906         (x-initialize-window-system): Make a copy of pure list.  Pass a
19907         frame getenv.
19909         * term/vt200.el, term/vt201.el, term/vt220.el, term/vt240.el:
19910         * term/vt300.el, term/vt320.el, term/vt400.el, term/vt420.el:
19911         * term/AT386.el, term/internal.el, term/iris-ansi.el, term/lk201.el:
19912         * term/mac-win.el, term/news.el, term/rxvt.el, term/sun.el:
19913         * term/tvi970.el, term/wyse50.el: Use terminal-local binding of
19914         local-function-key-map instead of function-key-map.
19916         * term/rxvt.el, term/xterm.el: Speed up load time by protecting
19917         `substitute-key-definition' and `define-key' calls against
19918         multiple execution.  Use terminal-local binding of
19919         local-function-key-map instead of function-key-map.  Pass a frame
19920         to getenv.
19922         * edmacro.el (edmacro-format-keys):
19923         * emulation/cua-base.el (cua--pre-command-handler):
19924         * isearch.el (isearch-other-meta-char):
19925         * xt-mouse.el: Use terminal-local binding of
19926         local-function-key-map instead of function-key-map.
19928         * fringe.el (set-fringe-mode): Simplify and fix using
19929         `modify-all-frames-parameters'.
19930         * scroll-bar.el (set-scroll-bar-mode): Ditto.
19931         * tool-bar.el (tool-bar-mode): Ditto.  Remove 'tool-bar-map length
19932         check before calling `tool-bar-setup'.
19933         (tool-bar-setup): New variable.
19934         (tool-bar-setup): Use it to guard against multiple calls.  Add
19935         optional frame parameter, and select that frame before adding items.
19936         (toggle-tool-bar-mode-from-frame): New function.
19938         * menu-bar.el (toggle-menu-bar-mode-from-frame): New function.
19939         (menu-bar-showhide-menu): Use toggle-menu-bar-mode-from-frame and
19940         toggle-tool-bar-mode-from-frame to change "Menu-bar" and
19941         "Tool-bar" toggles to reflect the state of the current frame.
19942         (menu-bar-mode): Simplify and fix using `modify-all-frames-parameters'.
19944         * env.el: Require cl for byte compilation (for `block' and `return').
19945         (environment, setenv-internal): New functions.
19946         (let-environment): New macro.
19947         (setenv, getenv): Add optional terminal parameter.  Update docs.
19948         (setenv): Use setenv-internal.  Always set process-environment.
19949         Handle `local-environment-variables'.
19950         (read-envvar-name, setenv, getenv): Use frame parameters
19951         to store the local environment, not terminal parameters.  Include
19952         `process-environment' as well.
19954         * faces.el (tty-run-terminal-initialization): New function.
19955         (tty-create-frame-with-faces): Use it.  Set up faces and
19956         background mode only after the terminal has been initialized.
19957         Call terminal-init-*.  Don't load the initialization file more
19958         than once.  Call set-locale-environment.
19959         (frame-set-background-mode): Handle the 'background-mode terminal
19960         parameter.
19961         (tty-find-type): New function.
19962         (x-create-frame-with-faces): Remove bogus check for
19963         first frame.  Call `tool-bar-setup'.  Don't make frame visible
19964         until we are done setting up all its parameters.  Call
19965         x-setup-function-keys.
19967         * frame.el (make-frame): Always inherit 'environment and 'client
19968         parameters.  Set up the 'environment frame parameter, when needed.
19969         Also inherit 'client parameter.  Don't override explicitly
19970         specified values with inherited ones.  Add 'terminal frame
19971         parameter.  Append window-system-default-frame-alist to parameters
19972         before calling frame-creation-function.
19973         (frame-initialize): Copy the environment from the initial frame.
19974         (window-system-default-frame-alist): Enhance doc string.
19975         (frame-notice-user-settings): Don't put 'tool-bar-lines in
19976         `default-frame-alist' when initial frame is on a tty.
19977         (modify-all-frames-parameters): Simplify using `assq-delete-all'.
19978         Remove specified parameters from `window-system-default-frame-alist'.
19979         (make-frame-on-tty, framep-on-display, suspend-frame):
19980         Extend doc string, update parameter names.
19981         (frames-on-display-list): Use terminal-id to get the display id.
19982         (frame-notice-user-settings): Extend to apply
19983         settings in `window-system-default-frame-alist' as well.
19984         (terminal-id, terminal-parameters, terminal-parameter)
19985         (set-terminal-parameter, terminal-handle-delete-frame): New functions.
19986         (delete-frame-functions): Add to `delete-frame-functions' hook.
19987         (blink-cursor-mode): Adapt blink-cursor-mode default
19988         value from startup.el.
19989         (make-frame-on-display): Protect condition on x-initialized when
19990         x-win.el is not loaded.  Update doc.
19991         (suspend-frame): Use display-controlling-tty-p to decide between
19992         suspend-emacs and suspend-tty.
19993         (frames-on-display-list): Update for display ids.
19994         (framep-on-display): Ditto.
19995         (suspend-frame): Use display-name, not frame-tty-name.
19996         (selected-terminal): New function.
19998         * server.el: Use `device' instead of `display' or `display-id' in
19999         variable and client parameter names.
20000         (server-select-display): Remove (unused).
20001         (server-tty-live-p, server-handle-delete-tty): Remove.
20002         (server-unquote-arg, server-quote-arg, server-buffer-clients):
20003         Update docs.
20004         (server-getenv-from, server-with-environment, server-send-string)
20005         (server-save-buffers-kill-terminal): New functions.
20006         (server-delete-client): Handle quits in kill-buffer.  Don't kill
20007         modified buffers.  Add extra logging.  Delete frames after
20008         deleting the tty.  Clear 'client parameter before deleting a frame.
20009         Use delete-display, not delete-tty.
20010         (server-visit-files): Don't set `server-existing-buffer' if the
20011         buffer already has other clients.  Return list of buffers
20012         created.  Update doc.  Don't set client-record when nowait.
20013         (server-handle-delete-frame): Delete the client if this was its
20014         last frame.  Check that the frame is alive.  Remove bogus comment.
20015         Add note on possible race condition.  Delete tty clients, if needed.
20016         (server-handle-suspend-tty): Use server-send-string.  Kill the
20017         client in case of errors from process-send-string.  Use the display
20018         parameter.
20019         (server-unload-hook): Remove obsolete delete-tty hook.
20020         (server-start): Ask before restarting if the old server still has
20021         clients.  Add feedback messages.  Remove obsolete delete-tty hook.
20022         (server-process-filter): Use server-send-string.  Accept `-dir'
20023         command.  Switch to *scratch* immediately after creating the frame,
20024         before evaluating any -evals.  Protect `display-splash-screen'
20025         call in a condition-case.  Explain why.  Call
20026         `display-startup-echo-area-message' before
20027         `display-splash-screen'.  Don't display the splash screen when no
20028         frame was created.  Show the Emacs splash screen and startup echo
20029         area message.  Display the *scratch* buffer by default.  Store the
20030         local environment in a frame (not terminal) parameter.  Do not try
20031         to decode environment strings.  Fix reference to the 'display
20032         frame parameter.  Change syntax of environment variables.  Put
20033         environment into terminal parameters, not client parameters.  Use
20034         a dummy client with --no-wait's X frames.  In `-position LINE'
20035         handler, don't ruin the request string until the line number is
20036         extracted.  Log opened files.  Handle -current-frame command.
20037         Don't create frames when it is given.  Don't bind X frames to the
20038         client when we are in -no-wait mode.  Set locale environment
20039         variables from client while creating tty frames.  Disable call to
20040         configure-display-for-locale.  When processing -position command,
20041         don't change the request string until the parameters are
20042         extracted.  Don't try to create an X frame when Emacs does not
20043         support it.  Improve logging.  Temporarily set ncurses-related
20044         environment variables to those of the client while creating a new
20045         tty frame.  Select buffers opened by nowait clients, don't leave
20046         them buried under others.  Set the display parameter, and use it
20047         when appropriate.
20049         * startup.el (display-startup-echo-area-message): Handle
20050         `inhibit-startup-echo-area-message' here.
20051         (command-line-1): Moved from here.
20052         (fancy-splash-screens): Use `overriding-local-map' instead of
20053         `overriding-terminal-local-map' for now; the latter doesn't work
20054         right, it looses keypresses to another terminal.  Use
20055         `overriding-terminal-local-map' to set up keymap.  Install a
20056         `delete-frame-functions' hook to catch `delete-frame' events.
20057         Ignore `select-window' events to cope better with
20058         `focus-follows-mouse'.  Don't switch back to the original buffer
20059         if the splash frame has been killed.  Restore previous buffer, even
20060         if it's *scratch*.
20061         (normal-splash-screen): Don't let-bind `mode-line-format'; it
20062         changes the global binding - setq it instead.  Use
20063         `save-buffers-kill-terminal'.
20064         (display-splash-screen): Don't do anything if the splash screen is
20065         already displayed elsewhere.
20066         (fancy-splash-exit, fancy-splash-delete-frame): New functions.
20067         (command-line): Replace duplicated code with a call to
20068         tty-run-terminal-initialization.  Don't load the terminal
20069         initialization file more than once.  Remove call to nonexistent
20070         function `set-locale-translation-file-name'.
20072         * xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal
20073         parameters.
20074         (xterm-mouse-position-function, xterm-mouse-event): Update.
20075         (xterm-mouse-mode): Don't depend on current value of window-system.
20076         (turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking):
20077         Update for multi-tty.
20078         (turn-on-xterm-mouse-tracking-on-terminal)
20079         (turn-off-xterm-mouse-tracking-on-terminal)
20080         (xterm-mouse-handle-delete-frame): New functions.
20081         (delete-frame-functions, after-make-frame-functions)
20082         (suspend-tty-functions, resume-tty-functions): Install extra hooks
20083         for multi-tty.
20085 2007-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
20087         * simple.el (invisible-p): Remove: implemented in C now.
20088         (line-move-invisible-p): Remove obsolete alias.
20090 2007-08-28  Juri Linkov  <juri@jurta.org>
20092         * image-mode.el (image-type): New variable.
20093         (image-mode): Set default major mode name to "Image[text]".
20094         (image-minor-mode): Change LIGHTER to display image-type in the
20095         mode line.
20096         (image-minor-mode): Set default image-type to "text".
20097         (image-toggle-display): After switching to text mode, set
20098         image-type to "text" and major mode name to "Image[text]".
20099         After switching to image mode, set image-type to actual image
20100         type, and add image type to major mode name.  Let-bind the same
20101         variable names as arguments of `image-type' and `create-image'.
20102         Bind `type' to the result of `image-type' and use it as arg
20103         of `create-image' to not determine the image type twice.
20105 2007-08-28  Michael Albinus  <michael.albinus@gmx.de>
20107         * net/tramp.el (tramp-handle-set-file-times): Flush the file properties.
20108         (tramp-set-file-uid-gid, tramp-get-local-uid)
20109         (tramp-get-local-gid): New defuns.
20110         (tramp-handle-copy-file): Handle new parameter PRESERVE-UID-GID.
20111         (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID.
20112         Improve fast track.
20113         (tramp-do-copy-or-rename-file-directly): Sync parameter list with
20114         the other tramp-do-copy-or-rename-file-* functions.  Major rewrite.
20115         (tramp-handle-file-local-copy, tramp-handle-insert-file-contents)
20116         (tramp-handle-write-region): Improve fast track.
20117         (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'.
20118         (tramp-maybe-open-connection): Let `process-adaptive-read-buffering'
20119         be nil.
20121 2007-08-28  Ivan Kanis  <apple@kanis.eu>
20123         * time.el: New feature to display several time zones in a buffer.
20124         (display-time-world-mode, display-time-world-display)
20125         (display-time-world, display-time-world-timer): New functions.
20126         (display-time-world-list, display-time-world-time-format)
20127         (display-time-world-buffer-name, display-time-world-timer-enable)
20128         (display-time-world-timer-second, display-time-world-mode-map):
20129         New variables.
20131 2007-08-28  Jan Djärv  <jan.h.d@swipnet.se>
20133         * term/x-win.el (x-gtk-stock-map): New variable.
20134         (x-gtk-map-stock): New function.
20136         * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
20137         prev/next-node.
20139 2007-08-28  Johan Bockgård  <bojohan@dd.chalmers.se>  (tiny change)
20141         * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
20143 2007-08-28  Glenn Morris  <rgm@gnu.org>
20145         * progmodes/cc-langs.el (c-constant-kwds): Add java: null, true, false.
20147 2007-08-27  Thien-Thi Nguyen  <ttn@gnuvola.org>
20149         * progmodes/modula2.el (m2-definition, m2-module):
20150         Don't use previous-line.  Reported by T. V. Raman.
20152 2007-08-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20154         * term/mac-win.el (mac-handle-toolbar-switch-mode): Add explicit
20155         argument to tool-bar-mode call.
20157 2007-08-27  Glenn Morris  <rgm@gnu.org>
20159         * diff-mode.el (diff-find-file-name): Only accept regular files,
20160         to rule out /dev/null, directories, etc.
20162         * vc-svn.el (vc-svn-diff): If the repository version of all the
20163         files is the same as the specified OLDVERS, do a local diff.
20165 2007-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
20167         * uniquify.el (uniquify-rationalize-file-buffer-names): Check liveness
20168         of buffers in uniquify-managed.
20170         * simple.el (invisible-p): Rename from text-invisible-p.
20171         Update callers.
20173         * progmodes/cperl-mode.el (defcustom, x-color-defined-p, cperl-is-face)
20174         (cperl-is-face, cperl-force-face, cperl-etags-snarf-tag, cperl-mode)
20175         (cperl-etags-snarf-tag, cperl-etags-goto-tag-location, cperl-init-faces)
20176         (cperl-etags-goto-tag-location): Use new style backquotes.
20178         * net/browse-url.el: Remove spurious * in custom docstrings.
20179         (browse-url-filename-alist): Use new-style backquote.
20181         * emacs-lisp/backquote.el (backquote-unquote-symbol)
20182         (backquote-splice-symbol): Clarify they're not new-style unquotes.
20184         * emacs-lisp/edebug.el (edebug-list-form, edebug-match-symbol, \,)
20185         (\,@): Backslash the , and ,@ which are not new-style unquotes.
20187         * textmodes/texinfmt.el (\,): Clarify it's not a new-style unquote.
20189         * net/socks.el (socks-username/password-auth-filter):
20190         Remove unused vars `state' and `desired-len'.
20191         (socks-parse-services, socks-nslookup-host): Use with-current-buffer.
20192         (socks-wait-for-state-change): Use new-style backquotes.
20194         * pcvs.el (cvs-mode-status): Fix long-standing typo.
20196         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Check old-style
20197         backquotes after each `read' rather than once per buffer.
20199         * dframe.el: Remove spurious * in custom docstrings.
20200         (dframe-xemacsp): Remove, use (featurep 'xemacs) instead.
20201         (dframe-xemacs20p): Remove, inline at the sole use point.
20202         (defface): Don't defvar the face, don't use old-style backquote.
20203         (defcustom): Don't use old-style backquote.
20204         (dframe-frame-parameter, dframe-mouse-event-p):
20205         Make it obvious that it's always defined.
20206         (dframe-popup-kludge): New function to replace
20207         dframe-xemacs-popup-kludge and dframe-xemacs-popup-kludge.
20208         (dframe-frame-mode, dframe-set-timer-internal)
20209         (dframe-mouse-set-point): Remove use of with-no-warnings from
20210         XEmacs-specific code.
20211         (dframe-set-timer-internal): Fix very old bug with
20212         post-command-idle-hook.
20214         * emacs-lisp/byte-opt.el (byte-optimize-featurep): Handle `sxemacs'.
20216         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Display a big fat
20217         warning if the file uses old style backquotes.
20219         * emacs-lisp/bytecomp.el (byte-compile-log-file)
20220         (byte-recompile-directory, byte-compile-file)
20221         (byte-compile-from-buffer): Use with-current-buffer.
20223         * simple.el (text-invisible-p): Rename from line-move-invisible-p.
20224         (line-move-invisible-p): Keep as an obsolete alias, just to be safe.
20225         (line-move-1, line-move-finish, line-move-to-column)
20226         (move-end-of-line, move-beginning-of-line): Use new name.
20228         * emacs-lisp/backquote.el (backquote-delay-process): Fix last change.
20230         * progmodes/ada-mode.el: Fix up comment style in header.
20231         (ada-check-emacs-version): Remove.
20232         (ada-mode): Set parse-sexp-* even if they don't exist: can't hurt.
20233         (ada-region-selected): Use (featurep 'xemacs) rather than contortions
20234         to try and quieten the byte-compiler.
20235         (ada-create-keymap): Use [(..)] keys, which work on both (X)Emacs.
20237         * vc.el (vc-annotate-warp-version): Don't use previous-line.
20239 2007-08-27  Johan Bockgård  <bojohan@dd.chalmers.se>
20241         * net/browse-url.el (browse-url-emacs): New function.
20243 2007-08-27  Thien-Thi Nguyen  <ttn@gnuvola.org>
20245         * emacs-lisp/avl-tree.el: New file.
20247 2007-08-26  Michaël Cadilhac  <michael@cadilhac.name>
20249         * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
20250         was used.
20252 2007-08-26  Sean O'Rourke  <seano@cs.ucsd.edu>
20254         * complete.el (PC-do-completion): Make RET accept a non-unique but
20255         complete expansion again.
20257 2007-08-26  Thien-Thi Nguyen  <ttn@gnuvola.org>
20259         * eshell/esh-opt.el (eshell-eval-using-options):
20260         Add debug declaration.
20262 2007-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
20264         * log-view.el (log-view-toggle-mark-entry): Add docstring.
20265         (log-view-get-marked): Likewise.
20267         * vc-hooks.el (vc-registered): Use mapc instead of mapcar.
20268         (vc-delete-automatic-version-backups): Likewise.
20270         * vc.el (vc-dired-buffers-for-dir): Likewise.
20272 2007-08-25  Dan Nicolaescu  <dann@ics.uci.edu>
20274         * progmodes/cperl-mode.el (cperl-indent-level): Autoload the
20275         safe-local-variable setting.
20276         * progmodes/perl-mode.el (perl-indent-level): Likewise.
20278         * log-view.el (log-view-marked-list): Delete variable.
20279         (log-view-mode): Don't use it.
20280         (log-view-toggle-mark-entry): Likewise, simplify.
20281         (log-view-current-tag): Don't return properties.
20282         (log-view-get-marked): New function.
20284 2007-08-25  Alexandre Julliard  <julliard@winehq.org>
20286         * vc-git.el (vc-git-mode-line-string): New function.
20288 2007-08-25  Alan Mackenzie  <acm@muc.de>
20290         * progmodes/cc-langs.el (c-other-decl-block-key-in-symbols-alist):
20291         new language variable.
20293         * progmodes/cc-engine.el (c-brace-anchor-point): new function.
20294         (c-add-stmt-syntax): Give accurate anchor points for "namespace",
20295         "extern" etc., rather than BOI.  Fix addition of spurious
20296         syntactic-symbol 'defun-block-intro, replacing it with
20297         'innamespace, etc.
20299 2007-08-25  Juri Linkov  <juri@jurta.org>
20301         * files.el (auto-mode-alist): Move "\\.x[bp]m\\'" to image-mode.el.
20303         * image-mode.el: Add autoloads to put associations in auto-mode-alist:
20304         associate "\\.x[bp]m\\'" with c-mode and image-mode-maybe, and
20305         "\\.svgz?\\'" with xml-mode and image-mode-maybe.
20307         * image.el (image-type-header-regexps): Use more complex regexp for svg.
20308         (image-type-file-name-regexps): Add ("\\.svgz?\\'" . svg).
20309         (image-type-auto-detectable): Add (svg . maybe).
20311         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add .svgz
20312         to treat it like .tgz.
20314         * calendar/cal-bahai.el: Add file coding cookie.
20316 2007-08-25  Reiner Steib  <Reiner.Steib@gmx.de>
20318         * pcvs.el (cvs-query-directory): Only prompt when prefix is given.
20319         Don't behave differently when executed via M-x.  Add doc string.
20321         * sort.el (sort-fold-case, sort-numeric-base): Mark as
20322         safe-local-variable.
20324 2007-08-25  Jay Belanger  <jay.p.belanger@gmail.com>
20326         * calc/calc-forms.el (var-TimeZone): Make nil explicitly
20327         the default value.
20328         (math-calendar-tzinfo): New variable.
20329         (math-get-calendar-tzinfo): New function.
20330         (calcFunc-tzone, calcFunc-dst): Use Emacs's calendar
20331         to get information when zone is nil.
20333 2007-08-24  Dan Nicolaescu  <dann@ics.uci.edu>
20335         * log-view.el (log-view-toggle-mark-entry): New function.
20336         (log-view-mode-map): Bind it.
20337         (log-view-marked-list): New variable.
20338         (log-view-mode): Make it local.
20340 2007-08-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
20342         * play/zone.el (zone-pgm-rat-race): New func.
20343         (zone-programs): Add `zone-pgm-rat-race'.
20345 2007-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20347         * emacs-lisp/byte-opt.el (byte-optimize-if): Don't presume `clause' is
20348         a list.
20350 2007-08-24  Thien-Thi Nguyen  <ttn@gnuvola.org>
20352         * progmodes/hideshow.el (hs-match-data): Delete alias.
20353         (hs-hide-block-at-point, hs-find-block-beginning)
20354         (hs-show-block): Use `match-data' directly.
20356 2007-08-24  Martin Rudalics  <rudalics@gmx.at>
20358         * format.el (format-alist): Fix typo in doc-string.
20360 2007-08-24  Michael Albinus  <michael.albinus@gmx.de>
20362         * net/tramp.el (tramp-local-host-p): New defun.
20363         (tramp-handle-file-local-copy, tramp-handle-write-region):
20364         Implement fast track when being on the local host.
20365         (tramp-file-name-handler): Don't set "started" property.  It shall
20366         be reserved for the "ftp" method.
20367         (tramp-make-copy-program-file-name): Use `tramp-file-name-real-host'.
20369         * net/tramp-ftp.el (top): Autoload `tramp-set-connection-property'.
20370         (tramp-ftp-file-name-handler): Set "started" property.
20372 2007-08-24  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
20374         * files.el (backup-buffer-copy): Don't wrap delete in
20375         condition-case, only try to delete if file exists.
20377 2007-08-24  Glenn Morris  <rgm@gnu.org>
20379         * files.el (backup-buffer-copy): Revert 2007-08-22 change.
20381         * startup.el (tutorial-directory): Set with eval-at-startup so it
20382         gets the right value in an installed Emacs.
20384 2007-08-24  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
20386         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): New face.
20387         (eldoc-highlight-function-argument): Use it.
20389 2007-08-23  Masatake YAMATO  <jet@gyve.org>
20391         * progmodes/cc-fonts.el (gtkdoc-font-lock-doc-comments): Highlight
20392         name of parameters in document body.
20394 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20396         * emacs-lisp/bytecomp.el (byte-compile-output-docform)
20397         (byte-compile-output-as-comment): Use with-current-buffer rather than
20398         a weird set-buffer&prog1 combination.
20400         * emacs-lisp/byte-opt.el (byte-optimize-if): Move `progn' out of the
20401         test so as to optimise cases where the `progn's result is constant.
20403 2007-08-23  Thien-Thi Nguyen  <ttn@gnuvola.org>
20405         * locate.el (locate-get-file-positions):
20406         Use line-beginning-position and line-end-position.
20408 2007-08-23  John Wiegley  <johnw@newartisans.com>
20410         * calendar/cal-bahai.el: Added in the diacriticals that were
20411         missing for many of the month names.
20413 2007-08-22  Jason Rumney  <jasonr@gnu.org>
20415         * vc-hooks.el (vc-menu-map-filter): Reapply 2007-08-06 bugfix.
20417 2007-08-22  Chong Yidong  <cyd@stupidchicken.com>
20419         * image-mode.el (image-minor-mode): Use image-mode-text-map.
20421 2007-08-22  Sean O'Rourke  <sorourke@cs.ucsd.edu>
20423         * dabbrev.el (dabbrev--progress-reporter): New variable.
20424         (dabbrev--scanning-message): Delete func.
20425         (dabbrev--find-expansion): Use a progress reporter
20426         instead of dabbrev--scanning-message.
20428 2007-08-22  Michael Albinus  <michael.albinus@gmx.de>
20430         * comint.el (comint-exec-1): Raise an error if
20431         `start-file-process' does not return a process object.
20433         * shell.el (shell): Prompt for `default-directory' if it is a
20434         remote file name, and if called with a prefix arg.
20436 2007-08-22  Sam Steingold  <sds@gnu.org>
20438         * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
20440 2007-08-22  Carsten Dominik  <dominik@science.uva.nl>
20442         * textmodes/org-export-latex.el: New file.
20444         * textmodes/org-publish.el (org-publish-org-to-latex): New function.
20446         * textmodes/org.el (org-agenda-skip): Allow a form for
20447         `org-agenda-skip-function'.
20448         (org-agenda-redo): Re-use local settings.
20449         (org-agenda): Store local settings.
20450         (org-agenda-deadline-faces): New option.
20451         (org-agenda-deadline-face): New function.
20452         (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
20453         entries on their due date.
20454         (org-agenda-get-timestamps): No longer handle the due dates of
20455         schedules and deadline items.
20456         (org-insert-link-global, org-open-at-point-global): New commands.
20457         (org-export-as-ascii): Call `org-cleaned-string-for-export' with a
20458         :for-ascii parameter.
20459         (org-skip-comments): Function removed.
20460         (org-cleaned-string-for-export): Handle special table lines.
20461         (org-global-properties): New option.
20462         (org-entry-get-with-inheritance): Check global properties.
20463         (org-local-properties): New variable.
20464         (org-set-regexps-and-options): Find the #+PROPERTY line.
20465         (org-link-types): Change type into variable (was constant).
20466         (org-make-link-regexps): New function.
20467         (org-link-re-with-space, org-link-re-with-space2)
20468         (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
20469         (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
20470         these regular expressions happens now in the function
20471         `org-make-link-regexps'.
20472         (org-store-link): Call the functions in
20473         `org-store-link-functions'.
20474         (org-add-link-type): New function.
20475         (org-store-link-functions): New variable.
20476         (org-activate-tags): Force matches to be in headlines.
20477         (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
20478         (org-columns-display-here): Make sure this works in a narrowed
20479         buffer by checking for point-min.
20480         (org-columns-display-here): Make the rest of the line intangible,
20481         so that point never can be there.
20482         (org-cleaned-string-for-export): Use `with-current-buffer'.
20483         (org-replace-region-by-html): Use `with-current-buffer'.
20484         (org-unfontify-region, org-do-occur, org-columns-display-here)
20485         (org-columns-remove-overlays, org-columns-quit)
20486         (org-columns-edit-value, org-columns-next-allowed-value)
20487         (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
20488         (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
20489         (org-agenda-todo, org-agenda-change-all-lines)
20490         (org-agenda-align-tags, org-agenda-priority)
20491         (org-agenda-set-tags, org-agenda-toggle-archive-tag)
20492         (org-agenda-show-new-time, org-cleaned-string-for-export)
20493         (org-export-grab-title-from-buffer)
20494         (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
20495         instead of `buffer-read-only'.
20496         (org-export-as-html): Set `coding-system-for-write'.
20497         (org-remember-store-without-prompt): New option.
20498         (org-archive-subtree): Fixed bug with modifying TODO keyword.
20499         (org-beginning-of-line): Also treat C-a special in items.
20500         (org-table-convert-refs-to-rc): Fixed problem with column
20501         reference after "..".
20502         (org-columns-compute): Don't mark buffer modified because of text
20503         properties.
20504         (org-batch-store-agenda-views): Use the variable
20505         `default-directory', not the function.
20506         (org-clock-out-if-current): Respect `org-clock-out-when-done'.
20507         (org-clock-out-when-done): New option.
20508         (org-html-entities): Added HTML entities for smileys.
20510 2007-08-22  Glenn Morris  <rgm@gnu.org>
20512         * image.el (create-image): Doc fix.
20514         * startup.el (tutorial-directory): New constant.
20515         (fancy-splash-text): Tutorials now in tutorial-directory.
20516         * tutorial.el (help-with-tutorial): Tutorials now in
20517         tutorial-directory.
20519 2007-08-22  Michael Albinus  <michael.albinus@gmx.de>
20521         * net/tramp.el (top): Require cl.el, when `copy-tree' is not available
20522         otherwise.
20523         (tramp-get-remote-path): New defun.  Replace occurrences of
20524         `tramp-default-remote-path' by this function.
20525         (tramp-set-remote-path): Move most of the code to
20526         `tramp-get-remote-path'.
20527         (tramp-get-ls-command, tramp-get-remote-id): Don't check for not
20528         existing directories, this is done already in
20529         `tramp-get-remote-path'.
20531 2007-08-22  Paul Pogonyshev  <pogonyshev@gmx.net>
20533         * image-file.el (image-file-name-extensions): Add "svg".
20534         * image.el (image-type-header-regexps): Add svg entry.
20536 2007-08-22  Glenn Morris  <rgm@gnu.org>
20538         * files.el (backup-buffer-copy): Check backup directory is
20539         writable, to avoid infloop deleting old backup.
20541         * mail/rmail.el (rmail-movemail-variant-p): Call on load to set
20542         movemail related variables.
20543         (rmail-insert-inbox-text): Use only rmail-movemail-program, which
20544         will now be set before this is called.
20546 2007-08-21  Juri Linkov  <juri@jurta.org>
20548         * delsel.el (delete-selection-pre-hook):
20549         * emulation/cua-base.el (cua-paste): Use `mouse-region-match'
20550         instead of checking last-command.
20552 2007-08-21  Juri Linkov  <juri@jurta.org>
20554         * loadup.el: Preload "button".
20556 2007-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20558         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20559         Add previous-line and next-line.
20561         * vc-arch.el (vc-arch-extra-menu-map): New var and fun.
20562         (vc-arch-find-file-not-found-hook): Remove, it's now the default.
20564         * vc-hooks.el (vc-menu-entry): New var.
20565         (vc-mode-line-map): Use it so that this menu also uses the extra-menu.
20566         (menu-bar-tools-menu): Add the VC menu here rather than in menu-bar.el.
20567         (vc-menu-map): Declare and initialize in one step.
20568         (vc-menu-map-filter): Move&rename from menu-bar.el:menu-bar-vc-filter.
20570         * menu-bar.el (vc-menu-map): Don't setup any more.
20571         Instead, just create the proper spot in the menu.
20573 2007-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20575         * smerge-mode.el (smerge-resolve): New arg `safe'.
20576         (smerge-resolve-all, smerge-batch-resolve): New function.
20577         (smerge-refine): Make sure `diff' returns the expected result.
20578         (smerge-parsep-re): New const.
20579         (smerge-mode): Use it to adjust paragraph-separate.
20581         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
20582         Correctly match / regexp matchers as first char on a line when
20583         fontifying only that line.
20585         * emacs-lisp/cl-macs.el (cl-transform-lambda): Preserve the match-data.
20587 2007-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20589         * vc-bzr.el: Don't fiddle with vc-handled-backend.
20590         (vc-bzr-registered): Don't redundantly protect against
20591         file-error.  Actually use the format-specific code.
20592         (vc-bzr-buffer-nonblank-p): Remove.
20593         (vc-bzr-status): Change `kindchange' -> `kindchanged'.
20595 2007-08-20  Juri Linkov  <juri@jurta.org>
20597         * startup.el (fancy-splash-text): Change multiple tabs into one
20598         tab.  Remove "Useful File menu items" section (with "Exit Emacs"
20599         and "Recover Crashed Session").
20600         (fancy-splash-screens): Set tab-width to 22.
20601         (normal-splash-screen): Replace literal tabs with \t and
20602         fix whitespace.  Remove "Useful File menu items" section (with
20603         "Exit Emacs" and "Recover Crashed Session").
20605 2007-08-20  Johannes Weiner  <hannes@saeurebad.de>  (tiny change)
20607         * emacs-lisp/lisp-mode.el (preceding-sexp): New fun, the code was
20608         extracted from `eval-last-sexp-1'.
20609         (eval-last-sexp-1): Call `preceding-sexp'.
20611 2007-08-20  Thien-Thi Nguyen  <ttn@gnuvola.org>
20613         * vc-rcs.el (vc-rcs-annotate-command):
20614         Fix bug introduced 2007-07-18T16:32:40Z!esr@snark.thyrsus.com:
20615         Add back :vc-annotate-prefix propertization.
20617 2007-08-20  Andreas Schwab  <schwab@suse.de>
20619         * mail/rmail.el (rmail-autodetect): Doc fix.
20621 2007-08-19  Juri Linkov  <juri@jurta.org>
20623         * startup.el (normal-splash-screen): Add more links.
20625 2007-08-19  Juri Linkov  <juri@jurta.org>
20627         * startup.el (splash-screen-keymap): Rename from `fancy-splash-keymap'
20628         because it's common to both types of splash screen: fancy and normal.
20629         Bind SPC to scroll-up, DEL to scroll-down and `q' to exit-splash-screen.
20630         (exit-splash-screen): Rename from `fancy-splash-quit'.
20631         Use `quit-window' instead of `kill-buffer'.
20632         (fancy-splash-head): Use make-button to insert GNU image link.
20633         (fancy-splash-screens, normal-splash-screen): Rename " About GNU
20634         Emacs" to "*About GNU Emacs*", and " GNU Emacs" to "*GNU Emacs*".
20635         (normal-splash-screen): Put "Browse manuals" on the same line with
20636         "Emacs manual".  Remove descriptions from "Useful tasks" and put
20637         all links in two columns on two lines.
20639 2007-08-19  Michael Kifer  <kifer@cs.stonybrook.edu>
20641         * emulation/viper.el (viper-remove-hooks): Remove some additional
20642         viper hooks when the user calls viper-go-away.
20643         (viper-go-away): Restore the default of default-major-mode.
20644         Save the value of default-major-mode before vaperization.
20646         * emulation/viper-cmd.el: Replace error "" with "Viper bell".
20648         * emulation/viper-ex.el: Replace error "" with "Viper bell".
20650         * ediff-util.el (ediff-make-temp-file): Use the coding system of the
20651         buffer for which file is created.
20653 2007-08-19  Glenn Morris  <rgm@gnu.org>
20655         * Makefile.in (custom-deps, finder-data, autoloads, recompile)
20656         (progmodes/cc-mode.elc, mh-e/mh-loaddefs.el): Use $(emacs) rather
20657         than $(EMACS), so that EMACSLOADPATH is set.  Prevents any system
20658         shadow files messing up the compilation.
20660 2007-08-18  Glenn Morris  <rgm@gnu.org>
20662         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Add doc
20663         string.  Also apply eldoc-argument-case in the help-split-fundoc
20664         case.  Adapt for changed behavior of eldoc-function-argstring,
20665         eldoc-function-argstring-format, and
20666         eldoc-highlight-function-argument.
20667         (eldoc-highlight-function-argument): Handle nil INDEX argument,
20668         just call eldoc-docstring-format-sym-doc in that case.
20669         (eldoc-function-argstring): Change the behavior.  Now it converts
20670         an argument list to a string.
20671         (eldoc-function-argstring-format): Change the behavior.  Now it
20672         applies `eldoc-argument-case' to a string.
20674         * progmodes/scheme.el (scheme-mode-variables): Set
20675         font-lock-comment-start-skip.
20677 2007-08-18  Martin Rudalics  <rudalics@gmx.at>
20679         * progmodes/ada-mode.el (ada-create-syntax-table): Move
20680         set-syntax-table from here to ...
20681         (ada-mode): ... here.  Do not change global value of
20682         comment-multi-line.  Call new function
20683         ada-initialize-syntax-table-properties and add new function
20684         ada-handle-syntax-table-properties to font-lock-mode-hook.
20685         (ada-deactivate-properties, ada-initialize-properties): Replace
20686         by new functions ...
20687         (ada-handle-syntax-table-properties)
20688         (ada-initialize-syntax-table-properties)
20689         (ada-set-syntax-table-properties): ... to set up syntax-table
20690         properties uniformly, independently from whether font-lock-mode
20691         is enabled or not.  Handle read-only buffers and do not change
20692         undo-list when setting syntax-table properties.
20693         (ada-after-change-function): Use ada-set-syntax-table-properties.
20695 2007-08-18  Michaël Cadilhac  <michael@cadilhac.name>
20697         * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
20698         (meta-indent-current-nesting): Use a computation of the nesting
20699         instead.
20700         (meta-indent-current-indentation): Indentation is given according
20701         to nesting and if the previous line was finished or not.
20702         (meta-indent-unfinished-line): Tell if the current line ends with
20703         a finished expression.
20704         (meta-indent-looking-at-code): Like `looking-at', but checks if
20705         the point is in a string before.
20706         (meta-indent-level-count): Use it.  Don't count parenthesis as it's
20707         done in the nesting function.
20708         (meta-indent-in-string-p): Tell if the current point is in a
20709         string.
20710         (meta-indent-calculate): Treat b-o-b as a special case.  Use the
20711         previous functions.
20713 2007-08-17  Thien-Thi Nguyen  <ttn@gnuvola.org>
20715         * emacs-lisp/copyright.el (copyright-limit): New defsubst.
20716         (copyright-update-year, copyright-update)
20717         (copyright-fix-years): Use it.
20719 2007-08-17  Kimit Yada  <kimitto@gmail.com>  (tiny change)
20721         * emacs-lisp/copyright.el (copyright-update-year):
20722         Fix bug: Handle nil copyright-limit.
20724 2007-08-17  Jay Belanger  <jay.p.belanger@gmail.com>
20726         * calc/calc-units.el (math-standard-units): Give exact
20727         conversion for tsp.
20729         * calc/calc.el (math-bignum-digit-length): Compute the
20730         appropriate value.
20732         * calc/calc-bin.el (math-bignum-logb-digit-size)
20733         (math-bignum-digit-power-of-two):
20734         * calc/calc-comb.el (math-small-factorial-table):
20735         * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
20736         (math-approx-gamma-const):
20737         * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0)
20738         (math-besY1, math-bernoulli-b-cache):
20739         * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
20740         Remove `eval-when-compile's.
20742 2007-08-17  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
20744         * progmodes/cperl-mode.el (cperl-look-at-leading-count)
20745         (cperl-find-pods-heres): Fix an error when typing expressions like
20746         `s{a}{b}'.
20748 2007-08-17  Michaël Cadilhac  <michael@cadilhac.name>
20750         * mail/emacsbug.el (report-emacs-bug): Remove the last number of
20751         `emacs-version', use the topic prefix ``version; ''.  Make MS-DOS
20752         a special case (there's no build number).
20754 2007-08-17  T. V. Raman  <raman@users.sf.net>  (tiny change)
20756         * completion.el (symbol-under-point, symbol-before-point)
20757         (symbol-before-point-for-complete): Use buffer-substring-no-properties.
20759 2007-08-17  Glenn Morris  <rgm@gnu.org>
20761         * progmodes/compile.el (compilation-get-file-structure): Make use
20762         of the directory part when checking for an existing entry, to
20763         handle files with same basename in different directories.
20765 2007-08-17  Jay Belanger  <jay.p.belanger@gmail.com>
20767         * calc/calc.el (calc-language-alist): Add texinfo-mode.
20769 2007-08-16  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20771         * ps-print.el (ps-header-font-size, ps-header-title-font-size)
20772         (ps-footer-font-size, ps-line-number-font-size, ps-line-spacing)
20773         (ps-paragraph-spacing): Docstring fix.
20775 2007-08-16  Glenn Morris  <rgm@gnu.org>
20777         * ps-print.el (ps-font-size): Doc fix.
20779 2007-08-16  Richard Stallman  <rms@gnu.org>
20781         * emacs-lisp/copyright.el (copyright-names-regexp): Add custom group.
20783 2007-08-15  Juri Linkov  <juri@jurta.org>
20785         * startup.el (initialization): Change parent group from `internal'
20786         to `environment'.
20787         (initial-buffer-choice): New variable.
20788         (command-line): Revert 2007-07-02 change that sets
20789         buffer-offer-save in *scratch* and enables auto-save in it.
20790         (fancy-splash-text): Add links to existing items.  Add new items
20791         with links for useful tasks.  Move information about Control-g to
20792         fancy-splash-head.  Move "Emacs Guided Tour" to the end.
20793         (fancy-splash-keymap): New variable.
20794         (fancy-splash-last-input-event): Remove variable.
20795         (fancy-splash-insert): Add processing of `:link' element.
20796         (fancy-splash-head): Replace "Type Control-l to begin editing"
20797         with "Type `q' to exit".
20798         (fancy-splash-screens-1): Let-bind inhibit-read-only to t.
20799         (fancy-splash-default-action, fancy-splash-special-event-action):
20800         Remove functions.
20801         (fancy-splash-quit): New function.
20802         (fancy-splash-screens): Rename input arg from `hide-on-input' to
20803         `static' and reverse the condition of its usage.  Don't preserve
20804         original values of `minor-mode-map-alist',
20805         `emulation-mode-map-alists', `special-event-map'.
20806         Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
20807         Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
20808         Remove processing of special events.  Use local key map
20809         `fancy-splash-keymap'.  Set buffer to read-only.
20810         (normal-splash-screen): Rename input arg from `hide-on-input' to
20811         `static' and reverse the condition of its usage.
20812         Rename startup-buffer from "*About GNU Emacs*" to " GNU Emacs".
20813         Rename about-buffer from " GNU Emacs" to " About GNU Emacs".
20814         Add links to existing items.  Add new items with links for useful
20815         tasks.  Use local key map `fancy-splash-keymap'.
20816         (display-splash-screen): Rename input arg from `hide-on-input' to
20817         `static'.
20818         (about-emacs): Add alias to display-splash-screen.
20819         (command-line-1): Use `initial-buffer-choice'.
20821         * menu-bar.el (menu-bar-help-menu):
20822         * term/mac-win.el (mac-apple-event-map): Bind About Emacs menu
20823         item to about-emacs instead of display-splash-screen.
20825 2007-08-15  Jay Belanger  <jay.p.belanger@gmail.com>
20827         * calc/calc-units.el (math-standard-units): Update values.
20828         Put in exact, rational values when possible.
20829         (math-unit-prefixes): Replace floats with powers of ten.
20830         (math-standard-units-systems): Replace floats with integers.
20831         (math-make-unit-string): Remove extra spaces in output.
20833 2007-08-15  Glenn Morris  <rgm@gnu.org>
20835         * mail/undigest.el (rmail-digest-parse-rfc1153sloppy): Be even
20836         sloppier, for the sake of GNU Mailman.
20837         (rmail-digest-rfc1153): Initialize `result' correctly.
20839 2007-08-15  Michaël Cadilhac  <michael@cadilhac.name>
20841         * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
20842         in the mail title.  Suggested by Reiner Steib.
20844 2007-08-14  Chris Hecker  <checker@d6.com>  (tiny change)
20846         * calc/calc-aent.el (calc-do-quick-calc): Add binary
20847         representation of integers to the list of outputs.
20849 2007-08-14  Glenn Morris  <rgm@gnu.org>
20851         * simple.el (bad-packages-alist): New constant.
20852         (bad-package-check): New function.  Together, these two add elements
20853         to `after-load-alist' to check for problematic external packages.
20854         * emulation/cua-base.el: Move CUA-mode check to `bad-packages-alist'.
20856 2007-08-14  Jay Belanger  <jay.p.belanger@gmail.com>
20858         * calc/calc-units.el (math-get-standard-units)
20859         (math-get-units, math-make-unit-string)
20860         (math-get-default-units, math-put-default-units): New functions.
20861         (math-default-units-table): New variable.
20862         (calc-convert-units, calc-convert-temperature): Add machinery
20863         to supply default values.
20865 2007-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
20867         * emulation/tpu-edt.el: Add tpu-extras's autoloads.
20868         (tpu-gold-map, tpu-global-map): Comment-out the bindings to nil.
20869         (tpu-gold-map): Bind F to tpu-cursor-free-mode.
20870         (minibuffer-local-map): Use funkey symbols rather than esc-sequence.
20872         * emulation/tpu-extras.el: Remove spurious * in docstrings.
20873         Put its autoloads into tpu-edt.el rather than loaddefs.el.
20874         (tpu-cursor-free-mode): Rename from tpu-cursor-free.
20875         Make into a proper minor-mode.
20876         (tpu-backward-char, tpu-next-line, tpu-previous-line)
20877         (tpu-next-end-of-line, tpu-current-end-of-line): Use new name.
20878         (tpu-trim-line-ends-if-needed): Rename from tpu-before-save-hook.
20879         (tpu-set-cursor-free, tpu-set-cursor-bound):
20880         Delegate to tpu-cursor-free-mode.
20881         (tpu-next-line, tpu-previous-line, tpu-forward-line)
20882         (tpu-backward-line, tpu-scroll-window-down, tpu-scroll-window-up):
20883         Use line-move or forward-line instead of next-line-internal.
20885 2007-08-13  Nick Roberts  <nickrob@snap.net.nz>
20887         * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
20889 2007-08-12  Richard Stallman  <rms@gnu.org>
20891         * pcvs.el (cvs-reread-cvsrc, cvs-checkout, cvs-mode-checkout)
20892         (cvs-execute-single-file): Use new name split-string-and-unquote.
20893         (cvs-header-msg): Use new name combine-and-quote-strings.
20895         * emulation/vi.el (vi-next-line): Ignore return value of line-move.
20897         * progmodes/gud.el (gud-common-init): Use new name
20898         split-string-and-unquote.
20900         * progmodes/flymake.el (flymake-err-line-patterns): Fix infloop
20901         in javac regexp.
20903         * pcvs-util.el (cvs-qtypedesc-strings): Use new names
20904         combine-and-quote-strings and split-string-and-unquote.
20906         * subr.el (combine-and-quote-strings): Rename from strings->string.
20907         (split-string-and-unquote): Rename from string->strings.
20909 2007-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
20911         * log-view.el (log-view-font-lock-keywords): Use `eval' so as to adapt
20912         to buffer-local settings.
20914         * emacs-lisp/backquote.el (backquote-delay-process): New function.
20915         (backquote-process): Add internal arg `level'.  Use the two to
20916         correctly handle nested backquotes.
20918 2007-08-09  Riccardo Murri  <riccardo.murri@gmail.com>
20920         * vc-bzr.el (vc-bzr-registered): Use \0 instead of literal NULs.
20921         (vc-bzr-state-words): Add "kind changed" state word.
20922         (vc-bzr-status): New function.  Return Bzr idea of file status,
20923         which is different from VC's.
20924         (vc-bzr-state): Use vc-bzr-status.
20925         (vc-workfile-unchanged-p): Use vc-bzr-status.
20926         (vc-bzr-revert): Use synchronous process; expect exitcode 0.
20927         (vc-dired-state): Process "kind changed" state word.
20929 2007-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
20931         * vc-hooks.el (vc-default-find-file-not-found-hook): Do nothing.
20933         * vc-rcs.el (vc-rcs-find-file-not-found-hook):
20934         Move from vc-default-find-file-not-found-hook.
20936 2007-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20938         * man.el: Remove spurious * in docstrings.
20939         Merge defvars and toplevel setq-defaults.
20940         (Man-highlight-references0): Limit=nil rather than point-max.
20941         (Man-mode-map): Move initialization into the declaration.
20942         (Man-strip-page-headers, Man-unindent): Use dolist & inhibit-read-only.
20943         (Man-view-header-file): Use expand-file-name rather than concat.
20944         (Man-notify-when-ready, Man-bgproc-sentinel): Use with-current-buffer.
20946         * man.el (Man-next-section): Make sure we do not move backward.
20948 2007-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20950         * files.el (auto-mode-alist): Use the purecopied text (duh!).
20952 2007-08-08  Glenn Morris  <rgm@gnu.org>
20954         * Replace `iff' in doc-strings and comments.
20956 2007-08-08  Martin Rudalics  <rudalics@gmx.at>
20958         * dired.el (dired-pop-to-buffer):
20959         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
20960         * calendar/calendar.el (generate-calendar-window):
20961         * progmodes/compile.el (compilation-set-window-height):
20962         * textmodes/two-column.el (2C-two-columns, 2C-merge):
20963         Use window-full-width-p instead of comparing frame-width and
20964         window-width.
20966         * progmodes/compile.el (compilation-find-buffer): Remove extra
20967         argument in call to compilation-buffer-internal-p.
20969 2007-08-07  Tom Tromey  <tromey@redhat.com>
20971         * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
20972         Add safe-local-variable property.
20974 2007-08-07  Chong Yidong  <cyd@stupidchicken.com>
20976         * image-mode.el (image-toggle-display): Use image-refresh.
20978 2007-08-07  Riccardo Murri  <riccardo.murri@gmail.com>
20980         * vc-bzr.el: Remove comments about vc-bzr.el being a modified
20981         unofficial version.
20982         (vc-bzr-command): Remove redundant setting of process-connection-type.
20983         (vc-bzr-admin-checkout-format-file): Add autoload.
20984         (vc-bzr-root-dir): Remove in favor of vc-bzr-root.
20985         (vc-bzr-root): Switch to implementation of vc-bzr-root-dir.
20986         (vc-bzr-registered): Compare dirstate format tag with known good
20987         value, abort parsing if match fails.  Warn user in docstring.
20988         (vc-bzr-workfile-version): Case for different Bzr branch formats.
20989         See bzrlib/branch.py in Bzr sources.
20990         (vc-bzr-diff): First argument FILES may be a string rather than a list.
20991         (vc-bzr-shell-command): Remove in favor of
20992         vc-bzr-command-discarding-stderr.
20993         (vc-bzr-command-discarding-stderr): New function.
20995 2007-08-06  Riccardo Murri  <riccardo.murri@gmail.com>
20997         * vc-bzr.el (vc-bzr-registered): Gracefully handle missing "bzr"
20998         program, and return nil.
20999         (vc-bzr-state): Gracefully handle missing "bzr" program, and return nil.
21000         (vc-bzr-state): Look for path names relative to the repository
21001         root after status keyword.
21002         (vc-bzr-file-name-relative): New function.
21003         (vc-bzr-admin-dirname): Reinstate, as other vc-bzr-admin-... paths
21004         depend on it.
21005         (vc-bzr-admin-dirname, ...-checkout-format-file)
21006         (...-branch-format-file, ...-revhistory): Paths to some Bzr internal
21007         files that we now parse directly for speed.
21008         (vc-bzr-root-dir): Use `vc-bzr-admin-checkout-format-file' as witness.
21009         (vc-bzr-registered): Only parse vc-bzr-admin-dirstate file if it exists.
21010         (vc-bzr-state): "bzr status" successful only if exitcode is 0.
21011         (vc-bzr-root): Use `vc-bzr-shell-command'.  Stderr may contain
21012         Bzr warnings, so we must discard it.
21013         (vc-bzr-workfile-version): Speedup counting lines from
21014         `vc-bzr-admin-revhistory' file, but fallback to spawning "bzr revno"
21015         if that file doesn't exist.
21016         (vc-bzr-responsible-p): Use `vc-bzr-root' instead of
21017         `vc-bzr-root-dir' for speed.  Add `vc-bzr-admin-dirname' (not ".bzr"!)
21018         to `vc-directory-exclusion-list'.
21019         (vc-bzr-shell-command): New function.
21021 2007-08-06  Tom Tromey  <tromey@redhat.com>
21023         * diff-mode.el (diff-unified->context, diff-reverse-direction)
21024         (diff-fixup-modifs): Typo in docstring.
21026 2007-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
21028         * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
21029         count-screen-lines.
21030         (tpu-edt-off): Disable relevant pieces of advice.
21032         * emulation/tpu-extras.el (tpu-before-save-hook): Rename from
21033         tpu-write-file-hook.  Activate it with add-hook on buffer-save-hook.
21034         (newline, newline-and-indent, do-auto-fill): Use advice instead of
21035         redefining the function.
21036         (tpu-set-scroll-margins): Activate the pieces of advice.
21038 2007-08-06  Martin Rudalics  <rudalics@gmx.at>
21040         * help.el (resize-temp-buffer-window): Use window-full-width-p
21041         instead of comparing frame-width and window-width.
21043 2007-08-13  Stephen Leake  <stephen_leake@stephe-leake.org>
21045         * pcvs-parse.el (cvs-parse-table): Handle additional instance of
21046         optional quotes around files in NEED-UPDATE . REMOVED case.
21048         * progmodes/ada-xref.el (ada-gnatls-args): Fix docstring.
21049         (ada-treat-cmd-string): Improve error message.
21050         (ada-do-file-completion): Call `ada-require-project-file', so
21051         project variables are set properly.
21052         (ada-prj-find-prj-file): Delete Emacs 20.2 support.
21053         (ada-gnatfind-buffer-name): New constant.
21054         (ada-find-any-references): Use new constant.  Set buffer name
21055         properly in compilation-start.  Toggle read-only properly.
21056         (ada-find-in-src-path): Fix spelling error in docstring.
21058         * progmodes/vhdl-mode.el (vhdl-update-progress-info): Avoid divide
21059         by zero error.
21061 2007-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
21063         * emacs-lisp/autoload.el (autoload-print-form): Use print-quoted.
21065 2007-08-12  Richard Stallman  <rms@gnu.org>
21067         * progmodes/sh-script.el (sh): Delete group `unix'.
21069         * progmodes/gud.el (gud): Change to group `processes'.
21071 2007-08-11  Glenn Morris  <rgm@gnu.org>
21073         * progmodes/compile.el (compilation-buffer-name): Don't check
21074         compilation-arguments.  It is superfluous, and the variable isn't
21075         even set when this function is called.
21077 2007-08-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21079         * term/mac-win.el (mac-ae-reopen-application): New function.
21080         (mac-apple-event-map): Bind "reopen application" Apple event to it.
21082 2007-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21084         * textmodes/tex-mode.el (tex-font-lock-unfontify-region): Fix to
21085         take tex-font-script-display into account.
21086         (tex-font-script-display, tex-font-lock-suscript): Change from a cons
21087         cell to a list of 2 elements to simplify the unfontify code.
21089 2007-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21091         * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
21092         (ps-begin-job): Use ps-default-fg and ps-default-bg only when
21093         ps-print-color-p is neither nil nor black-white.  Reported by Christian
21094         Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
21096 2007-08-08  Andreas Schwab  <schwab@suse.de>
21098         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
21099         self-insert-command, not self-insert.
21101 2007-08-08  Glenn Morris  <rgm@gnu.org>
21103         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string): Make second
21104         argument optional, for backwards compatibility, and only highlight
21105         args when present.  Fix symbol name typo (doc/args).
21107         * help-mode.el (help-make-xrefs): Search for symbol constituents,
21108         rather than just `-'.
21110 2007-08-07  Jay Belanger  <jay.p.belanger@gmail.com>
21112         * calc/calc-units.el (calc-convert-temperature):
21113         Use `/' to create fractions.
21115 2007-08-07  Michael Albinus  <michael.albinus@gmx.de>
21117         * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
21118         global matching.
21119         (tramp-handle-shell-command): Handle OUTPUT-BUFFER and
21120         ERROR-BUFFER more robust.  Display output.
21121         (tramp-file-name-handler): Add a connection property when we found
21122         a foreign file name handler.  This allows backends like ftp to
21123         profit also from usr/host name completion based on connection
21124         cache.
21125         (tramp-send-command-and-read): Search for trash after the regexp
21126         until eol only.  In XEmacs, there is a problem with \n.
21128         * net/tramp-cache.el (top): Read persistent connection history
21129         when cache is empty.
21131 2007-08-07  Nic Ferrier  <nferrier@tapsellferrier.co.uk>  (tiny change)
21133         * net/tramp.el (tramp-handle-process-file): Fix bug inserting
21134         resulting output.
21136 2007-08-07  Sam Steingold  <sds@gnu.org>
21138         * progmodes/compile.el (compilation-start): Pass nil as startfile
21139         to comint-exec.
21141 2007-08-07  Chong Yidong  <cyd@stupidchicken.com>
21143         * longlines.el (longlines-decoded): New variable.
21144         (longlines-mode): Avoid encoding or decoding the buffer twice.
21146 2007-08-07  Martin Rudalics  <rudalics@gmx.at>
21148         * format.el (format-insert-file): Make sure that at most one undo
21149         entry is recorded for the insertion.  Inhibit point-motion and
21150         modification hooks around call to insert-file-contents.
21152 2007-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21154         * vc.el (vc-annotate): Select temp-buffer before running vc-exec-after.
21155         Select the buffer's window before moving point.
21157 2007-08-07  Richard Stallman  <rms@gnu.org>
21159         * term.el (term): Remove parent group `unix'.
21161         * simple.el (default-indent-new-line): New function.
21162         It calls comment-line-break-function if there are comments.
21163         (do-auto-fill): Use that.
21165 2007-08-07  Sean O'Rourke  <sorourke@cs.ucsd.edu>
21167         * complete.el (PC-lisp-complete-symbol): Complete symbol around point.
21168         (PC-do-completion): Add "acronym completion" for symbols and
21169         filenames, so e.g. "mvbl" expands to "make-variable-buffer-local".
21171 2007-08-06  Sam Steingold  <sds@gnu.org>
21173         * mouse.el (mouse-buffer-menu): Pass mode-name through
21174         format-mode-line because it may be a list,
21175         e.g., (sgml-xml-mode "XML" "SGML"), and not a string.
21177 2007-08-06  Vinicius Jose Latorre  <viniciusig@ig.com.br>
21179         * printing.el (pr-update-menus): Docstring fix.
21181 2007-08-06  Jason Rumney  <jasonr@gnu.org>
21183         * menu-bar.el (menu-bar-vc-filter): Use vc-call-backend.
21185         * vc-hooks.el (vc-call): Add doc string.
21187 2007-08-06  Michael Albinus  <michael.albinus@gmx.de>
21189         * net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
21190         process-filter.
21192 2007-08-06  Kenichi Handa  <handa@m17n.org>
21194         * international/quail.el: Wrap (require 'help-mode) by
21195         eval-when-compile.
21196         (quail-help-init): New function.
21197         (quail-help): Call quail-help-init.
21198         (quail-store-decode-map-key): Change it to a function.
21200 2007-08-05  Jason Rumney  <jasonr@gnu.org>
21202         * vc.el (vc-rollback): Add norevert argument back.
21203         (vc-revert-buffer): Add back as obsolete alias.
21205 2007-08-05  Peter Povinec  <ppovinec@yahoo.com>  (tiny change)
21207         * term.el: Honor term-default-fg-color and term-default-bg-color
21208         settings when modifying term-current-face.
21209         (term-default-fg-color, term-default-bg-color): Initialize from
21210         default term-current-face.
21211         (term-mode, term-reset-terminal): Set term-current-face with
21212         term-default-fg-color and term-default-bg-color.
21213         (term-handle-colors-array): term-current-face has term-default-fg-color
21214         and term-default-bg-color after reset escape sequence.
21215         (term-handle-colors-array): Set term-current-color with
21216         term-default-fg/bg-color instead of ansi-term-color-vector when the
21217         index (term-ansi-current-color or term-ansi-current-bg-color) is zero.
21219 2007-08-05  Jay Belanger  <jay.p.belanger@gmail.com>
21221         * calc/calc-nlfit.el (math-nlfit-curve): Remove unnecessary variables.
21222         (math-nlfit-givens): Let bind free variables.
21224 2007-08-05  Vinicius Jose Latorre  <viniciusig@ig.com.br>
21226         * printing.el: Require lpr and ps-print when loading printing package.
21227         Reported by Glenn Morris <rgm@gnu.org>.
21229 2007-08-05  Michael Albinus  <michael.albinus@gmx.de>
21231         * files.el (set-auto-mode): Handle also remote files wrt
21232         `auto-mode-alist'.
21234 2007-08-04  Jay Belanger  <jay.p.belanger@gmail.com>
21236         * calc/calcalg3.el (calc-curve-fit): Add support for nonlinear
21237         curves and plotting.
21239         * calc/calc-nlfit.el: New file.
21241 2007-08-04  Glenn Morris  <rgm@gnu.org>
21243         * autorevert.el (auto-revert-tail-mode): auto-revert-tail-pos is
21244         zero, not nil, when the library is first loaded.  Check for a file
21245         that has been modified on disk.
21247         * progmodes/cperl-mode.el (cperl-compilation-error-regexp-alist):
21248         Remove duplicate defvar preventing initialization.
21249         (cperl-mode): Fix compilation-error-regexp-alist-alist setting.
21251 2007-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
21253         * diff-mode.el (diff-font-lock-keywords): Fix up false positives.
21254         (diff-beginning-of-file): Adjust to the fact that diff-file-header-re
21255         may match up to 4 lines.
21256         (diff-beginning-of-file-and-junk): Rewrite.
21258 2007-08-03  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21260         * printing.el: Evaluate require only during compilation.
21261         (pr-version): New version 6.9.1.
21262         (deactivate-mark): Replace (defvar VAR nil) by (defvar VAR).
21263         (pr-global-menubar): Fix code.
21265 2007-08-03  Dan Nicolaescu  <dann@ics.uci.edu>
21267         * term.el (term-erase-in-display): Fix case when point is not at
21268         the beginning of the line.
21270 2007-08-03  Jay Belanger  <jay.p.belanger@gmail.com>
21272         * calc/calc-ext.el (math-get-value, math-get-sdev)
21273         (math-contains-sdev): New functions.
21275         * calc/calc-graph.el (calc-graph-format-data)
21276         (calc-graph-add-curve): Check for error forms.
21277         (calc-graph-set-styles): Add option for error forms.
21279 2007-08-03  Miles Bader  <miles@gnu.org>
21281         * vc-hooks.el (vc-handled-backends): Change capitalization of VC
21282         backend names for new backends to `Git', `Hg', and `Bzr'.
21283         * vc-hg.el (vc-hg-dired-state-info): Use `Hg' as VC backend name,
21284         not `HG'.
21285         * vc-git.el (vc-git-dired-state-info): Use `Git' as VC backend
21286         name, not `GIT'.
21287         * vc-bzr.el (vc-bzr-dir-state, vc-bzr-dired-state-info)
21288         (vc-bzr-unload-hook): Use `Bzr' as VC backend name, not `BZR'.
21290 2007-08-03  Richard Stallman  <rms@gnu.org>
21292         * mail/rmailsum.el (rmail-make-summary-line): Find end of msg number
21293         to update deleted flag.
21295         * cus-edit.el (customize-apropos, customize-apropos-options)
21296         (customize-apropos-faces, customize-apropos-groups): Improve prompt.
21298         * menu-bar.el (menu-bar-help-menu): Add "About GNU" menu item.
21300         * startup.el (fancy-splash-head, startup-echo-area-message):
21301         Change message text.
21303         * emulation/tpu-edt.el (next-line-internal): Setting deleted.
21304         All callers use line-move.
21306         * progmodes/compile.el (compilation-find-buffer): Return current
21307         buffer immediately if suitable.
21308         (compile, compilation-buffer-name, compilation-start): Doc fixes.
21310 2007-08-03  Daiki Ueno  <ueno@unixuser.org>
21312         * faces.el (face-normalize-spec): New function.
21313         (frame-set-background-mode): Normalize face-spec before calling
21314         face-spec-match-p.
21316 2007-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
21318         * server.el (server-window): Add switch-to-buffer-other-frame option.
21320 2007-08-03  Glenn Morris  <rgm@gnu.org>
21322         * cus-edit.el (customize-apropos): Make the error message indicate
21323         what kind of thing the user was trying to customize.
21325         * net/telnet.el (telnet-mode): Set comint-use-prompt-regexp to t.
21327         * progmodes/fortran.el (fortran-font-lock-syntactic-keywords):
21328         Fix off-by-one error in previous change.
21330 2007-08-03  Drew Adams  <drew.adams@oracle.com>
21332         * emacs-lisp/pp.el (pp-eval-expression): Add progress message.
21333         Make buffer writable.
21335 2007-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
21337         * calc/calc-math.el (math-sqrt-raw, math-sin-raw-2)
21338         (math-cos-raw-2, math-arctan-raw, math-ln-raw):
21339         Use native Emacs functions, when appropriate.
21341 2007-08-01  Dan Nicolaescu  <dann@ics.uci.edu>
21342             Stefan Monnier  <monnier@iro.umontreal.ca>
21344         * vc.el: Document new VC operation `extra-menu'.
21346         * vc-hooks.el (vc-default-extra-menu): New function.
21348         * menu-bar.el (menu-bar-vc-filter): New function.
21349         (menu-bar-tools-menu): Use it as a filter.
21351 2007-08-01  Eric Hanchrow  <offby1@blarg.net>  (tiny change)
21353         * ibuf-ext.el (ibuffer-mark-old-buffers): Docstring fix.
21355 2007-08-01  Glenn Morris  <rgm@gnu.org>
21357         * progmodes/fortran.el: Remove leading `*' from all defcustom doc
21358         strings.
21359         (fortran-tab-mode-default): Remove needless autoload.
21360         (fortran-tab-mode-string): Add help-echo and mouse properties, and
21361         mark as risky.
21362         (fortran-line-length): New buffer-local variable, safe if integer.
21363         (fortran-if-start-re, fortran-end-prog-re1, fortran-end-prog-re):
21364         Change from variables to constants.
21365         (fortran-font-lock-syntactic-keywords): Delete as a variable,
21366         replace with a new function definition.
21367         (fortran-mode): Use fortran-line-length, and
21368         fortran-font-lock-syntactic-keywords as a function.  Add a
21369         hack-local-variables-hook function.
21370         (fortran-line-length, fortran-hack-local-variables): New functions.
21371         (fortran-window-create, fortran-strip-sequence-nos): Doc fix.
21372         Use fortran-line-length rather than 72.
21373         (fortran-window-create-momentarily): Doc fix.
21375 2007-07-31  Drew Adams  <drew.adams@oracle.com>  (tiny change)
21377         * cus-edit.el (custom-group-value-create, custom-goto-parent):
21378         Fix parent groups link.
21380 2007-07-31  Paul Pogonyshev  <pogonyshev@gmx.net>
21382         * progmodes/python.el (python-current-defun): Adjust to never fall
21383         into infinite loop.
21385 2007-07-31  Stefan Monnier  <monnier@iro.umontreal.ca>
21387         * pcvs.el (cvs-vc-command-advice): Handle the new fileset case.
21389 2007-07-29  Kimit Yada  <kimitto@gmail.com>  (tiny change)
21391         * emacs-lisp/copyright.el (copyright-update-year, copyright-update)
21392         (copyright-fix-years, copyright): Correctly handle the case where
21393         copyright-limit is nil.
21395 2007-07-28  Konstantin Novitsky  <knovitsk@Bear.com>  (tiny change)
21397         * progmodes/python.el (run-python): Fix path separator under w32.
21399 2007-07-30  Richard Stallman  <rms@gnu.org>
21401         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21402         Treat non-break space as whitespace in Lisp.
21404 2007-07-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21406         * vc.el (vc-dired-hook): Use inhibit-read-only.
21408         * progmodes/compile.el (compilation-forget-errors):
21409         Reset compilation-auto-jump-to-next.
21411 2007-07-30  Michael Olson  <mwolson@gnu.org>
21413         * cus-edit.el (custom-group-save): Fix void function definition
21414         error.  Thanks to Zhang Wei for the report.
21416         * ps-print.el: Check in trivial changes to the autoloads section
21417         caused by the build process.  These autoloads really ought to be
21418         placed in a separate file, methinks.
21420 2007-07-29  Stefan Monnier  <monnier@iro.umontreal.ca>
21422         * calendar/calendar.el (calendar-mode): Make sure
21423         displayed-(month|year) are set.
21424         (calendar-basic-setup): Display buffer before adjusting window sizes.
21425         (generate-calendar-window): Use inhibit-read-only.  Simplify.
21426         Generate buffer and set displayed-month and displayed-year before
21427         calling update-calendar-mode-line.
21429 2007-07-29  Michael Albinus  <michael.albinus@gmx.de>
21431         * net/tramp.el:
21432         * net/tramp-uu.el:
21433         * net/trampver.el: Use utf-8 encoding with coding cookie.
21435         * net/tramp-cache.el:
21436         * net/tramp-fish.el:
21437         * net/tramp-ftp.el:
21438         * net/tramp-gw.el:
21439         * net/tramp-smb.el: Remove coding cookie.
21441         * net/tramp.el (tramp-handle-verify-visited-file-modtime):
21442         Flush buffer file-name's file property.
21443         (tramp-handle-file-remote-p): The first parameter is FILENAME.
21445         * net/trampver.el: Update release number.
21447 2007-07-29  Juri Linkov  <juri@jurta.org>
21449         * dired.el (dired-mode-map): Bind C-x C-q to dired-toggle-read-only.
21450         Filter out menu item "Edit File Names" `wdired-change-to-wdired-mode'
21451         when major-mode is not dired-mode.
21452         (dired-toggle-read-only): New function.
21453         (dired-recursive-deletes): Remove obsolete comments about old
21454         default value.
21455         (dired-do-flagged-delete, dired-do-delete): Refill docstring.
21457         * wdired.el (wdired-exit): New function.
21458         (wdired-mode-map): Bind C-x C-q to wdired-exit.
21460 2007-07-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21462         * cus-edit.el (customize-read-group): New fun.
21463         (customize-group-other-window, customize-face-other-window):
21464         Prompt before delegating to customize-(group|face).
21465         Bind pop-up-windows rather than use the other-window argument.
21466         (customize-group, customize-face): Prompt from the interactive spec.
21467         Remove args `prompt-for-group' and `other-window'.
21469         * emacs-lisp/advice.el (ad-interactive-form): Re-introduce.
21470         (ad-body-forms, ad-advised-interactive-form): Revert this part of
21471         last change.
21473 2007-07-28  Masatake YAMATO  <jet@gyve.org>
21475         * vc.el (vc-dired-mode): Add a menu for VC related operation.
21476         Use backend name as the menu label.  Suggested by David Kastrup.
21478 2007-07-28  Alan Mackenzie  <acm@muc.de>
21480         Fix problem with modes derived from CC Mode:
21481         * progmodes/cc-mode.el (c-make-emacs-variables-local): Move this
21482         macro to cc-langs.
21483         (c-init-language-vars-for): Remove call to above macro.
21484         * progmodes/cc-langs.el (c-make-emacs-variables-local): Macro has
21485         been moved to here.
21486         (c-make-init-lang-vars-fun): Call c-make-emacs-variables-local.
21488 2007-07-28  Eli Zaretskii  <eliz@gnu.org>
21490         * net/trampver.el: Fix the `coding' cookie.
21492 2007-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
21494         * vc-git.el (vc-git-print-log): Support both the old single file
21495         interface and the new one.
21497 2007-07-28  Nick Roberts  <nickrob@snap.net.nz>
21499         * bindings.el (mode-line-remote): Use updated %@ construct.
21501 2007-07-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21503         * calendar/cal-bahai.el (calendar-bahai-month-name-array)
21504         (calendar-bahai-epoch, calendar-bahai-leap-year-p)
21505         (calendar-bahai-leap-base, calendar-bahai-prompt-for-date)
21506         (diary-list-bahai-entries, diary-bahai-mark-entries)
21507         (calendar-bahai-mark-date-pattern, diary-insert-bahai-entry)
21508         (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
21509         New names to clean up namespace.
21510         (list-bahai-diary-entries, mark-bahai-diary-entries)
21511         (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
21512         (insert-yearly-bahai-diary-entry, mark-bahai-calendar-date-pattern):
21513         Add compatibility aliases.
21515         * calendar/appt.el: Don't wrap defvar within eval-when-compile.
21517         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
21518         (calendar-scroll-left-three-months)
21519         (calendar-scroll-right-three-months): Clean up namespace.
21520         (scroll-calendar-left, scroll-calendar-right)
21521         (scroll-calendar-left-three-months)
21522         (scroll-calendar-right-three-months): Add compatibility aliases.
21524         * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
21525         Behave like mouse-scroll-calendar-* when used from the mouse.
21527         * calendar/cal-menu.el (cal-menu-scroll-menu)
21528         (cal-menu-global-mouse-menu):
21529         * calendar/calendar.el (calendar-mode-map):
21530         Use new calendar-scroll-* names.
21531         (mouse-scroll-calendar-left, mouse-scroll-calendar-right):
21532         Remove.  Use calendar-scroll-* directly instead.
21534 2007-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21536         * emacs-lisp/advice.el (ad-interactive-p, ad-interactive-form): Remove.
21537         (ad-body-forms, ad-advised-interactive-form, ad-make-cache-id)
21538         (ad-make-advised-definition, ad-cache-id-verification-code):
21539         Use commandp and interactive-form instead.
21541 2007-07-26  Dan Nicolaescu  <dann@ics.uci.edu>
21543         * vc-git.el: Relicense to GPLv3 or later.
21544         (vc-directory-exclusion-list, vc-handled-backends): Remove.
21546         * vc-hooks.el (vc-handled-backends): Add GIT.
21548         * vc.el (vc-directory-exclusion-list): Add .git.
21550 2007-07-26  Alexandre Julliard  <julliard@winehq.org>
21552         * vc-git.el (vc-git-revision-table)
21553         (vc-git-revision-completion-table): New functions.
21555 2007-07-25  Glenn Morris  <rgm@gnu.org>
21557         * Relicense all FSF files to GPLv3 or later.
21559         * COPYING: Switch to GPLv3.
21561 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21563         * pcvs.el (cvs-temp-buffer): Undo last ill-conceived change.
21564         Replace it with another one which disables undo before calling
21565         erase-buffer and then turns it back on if needed.
21567 2007-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
21569         * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out.
21571 2007-07-24  Glenn Morris  <rgm@gnu.org>
21573         * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
21574         (cal-tex-rules, cal-tex-buffer, cal-tex-24)
21575         (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
21576         (cal-tex-cursor-week, cal-tex-cursor-week2)
21577         (cal-tex-cursor-week-iso, cal-tex-week-hours)
21578         (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21579         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21580         (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
21582 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21584         * calendar/calendar.el (calendar-mode-map): Move initialization
21585         into declaration.  Add menu bindings (used to be done in cal-menu).
21586         (calendar-mode): Don't add an activate-menubar-hook.
21588         * calendar/cal-menu.el: Break dependency on calendar.el (i.e. do not
21589         modify calendar-mode-map), use easy-menu, and make sure that C-h k
21590         can be used on the menu entries.
21591         (cal-menu-holiday-window-suffix, cal-menu-set-date-title): New funs.
21592         (cal-menu-moon-menu, cal-menu-diary-menu, cal-menu-holidays-menu)
21593         (cal-menu-goto-menu, cal-menu-scroll-menu): New consts.
21594         (cal-menu-context-mouse-menu, cal-menu-global-mouse-menu): New menus.
21595         (calendar-flatten, cal-menu-update): Remove.
21596         (calendar-mouse-insert-hebrew-diary-entry)
21597         (calendar-mouse-insert-islamic-diary-entry)
21598         (calendar-mouse-insert-bahai-diary-entry):
21599         Remove (fold into cal-menu-diary-menu).
21600         (calendar-mouse-2-date-menu, calendar-mouse-cal-tex-menu)
21601         (cal-tex-mouse-filofax): Remove (fold into cal-menu-context-mouse-menu).
21602         (calendar-mouse-3-map): Remove (turn into cal-menu-global-mouse-menu).
21603         (calendar-mouse-view-diary-entries): Minor simplifications.
21604         (calendar-event-to-date): Use with-current-buffer.
21606 2007-07-25  Nick Roberts  <nickrob@snap.net.nz>
21608         * add-log.el (change-log-redate): Remove (not needed anymore and
21609         doesn't appear to work).
21611 2007-07-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21613         * frame.el: Use mapc and dolist instead of mapcar where possible.
21614         (close-display-connection): New command.
21616 2007-07-25  Alexandre Julliard  <julliard@winehq.org>
21618         * vc-git.el (vc-git-log-view-mode): Port to the multi-file vc interface.
21619         (vc-git-create-snapshot, vc-git-retrieve-snapshot): New functions.
21621 2007-07-25  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21623         * ps-print.el (ps-multibyte-buffer): Docstring fix.
21625         * ps-mule.el: Doc fix.
21626         (ps-multibyte-buffer, ps-mule-font-info-database-default)
21627         (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix.
21629 2007-07-25  Glenn Morris  <rgm@gnu.org>
21631         * calendar/cal-tex.el (cal-tex-which-days, cal-tex-holidays)
21632         (cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
21633         (cal-tex-daily-end, cal-tex-hook)
21634         (cal-tex-cal-one-month, cal-tex-cal-multi-month)
21635         (cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
21636         (cal-tex-cursor-week-iso, cal-tex-week-hours)
21637         (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21638         (cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
21639         (cal-tex-day-prefix, cal-tex-day-name-format)
21640         (cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
21641         (cal-tex-caldate, cal-tex-LaTeX-hourbox)
21642         (cal-tex-LaTeX-subst-list): Change from variables to constants.
21643         (cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
21644         (cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
21645         etc, rather than \bf.
21646         (cal-tex-mini-calendar): Fix typos in previous change.
21647         (cal-tex-latexify-list): Remove inner let binding.
21648         (cal-tex-end-document, cal-tex-banner): Use multi-line
21649         cal-tex-comment.
21650         (cal-tex-comment): Handle embedded newlines.
21651         (cal-tex-LaTeXify-string): Use substring-no-properties.
21653 2007-07-25  Joakim Verona  <joakim@verona.se>  (tiny change)
21655         * progmodes/compile.el (compilation-error-regexp-alist-alist):
21656         Add support for the Maden build tool.
21658 2007-07-25  William Xu  <william.xwl@gmail.com>  (tiny change)
21660         * net/webjump.el (webjump-url-encode): Fix for non-ASCII characters.
21662 2007-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
21664         * pcvs.el (cvs-temp-buffer): Disable undo in temp buffers.
21666 2007-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
21668         * dired.el (dired-mode-map): Bind wdired-change-to-wdired-mode to
21669         C-x C-q.
21671         * vc-git.el (vc-git-print-log): Fix previous change.
21673 2007-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
21675         * window.el (save-selected-window): Minor optimization.
21676         (bw-adjust-window): If operation failed, try with a smaller delta.
21677         (window-fixed-size-p): New function.
21678         (window-area-factor): New var.
21679         (balance-windows-area): New command.
21681         * ps-mule.el (ps-multibyte-buffer): Docstring fixes.
21682         (ps-mule-encode-ethiopic): Make it clear that it's always defined.
21683         (ps-mule-prepare-font-for-components, ps-mule-encode-header-string)
21684         (ps-mule-encode-bit, ps-mule-encode-ucs2): Use dotimes.
21685         (ps-mule-begin-job): Use dolist.
21687 2007-07-24  Michael Albinus  <michael.albinus@gmx.de>
21689         * subr.el (start-file-process-shell-command)
21690         (process-file-shell-command): New defuns.
21692         * progmodes/compile.el (compilation-start):
21693         Apply `start-file-process-shell-command'.
21695 2007-07-24  Alexandre Julliard  <julliard@winehq.org>
21697         * vc-git.el (vc-git-checkout, vc-directory-exclusion-list): Fix typos.
21699 2007-07-24  Alan Mackenzie  <acm@muc.de>
21701         * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
21702         Initialise byte-compile-unresolved-functions before rather than
21703         after a compilation.
21704         (byte-compile-unresolved-functions): Amplify doc string.
21706 2007-07-24  Glenn Morris  <rgm@gnu.org>
21708         * startup.el (normal-splash-screen): Use `emacs-copyright'.
21710         * calendar/cal-tex.el (cal-tex-holidays, cal-tex-diary)
21711         (cal-tex-rules, cal-tex-buffer, cal-tex-24)
21712         (cal-tex-cursor-month-landscape, cal-tex-cursor-month)
21713         (cal-tex-cursor-week, cal-tex-cursor-week2)
21714         (cal-tex-cursor-week-iso, cal-tex-week-hours)
21715         (cal-tex-cursor-week-monday, cal-tex-weekly4-box)
21716         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21717         (cal-tex-cursor-filofax-daily, cal-tex-daily-page): Doc fix.
21719         * calendar/cal-tex.el: Remove leading `*' from defcustom docs.
21720         (cal-tex-daily-string, cal-tex-daily-start, cal-tex-daily-end)
21721         (cal-tex-day-name-format, cal-tex-cal-one-month)
21722         (cal-tex-cal-multi-month, cal-tex-myday, cal-tex-preamble)
21723         (cal-tex-comment, cal-tex-nl, cal-tex-cmd, cal-tex-e-parbox)
21724         (cal-tex-mini-calendar, cal-tex-em): Doc fix.
21725         (cal-tex-list-holidays, cal-tex-cursor-year)
21726         (cal-tex-cursor-year-landscape, cal-tex-year)
21727         (cal-tex-cursor-filofax-year, cal-tex-cursor-month-landscape)
21728         (cal-tex-cursor-month, cal-tex-insert-days)
21729         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
21730         (cal-tex-first-blank-p, cal-tex-cursor-week)
21731         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
21732         (cal-tex-week-hours, cal-tex-cursor-week-monday)
21733         (cal-tex-weekly4-box, cal-tex-cursor-filofax-2week)
21734         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily)
21735         (cal-tex-cursor-day, cal-tex-daily-page, cal-tex-mini-calendar)
21736         (cal-tex-latexify-list, cal-tex-previous-month)
21737         (cal-tex-next-month, cal-tex-insert-preamble): General tidy-up and
21738         modernization, including using dotimes rather than
21739         calendar-for-loop.
21740         (cal-tex-LaTeX-subst-list): Remove `@'.
21741         (cal-tex-em, cal-tex-bf, cal-tex-Huge-bf, cal-tex-large-bf):
21742         Use \textit and \textbf rather than \em and \it.
21744         * calendar/cal-bahai.el (list-bahai-diary-entries)
21745         * calendar/cal-hebrew.el (list-hebrew-diary-entries)
21746         * calendar/cal-islam.el (list-islamic-diary-entries)
21747         * calendar/calendar.el (generate-calendar, generate-calendar-month)
21748         * calendar/diary-lib.el (diary-list-entries)
21749         (mark-calendar-date-pattern): Use `dotimes' rather than
21750         `calendar-for-loop'.
21752         * calendar/calendar.el (calendar-for-loop): Doc fix.
21754 2007-07-23  Stefan Monnier  <monnier@iro.umontreal.ca>
21756         * ses.el (ses-cleanup): Prevent Emacs from spuriously checking if the
21757         underlying file is uptodate.
21759 2007-07-23  Christopher J. Madsen  <cjm@cjmweb.net>
21761         * replace.el (perform-replace): Use isearch-no-upper-case-p.
21763 2007-07-23  Stefan Monnier  <monnier@iro.umontreal.ca>
21765         * vc-hooks.el (vc-mode-line-map): New const.
21766         (vc-mode-line): Use it.
21768 2007-07-23  Alexandre Julliard  <julliard@winehq.org>
21770         * vc-git.el (vc-git-delete-file, vc-git-rename-file)
21771         (vc-git-unregister): New functions.
21772         (vc-git-find-version): Use the result of ls-files as a parameter
21773         for cat-file.
21775 2007-07-23  Michael Albinus  <michael.albinus@gmx.de>
21777         * net/tramp.el (tramp-perl-file-attributes)
21778         (tramp-perl-directory-files-and-attributes)
21779         (tramp-handle-file-attributes-with-stat)
21780         (tramp-handle-directory-files-and-attributes-with-stat)
21781         (tramp-convert-file-attributes): Handle huge file sizes.
21783 2007-07-23  Juri Linkov  <juri@jurta.org>
21785         * isearch.el (isearch-message-function): New variable.
21786         (isearch-update, isearch-search): Use it.
21788         * simple.el (goto-history-element): New function created from
21789         next-history-element.
21790         (next-history-element): Most code moved to goto-history-element.
21791         Call goto-history-element with (- minibuffer-history-position n).
21792         (previous-history-element): Call goto-history-element with (+
21793         minibuffer-history-position n).
21794         (minibuffer-setup-hook): Add minibuffer-history-isearch-setup.
21795         (minibuffer-history-isearch-message-overlay): New buffer-local variable.
21796         (minibuffer-history-isearch-setup, minibuffer-history-isearch-end)
21797         (minibuffer-history-isearch-search, minibuffer-history-isearch-message)
21798         (minibuffer-history-isearch-wrap, minibuffer-history-isearch-push-state)
21799         (minibuffer-history-isearch-pop-state): New functions.
21801 2007-07-23  Thien-Thi Nguyen  <ttn@gnuvola.org>
21803         * vc-hooks.el (vc-stay-local-p): Fix bug: Avoid remove-if-not.
21804         Also, if FILE is a list, return non-nil if any of its elements
21805         should stay local.  Update docstring.
21807 2007-07-23  Stefan Monnier  <monnier@iro.umontreal.ca>
21809         * emacs-lisp/copyright.el (copyright-update-year): Fix 2007-05-25
21810         change by reverting a small part.
21812 2007-07-23  Richard Stallman  <rms@gnu.org>
21814         * progmodes/octave-inf.el (inferior-octave-prompt): Accept .exe.
21816 2007-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
21818         * vc-git.el (vc-git-checkin): Delete unused parameter and the code
21819         handling it.  Use vc-git-command.
21820         (vc-git-find-version, vc-git-diff-tree): New functions.
21821         (vc-git-revert): Use vc-git-command.
21822         (vc-git--run-command): Delete.
21824 2007-07-23  Alexandre Julliard  <julliard@winehq.org>
21826         * vc-git.el (vc-git-workfile-unchanged-p): Update comment.
21828 2007-07-20  Kenichi Handa  <handa@m17n.org>
21830         * international/utf-8.el (utf-8-post-read-conversion):
21831         Temporarily bind utf-8-compose-scripts to nil while running
21832         *-compose-region functions.
21834 2007-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
21836         * vc-git.el: Update status.
21837         (vc-directory-exclusion-list): Use eval-after-load.
21839 2007-07-22  Nick Roberts  <nickrob@snap.net.nz>
21841         * bindings.el (mode-line-remote): New variable.
21842         (help-echo): Add to default values of mode-line-format.
21844         * files.el: Mark mode-line-remote as risky.
21846 2007-07-22  Juri Linkov  <juri@jurta.org>
21848         * isearch.el (isearch-edit-string): Save old point and
21849         isearch-other-end to old-point and old-other-end before reading
21850         the search string from minibuffer.  After exiting minibuffer set
21851         point to old-other-end if point and the search direction is the
21852         same as before reading the search string.
21853         (isearch-del-char): Don't set isearch-yank-flag to t.  Put point
21854         to isearch-other-end.  Instead of isearch-search-and-update call
21855         three functions isearch-search, isearch-push-state and isearch-update.
21857 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
21859         * vc-git.el (vc-git-register, vc-git-checkin): Use vc-git-command,
21860         deal with multiple file arguments.
21861         (vc-git-print-log): Deal with multiple file arguments.
21863 2007-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21865         * diff-mode.el (diff-refine-ignore-spaces-hunk): Rename from
21866         diff-refine-hunk.  Adjust users.
21867         (diff-unified-hunk-p, diff-splittable-p): New functions.
21868         (diff-mode-menu): Use it to disable Split when it doesn't work.
21870 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
21872         * diff-mode.el (diff-mode-menu): New entries.
21874 2007-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21876         * diff-mode.el (diff-unified->context): Use the new `apply' undo entry
21877         if applicable, so as to save undo-log space.
21879         * diff-mode.el (diff-find-file-name): Add arg `batch'.
21881         * diff-mode.el (diff-beginning-of-file-and-junk): New function.
21882         (diff-file-kill): Use it.
21883         (diff-beginning-of-hunk): Add arg `try-harder' using it.
21884         (diff-restrict-view, diff-find-source-location, diff-refine-hunk):
21885         Use it so they find the hunk even when we're in the file header.
21887 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
21889         * vc-git.el (vc-git-revision-granularity, vc-git-root)
21890         (vc-git-command, vc-git-dir-state, vc-git-dired-state-info)
21891         (vc-git-create-repo): New functions.
21892         (vc-git-registered): New autoloaded function definition.
21893         (vc-git-registered): Use vc-git-root.
21894         (vc-git-responsible-p): New defalias.
21895         (vc-git-annotate-extract-revision-at-line): Uncomment.
21896         (vc-git-print-log): Add the file name to the log.
21897         (vc-git-log-view-mode): New derived mode.
21898         (vc-git-diff, vc-git-annotate-command): Use vc-git-command.
21900 2007-07-22  Michael Albinus  <michael.albinus@gmx.de>
21902         * progmodes/grep.el (grep-compute-defaults): Keep default values.
21904 2007-07-22  Ralf Angeli  <angeli@caeruleus.net>
21906         * textmodes/reftex.el (reftex-access-parse-file): Create parse
21907         file in a way that does not interfere with recentf mode.
21908         (reftex-access-parse-file): Do not risk destroying an existing
21909         buffer.
21911 2007-07-22  Alexandre Julliard  <julliard@winehq.org>
21913         * vc-git.el: New file.
21915 2007-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21917         * textmodes/tex-mode.el (tex-font-script-display): Change default.
21919 2007-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
21921         * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips
21922         for branches and new files.
21924         * vc-hooks.el (vc-default-mode-line-string): Move mouse-face and
21925         local-map handling ...
21926         (vc-mode-line): ... here.  Improve handling of help-echo.
21928         * vc.el (mode-line-string): Document help-echo usage.
21930 2007-07-22  Michael Albinus  <michael.albinus@gmx.de>
21932         Sync with Tramp 2.1.10.
21934         * net/tramp.el (tramp-get-ls-command): Fix typo.
21936         * net/trampver.el: Update release number.
21938 2007-07-22  Jan Djärv  <jan.h.d@swipnet.se>
21940         * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
21942         * term/x-win.el (x-handle-no-bitmap-icon): New function.
21944 2007-07-22  Martin Rudalics  <rudalics@gmx.at>
21946         * add-log.el (change-log-fill-parenthesized-list): New function.
21947         (change-log-indent): Call change-log-fill-parenthesized-list.
21948         (change-log-fill-paragraph): Bind fill-indent-according-to-mode to t.
21949         Have lines with leading asterisk start a paragraph.
21951 2007-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
21953         * calc/calc-math.el (math-emacs-precision)
21954         (math-largest-emacs-expt, math-smallest-emacs-expt):
21955         New variables.
21956         (math-use-emacs-fn): New function.
21957         (math-exp-raw): Evaluate with `math-use-emacs-fn', when
21958         appropriate.
21960 2007-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
21962         * image-dired.el (image-dired-sane-db-file): New func.
21963         (image-dired-write-tags, image-dired-remove-tag)
21964         (image-dired-list-tags, image-dired-write-comments)
21965         (image-dired-get-comment, image-dired-mark-tagged-files)
21966         (image-dired-create-gallery-lists): Call new func.
21967         Reported by Dieter Wilhelm <dieter@duenenhof-wilhelm.de>.
21969 2007-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
21971         * vc-hg.el (vc-hg-dir-state): Fix loop.
21972         (vc-hg-print-log): Fix expected return value for vc-hg-command.
21973         (vc-hg-next-version, vc-hg-delete-file, vc-hg-rename-file)
21974         (vc-hg-register, vc-hg-create-repo, vc-hg-checkin)
21975         (vc-hg-revert): Likewise.
21976         (vc-hg-revision-table, vc-hg-revision-completion-table): New
21977         functions.
21979 2007-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21981         * add-log.el (change-log-resolve-conflict): Don't lose data if the
21982         merge fails.
21984 2007-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
21986         * progmodes/compile.el (compilation-auto-jump-to-first-error):
21987         Add group and version.
21989 2007-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21991         * add-log.el (add-log-file-name): Use file-relative-name.
21992         (add-change-log-entry): Delay reading
21993         add-log-(full-name|mailing-address) to after we've switched to the
21994         ChangeLog buffer so we get the right value.
21995         (add-change-log-entry, add-log-current-defun, change-log-merge):
21996         Use derived-mode-p rather than checking major-mode directly.
21998         * pcvs.el (cvs-mode-add-change-log-entry-other-window): Use a directory
21999         name for buffer-file-name if it refers to a directory.
22001         * vc-arch.el (vc-arch-diff): Fix last change.
22003         * progmodes/compile.el (compilation-start): Remember the original
22004         directory in a buffer-local compilation-directory.
22005         (compile): Set the global value of compilation-directory.
22006         (recompile): Use compilation-directory even in the compilation buffer.
22008 2007-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
22010         * vc-hg.el (vc-hg-diff): Use vc-hg-command.
22012 2007-07-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
22014         * ps-print.el: Problem with foreground and background color when
22015         printing a buffer with and without faces.  Reported by Christian
22016         Schlauer <cs-muelleimer-rubbish.bin@arcor.de>.
22017         (ps-print-version): New version 6.7.5.
22018         (ps-default-fg): Change default value to nil, so black color is used
22019         when a face does not specify a foreground color.
22020         (ps-default-bg): Change default value to nil, so white color is used
22021         for background color.
22022         (ps-begin-job): Fix code.
22024 2007-07-20  Eli Zaretskii  <eliz@gnu.org>
22026         * makefile.w32-in (install-lisp-SH): Don't create subdirectories
22027         in $(INSTALL_DIR)/lisp/ if they already exist.
22029 2007-07-20  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
22031         * makefile.w32-in (install-lisp-CMD): Don't create subdirectories
22032         in $(INSTALL_DIR)/lisp/ if they already exist.
22034 2007-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22036         * progmodes/vera-mode.el (vera-re-search-forward)
22037         (vera-re-search-backward): Remove use of store-match-data.
22038         (vera-mode-map): Move initialization into declaration.
22040         * progmodes/flymake.el (flymake-buildfile-dirs): Remove.
22041         (flymake-find-buildfile): Use locate-dominating-file.
22043         * vc.el (vc-delistify): Use mapconcat.
22044         (vc-do-command): Minor simplification.
22045         (vc-expand-dirs): Use push.
22047         * vc-mcvs.el (vc-mcvs-create-repo):
22048         * vc-cvs.el (vc-cvs-create-repo): Remove.
22050         * vc-hooks.el (vc-find-root): Fix case where `file' is the current
22051         directory and the root as well.
22053 2007-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
22055         * vc-hooks.el (vc-default-workfile-unchanged-p): Pass a list
22056         instead of a file.
22058         * vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
22059         (vc-hg-registered): Replace if with when.
22060         (vc-hg-state): Deal with nonexistent files and handle removed files.
22061         (vc-hg-dir-state, vc-hg-dired-state-info): New functions.
22062         (vc-hg-checkout): Re-enable.
22063         (vc-hg-create-repo): Fix typos.
22064         (vc-hg-print-log): Fix for multiple files.
22065         (vc-hg-workfile-unchanged-p): New function.
22067         * vc.el: Fix typo.
22068         (vc-print-log): Fix call to print-log.
22069         (vc-default-comment-history): Likewise.
22070         (vc-directory-exclusion-list): Add .hg and .bzr.
22071         (vc-diff-internal): Pass a list instead of a file.
22073         * vc-mcvs.el (vc-mcvs-create-repo): Fix typos.
22075         * vc-bzr.el (vc-bzr-create-repo): New function.
22077 2007-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
22079         * vc-hooks.el (vc-find-root): Walk up the tree to find an existing
22080         `file' from which to start the search.
22082 2007-07-19  Eric S. Raymond  <esr@snark.thyrsus.com>
22084         * vc-cvs.el (vc-cvs-checkin, vc-cvs-diff): Finish transition from
22085         having a single file argument to having a list of files as the
22086         first argument.
22088 2007-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
22090         * files.el (locate-dominating-file): New function.
22092 2007-07-18  Michael Albinus  <michael.albinus@gmx.de>
22094         * progmodes/grep.el (grep-host-defaults-alist): New defvar.
22095         (grep-compute-defaults): Use it.
22097 2007-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
22099         * uniquify.el: Docstring fixes.
22101 2007-07-18  Eric S. Raymond  <esr@snark.thyrsus.com>
22103         * vc.el (revision-granularity, create-repo): Document new vc
22104         backend properties.
22105         (vc-rollback): Renamed from vc-cancel-version.  Update references.
22106         Pass a list instead of a file.
22107         (vc-revert): Renamed from vc-revert-buffer.  Update references.
22108         (vc-delistify, vc-expand-dirs): New functions.
22109         (vc-do-command): Rename FILE to FILE-OR-LIST and deal with a list
22110         of files instead of a single file.
22111         (vc-position-context, vc-resync-window, vc-diff-internal)
22112         (vc-print-log): Pass a list instead of a file.
22114         * vc-hooks.el (vc-stay-local-p, vc-backend)
22115         (vc-backend-subdirectory-name): Work on a file list, not a single
22116         file.
22117         (vc-workfile-version): Update docstring.
22118         (vc-menu-map): Use vc-rollback instead of vc-cancel-version and
22119         vc-revert instead of vc-revert-buffer.
22120         (vc-prefix-map): Likewise.  Bind vc-update.
22122         * vc-svn.el (vc-svn-revision-granularity, vc-svn-create-repo)
22123         (vc-svn-wash-log): New functions.
22124         (vc-svn-register, vc-svn-checkin, vc-svn-print-log)
22125         (vc-svn-command): Deal with a list of files, not a single file.
22127         * vc-rcs.el (vc-rcs-revision-granularity, vc-rcs-create-repo)
22128         (vc-rcs-wash-log): New functions.
22129         (vc-rcs-register, vc-rcs-checkin, vc-rcs-diff, vc-rcs-print-log):
22130         Deal with a list of files, not a single file.
22131         (vc-rcs-rollback): Likewise.  Rename from vc-rcs-cancel-version.
22133         * vc-sccs.el (vc-sccs-revision-granularity, vc-sccs-wash-log): New
22134         functions.
22135         (vc-sccs-register, vc-sccs-checkin, vc-sccs-diff): Deal with a
22136         list of files, not a single file.
22138         * vc-mcvs.el (vc-mcvs-revision-granularity, vc-mcvs-create-repo):
22139         New functions.
22140         (vc-mcvs-register, vc-mcvs-checkin, vc-mcvs-print-log)
22141         (vc-mcvs-diff): Deal with a list of files, not a single file.
22143         * vc-hg.el (vc-hg-revision-granularity, vc-hg-create-repo): New
22144         functions.
22145         (vc-hg-print-log): Deal with a list of files, not a single file.
22146         (vc-hg-diff-tree): New function, replace defalias with the same
22147         name.
22148         (vc-hg-register, vc-hg-checkin, vc-hg-command): Rename FILE to
22149         FILES to denote that it is a file list, not a single file.
22151         * vc-cvs.el (vc-cvs-create-repo, vc-cvs-wash-log): New functions.
22152         (vc-cvs-register, vc-cvs-checkin): Deal with a list of files, not
22153         a single file.
22154         (vc-cvs-print-log, vc-cvs-command): Rename FILE to FILES to denote
22155         that it is a file list, not a single file.
22156         (vc-cvs-diff): Likewise.  Simplify.
22158         * vc-arch.el (vc-arch-register, vc-arch-checkin, vc-arch-diff):
22159         Deal with a list of files, not a single file.
22161         * vc-bzr.el (vc-bzr-register, vc-bzr-command, vc-bzr-checkin)
22162         (vc-bzr-print-log): Update FILE parameter name to denote that it
22163         is a file list, not a single file.
22164         (vc-bzr-diff): Likewise.  Use the car of files.
22166 2007-07-18  Juanma Barranquero  <lekktu@gmail.com>
22168         * follow.el (follow-mode-hook, follow-mode-off-hook, follow-mode)
22169         (follow-delete-other-windows-and-split, follow-recenter)
22170         (follow-windows-aligned-p, follow-point-visible-all-windows-p)
22171         (follow-redisplay, follow-estimate-first-window-start)
22172         (follow-xemacs-scrollbar-support, follow-intercept-process-output):
22173         Fix typos in docstrings.
22175 2007-07-18  Martin Rudalics  <rudalics@gmx.at>
22177         * add-log.el (change-log-mode): Use fill-nobreak-predicate to
22178         avoid that filling introduces lines with a single asterisk.
22180         * kmacro.el (kmacro-end-macro): When ignoring empty macro
22181         avoid incorrect kmacro-ring-empty-p messages.
22182         Reported by Michael Schierl <schierlm@gmx.de>.
22184 2007-07-17  Dan Nicolaescu  <dann@ics.uci.edu>
22186         * vc.el: Add more info about the vc-registered function.
22188 2007-07-17  Michael Albinus  <michael.albinus@gmx.de>
22190         * files.el (file-remote-p): Introduce optional parameter
22191         IDENTIFICATION.
22193         * recentf.el (recentf-keep-default-predicate): Adapt call of
22194         `file-remote-p'.
22196         * progmodes/grep.el (grep-probe): Use `process-file'.
22197         (grep-compute-defaults): Handle variables host specific.
22199         * net/ange-ftp.el (ange-ftp-file-remote-p): Handle optional
22200         parameter IDENTIFICATION.
22202         * net/tramp.el (tramp-handle-file-remote-p): Handle optional
22203         parameter IDENTIFICATION.
22204         (tramp-handle-set-file-times): New defun.  Replaces `tramp-touch'.
22205         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
22206         Add entry for `set-file-times'.
22207         (tramp-do-copy-or-rename-file-via-buffer)
22208         (tramp-do-copy-or-rename-file-out-of-band): Use `set-file-times'.
22209         (tramp-handle-unhandled-file-name-directory): Rewrite.
22210         (tramp-convert-file-attributes): Add error handling when inode is
22211         extraordinary big.
22212         (tramp-get-inode): Change parameter from FILE to VEC.
22213         (tramp-handle-start-file-process): Use (current-buffer) if BUFFER
22214         is nil.  This is according to the specification.  Goto (point-max)
22215         when ready.
22216         (tramp-handle-shell-command): Rewrite completely, using
22217         `process-file' and `start-file-process'.
22218         (tramp-methods, tramp-find-shell)
22219         (tramp-open-connection-setup-interactive-shell)
22220         (tramp-maybe-open-connection): Guard against $PROMPT_COMMAND shell
22221         var.  Reported by Steve Youngs <steve@sxemacs.org>.
22223         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add
22224         entry for `set-file-times'.  Rename `start-process' into
22225         `start-file-process'.  Remove `call-process' entry.
22226         (tramp-fish-handle-set-file-times): New defun.
22227         (tramp-fish-handle-executable-find): Use `process-file'.
22228         (tramp-fish-handle-process-file): New defun.  Replaces
22229         `tramp-fish-handle-call-process'.
22230         (tramp-fish-do-copy-or-rename-file-directly): Use
22231         `set-file-times'.
22232         (tramp-fish-get-file-entries): Change `tramp-get-inode' parameter.
22234         * net/tramp-smb.el (tramp-smb-handle-file-attributes): Change
22235         `tramp-get-inode' parameter.
22237 2007-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22239         * vc-bzr.el (vc-bzr-version, vc-bzr-at-least-version)
22240         (vc-bzr-post-command-function): Remove.  Version 0.8 is already old
22241         nowadays, and by the time Emacs-23 comes out, nobody will even remember
22242         it has ever existed.
22244 2007-07-17  Dan Nicolaescu  <dann@ics.uci.edu>
22246         * vc.el: Undo previous change.
22248 2007-07-16  Eli Zaretskii  <eliz@gnu.org>
22250         * makefile.w32-in (clean): Don't delete *~.
22252 2007-07-16  Stefan Monnier  <monnier@iro.umontreal.ca>
22254         * textmodes/tex-mode.el (tex-verbatim-environments):
22255         Add safe-local-variable property.
22256         (tex-font-lock-syntactic-keywords): Lookup tex-verbatim-environments
22257         when starting font-lock rather than when loading tex-mode.el.
22259         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Skip over the
22260         whole $( rather than just the $.  Rename from sh-quoted-subshell.
22261         (sh-font-lock-syntactic-keywords): Adjust call accordingly.
22263 2007-07-16  Thien-Thi Nguyen  <ttn@gnuvola.org>
22265         * bookmark.el (bookmark-maybe-sort-alist): Don't modify
22266         bookmark-alist.  Instead, if not sorting, simply return it.
22267         (bookmark-bmenu-list): Call bookmark-maybe-sort-alist
22268         for its return value, not for its side effect.
22270         * emacs-lisp/lisp-mode.el (calculate-lisp-indent): In the
22271         case of alignment under a constant symbol, find and consider
22272         the sexp actually at indentation to be the "last sexp".
22274 2007-07-16  Drew Adams  <drew.adams@oracle.com>
22276         * mouse.el (mouse-yank-secondary): Better error message if no
22277         secondary selection.
22279 2007-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
22281         * vc-hooks.el (vc-handled-backends): Move BZR later in the list.
22283         * term/xterm.el (xterm-turn-on-modify-other-keys)
22284         (xterm-turn-off-modify-other-keys): New functions.
22285         (terminal-init-xterm): Enable the modifyOtherKeys feature if the
22286         terminal supports it.
22288 2007-07-16  Thien-Thi Nguyen  <ttn@gnuvola.org>
22290         * bookmark.el (bookmark-show-all-annotations):
22291         Make sure each inserted annotation ends with newline.
22293 2007-07-15  Richard Stallman  <rms@gnu.org>
22295         * kmacro.el (kmacro-bind-to-key): Avoid comparisons on function keys.
22297         * tutorial.el (tutorial--find-changed-keys):
22298         Handle C-x specially like ESC.
22300 2007-07-15  Aaron Hawley  <aaronh@garden.org>
22302         * tar-mode.el (tar-get-descriptor): No error for zero-length file.
22304 2007-07-15  Juri Linkov  <juri@jurta.org>
22306         * delsel.el (delete-selection-pre-hook):
22307         * emulation/cua-base.el (cua-paste): Before a yank command,
22308         check also whether last-command is one of mouse-save-then-kill,
22309         mouse-secondary-save-then-kill, mouse-set-region, mouse-drag-region.
22311 2007-07-15  Michael Albinus  <michael.albinus@gmx.de>
22313         * recentf.el (recentf-keep-default-predicate): New defun.
22314         (recentf-keep): Use it as initial value.
22316 2007-07-15  Karl Fogel  <kfogel@red-bean.com>
22318         * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com,
22319         thus restoring bookmark bindings to three slots under C-x r.  See
22320         http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
22322 2007-07-15  Jeff Miller  <jmiller@cablespeed.com>  (tiny change)
22324         * calendar/calendar.el (calendar-goto-bahai-date): Autoload it.
22326 2007-07-15  Jason Rumney  <jasonr@gnu.org>
22328         * w32-fns.el (set-default-process-coding-system): Use dos line ends
22329         for input to cmdproxy on all versions of Windows.
22330         Use dos line ends for input to plink.
22332         * comint.el (comint-simple-send): Concat newline before sending.
22333         (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
22335 2007-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
22337         * emacs-lisp/autoload.el (generated-autoload-file): Autoload the
22338         safe-local-variable setting.
22340 2007-07-14  David Kastrup  <dak@gnu.org>
22342         * emacs-lisp/advice.el (defadvice): Doc fix.
22344 2007-07-14  Juanma Barranquero  <lekktu@gmail.com>
22346         * subr.el (when, unless): Doc fix.
22348 2007-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
22350         * replace.el (match): Use yellow1 instead of yellow.
22352         * progmodes/gdb-ui.el (breakpoint-enabled): Use red1 instead of
22353         red.
22355         * pcvs-info.el (cvs-unknown): Likewise.
22357 2007-07-13  Eli Zaretskii  <eliz@gnu.org>
22359         * makefile.w32-in (install-lisp-SH, install-lisp-CMD): New targets.
22360         (install): Use them to copy all *.el files before *.elc.
22362 2007-07-13  Drew Adams  <drew.adams@oracle.com>
22364         * bookmark.el (bookmark-jump-other-window): New function.
22365         (bookmark-map): Bind it to "o".
22367         http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html
22368         and its thread contains discussion about this change.
22369         The original patch was slightly tweaked by Karl Fogel
22370         <kfogel@red-bean.com> before committing.
22372 2007-07-13  Karl Fogel  <kfogel@red-bean.com>
22374         * bookmark.el: Shorten some comments to fit within 80 lines.
22376 2007-07-13  Karl Fogel  <kfogel@red-bean.com>
22378         * bookmark.el: Don't define bookmark keys under the "C-xr" map;
22379         instead, make "C-xp" a prefix for bookmark-map.  Patch by Drew
22380         Adams <drew.adams@oracle.com>, mildly tweaked by me.  See
22381         http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
22383 2007-07-13  Carsten Dominik  <dominik@science.uva.nl>
22385         * textmodes/org.el: Bug fixes.
22386         (org-end-of-line): Move to end of line if in headline without tags.
22388 2007-07-13  Stefan Monnier  <monnier@iro.umontreal.ca>
22390         * vc-hooks.el: Remove spurious * in docstrings.
22391         (vc-handled-backends): Add BZR.
22393         * vc-hooks.el (vc-find-file-hook): Use with-demoted-errors.
22395 2007-07-12  Davis Herring  <herring@lanl.gov>
22397         * desktop.el (desktop-buffer-info, desktop-save):
22398         Use `desktop-dirname' instead of `dirname'.
22400 2007-07-12  Paul Pogonyshev  <pogonyshev@gmx.net>
22402         * progmodes/which-func.el (which-func-modes): Add `python-mode'.
22404         * progmodes/python.el (python-which-func-length-limit): New var.
22405         (python-which-func): New function.
22406         (python-current-defun): Add optional `length-limit' and try to fit
22407         computed function name to that length.
22408         (python-mode): Hook `python-which-func' up.
22410 2007-07-12  Sean O'Rourke  <sorourke@cs.ucsd.edu>  (tiny change)
22412         * pcomplete.el (pcomplete-entries): Obey pcomplete-ignore-case.
22414         * comint.el (comint-dynamic-complete-as-filename):
22415         Use read-file-name-completion-ignore-case.
22417 2007-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22419         * comint.el (comint-dynamic-list-filename-completions):
22420         Use read-file-name-completion-ignore-case.
22422         * vc-cvs.el: Require CL.
22423         (vc-cvs-revision-table, vc-cvs-revision-completion-table):
22424         New functions to provide completion of revision names.
22426         * vc-cvs.el (vc-functions): Clear up the cache when reloading the file.
22427         (vc-cvs-annotate-first-line-re): New const.
22428         (vc-cvs-annotate-process-filter): New fun.
22429         (vc-cvs-annotate-command): Use them and run the command asynchronously.
22431 2007-07-12  Paul Pogonyshev  <pogonyshev@gmx.net>
22433         * emacs-lisp/eldoc.el (eldoc-last-data): Revise documentation.
22434         (eldoc-print-current-symbol-info): Adjust for changed helper
22435         function signatures.
22436         (eldoc-get-fnsym-args-string): Add `args' argument.  Use new
22437         `eldoc-highlight-function-argument'.
22438         (eldoc-highlight-function-argument): New function.
22439         (eldoc-get-var-docstring): Format documentation with
22440         `font-lock-variable-name-face'.
22441         (eldoc-docstring-format-sym-doc): Add `face' argument and apply it
22442         where suited.
22443         (eldoc-fnsym-in-current-sexp): Return a list with argument index.
22444         (eldoc-beginning-of-sexp): Return number of skipped sexps.
22446 2007-07-11  Michael Albinus  <michael.albinus@gmx.de>
22448         * progmodes/compile.el (compilation-start): `start-process' must
22449         still be redefined when calling `start-process-shell-command'.
22451         * progmodes/gud.el (gud-file-name): When `default-directory' is a
22452         remote file name, prepend its remote part to the filename.
22453         (gud-common-init): When `default-directory' is a remote file name,
22454         make the filename relative to it.
22455         Based on a patch by Nick Roberts <nickrob@snap.net.nz>.
22457 2007-07-11  Dan Nicolaescu  <dann@ics.uci.edu>
22459         * vc-hooks.el (vc-default-mode-line-string): Add a mouse face,
22460         mouse binding and a tooltip.
22462 2007-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22464         * menu-bar.el (vc-menu-map): New defalias.
22466 2007-07-10  Richard Stallman  <rms@gnu.org>
22468         * emacs-lisp/lisp-mode.el (eval-defun):
22469         Explain special handling of `defface'.
22471 2007-07-10  Jim Meyering  <jim@meyering.net>  (tiny change)
22473         * emacs-lisp/copyright.el (copyright-current-gpl-version): Set to 3.
22475         * autoinsert.el (auto-insert-alist): s/2/3/ in the generated comment.
22477 2007-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22479         * emacs-lisp/cl.el: Load cl-loaddefs.el quietly.
22481         * vc-arch.el (vc-arch-complete): Remove.
22482         (vc-arch-revision-completion-table): Use complete-with-action.
22484         * subr.el (condition-case-no-debug, with-demoted-errors): New macros.
22485         (complete-with-action): New function.
22486         (dynamic-completion-table): Use it.
22488 2007-07-10  Michael Albinus  <michael.albinus@gmx.de>
22490         * comint.el (make-comint, make-comint-in-buffer)
22491         (comint-exec-1): Replace `start-process' by `start-file-process'.
22493         * progmodes/compile.el (compilation-start): Revert redefining
22494         `start-process'.
22496 2007-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22498         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Be careful
22499         with EOLs when generating MD5 checksums.
22501         * follow.el: Don't change the global map from the follow-mode-map
22502         defvar, but from the toplevel.  Use easy-menu to unify the Emacs and
22503         XEmacs code.
22504         (turn-on-follow-mode, turn-off-follow-mode): Remove interactive spec
22505         since `follow-mode' should be used instead for that.
22507         * emacs-lisp/easymenu.el (easy-menu-binding): New function.
22508         (easy-menu-do-define): Use it.
22509         (easy-menu-do-add-item): Inline into easy-menu-add-item and then remove.
22511         * progmodes/compile.el (compilation-auto-jump-to-first-error)
22512         (compilation-auto-jump-to-next): New vars.
22513         (compilation-auto-jump): New function.
22514         (compilation-error-properties): Use them to jump to first error.
22515         (compilation-start): Set the var if requested.
22517         * emacs-lisp/autoload.el (update-directory-autoloads): Remove
22518         duplicates without also removing entries from other directories.
22520 2007-07-10  Carsten Dominik  <dominik@science.uva.nl>
22522         * textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
22523         Remember span as default.
22524         (org-columns-edit-value): Rename from `org-column-edit'.
22525         (org-columns-display-here-title): Rename from
22526         `org-overlay-columns-title'.
22527         (org-columns-remove-overlays): Rename from org-remove-column-overlays.
22528         (org-columns-get-autowidth-alist): Rename from
22529         `org-get-columns-autowidth-alist'.
22530         (org-columns-display-here): Rename from `org-overlay-columns'.
22531         (org-columns-new-overlay): Rename from `org-new-column-overlay'.
22532         (org-columns-quit): Rename from `org-column-quit'.
22533         (org-columns-show-value): Rename from `org-column-show-value'.
22534         (org-columns-content, org-columns-widen)
22535         (org-columns-next-allowed-value)
22536         (org-columns-edit-allowed, org-columns-store-format)
22537         (org-columns-uncompile-format, org-columns-redo)
22538         (org-columns-edit-attributes, org-delete-property)
22539         (org-set-property, org-columns-update)
22540         (org-columns-compute, org-columns-eval)
22541         (org-columns-not-in-agenda, org-columns-compute-all)
22542         (org-property-next-allowed-value)
22543         (org-columns-compile-format)
22544         (org-fill-paragraph-experimental)
22545         (org-string-to-number, org-property-action)
22546         (org-columns-move-left, org-columns-new)
22547         (org-column-number-to-string)
22548         (org-property-previous-allowed-value)
22549         (org-at-property-p, org-columns-delete)
22550         (org-columns-previous-allowed-value)
22551         (org-columns-move-right, org-columns-narrow)
22552         (org-property-get-allowed-values)
22553         (org-verify-version, org-column-string-to-number)
22554         (org-delete-property-globally): New functions.
22555         (org-columns-current-fmt): Rename from `org-current-columns-fmt'.
22556         (org-columns-overlays): Rename from `org-column-overlays'.
22557         (org-columns-map): Rename from `org-column-map'.
22558         (org-columns-current-maxwidths): Rename from
22559         `org-current-columns-maxwidths'.
22560         (org-columns-begin-marker, org-columns-current-fmt-compiled)
22561         (org-previous-header-line-format)
22562         (org-columns-inhibit-recalculation)
22563         (org-columns-top-level-marker): New variables.
22564         (org-columns-default-format): Rename from `org-default-columns-format'.
22565         (org-property-re): New constant.
22567 2007-07-10  Guanpeng Xu  <herberteuler@hotmail.com>
22569         * subr.el (looking-at-p, string-match-p): New functions.
22571 2007-07-09  Reiner Steib  <Reiner.Steib@gmx.de>
22573         * textmodes/tex-mode.el (tex-fontify-script)
22574         (tex-font-script-display): New variables to make display of
22575         superscripts and subscripts customizable.
22576         (tex-font-lock-suscript, tex-font-lock-match-suscript): Use them.
22578 2007-07-09  Richard Stallman  <rms@gnu.org>
22580         * isearch.el (isearch-edit-string): Call to isearch-push-state
22581         after the search.
22583 2007-07-09  Jan Djärv  <jan.h.d@swipnet.se>
22585         * window.el (fit-window-to-buffer): Remove setting of window-min-height
22586         to 1 as enlarge-window uses the value to resize/shrink windows other
22587         than WINDOW if needed.
22589 2007-07-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22591         * cus-start.el (file-coding-system-alist): Fix custom type.
22593 2007-07-08  Chong Yidong  <cyd@stupidchicken.com>
22595         * longlines.el (longlines-wrap-region): Avoid marking buffer as
22596         modified.
22597         (longlines-auto-wrap, longlines-window-change-function):
22598         Remove unnecessary calls to set-buffer-modified-p.
22600 2007-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22602         * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
22603         (vc-cvs-checkout): Remove last arg now unused; simplify.
22605 2007-07-08  Michael Albinus  <michael.albinus@gmx.de>
22607         * files.el (file-remote-p): Introduce optional parameter CONNECTED.
22609         * net/tramp.el:
22610         * net/tramp-ftp.el:
22611         * net/tramp-smb.el:
22612         * net/tramp-uu.el:
22613         * net/trampver.el: Migrate to Tramp 2.1.
22615         * net/tramp-cache.el:
22616         * net/tramp-fish.el:
22617         * net/tramp-gw.el: New Tramp packages.
22619         * net/tramp-util.el:
22620         * net/tramp-vc.el: Removed.
22622         * net/ange-ftp.el: Add ange-ftp property to 'start-file-process.
22623         (ange-ftp-file-remote-p): Handle optional parameter CONNECTED.
22625         * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments.
22627         * progmodes/compile.el (compilation-start): Redefine
22628         `start-process' temporarily when `default-directory' is remote.
22629         Remove case of synchronous compilation, this won't happen ever.
22630         (compilation-setup): Make local variable `comint-file-name-prefix'
22631         for remote compilation.
22633 2007-07-08  Martin Rudalics  <rudalics@gmx.at>
22635         * novice.el (disabled-command-function): Fit window to buffer to
22636         make last line visible.
22637         Reported by Stephen Berman <Stephen.Berman at gmx.net>.
22639         * mouse.el (mouse-drag-track): Reset transient-mark-mode to nil
22640         when handling the terminating event.
22642 2007-07-07  Jay Belanger  <jay.p.belanger@gmail.com>
22644         * calc/calc.el (math-read-number-simple): Remove leading 0s.
22645         (math-bignum-digit-length): Change to optimal value.
22647         * calc/calc-bin.el (math-bignum-logb-digit-size)
22648         (math-bignum-digit-power-of-two): Evaluate when compiled.
22650         * calc/calc-comb.el (math-small-factorial-table)
22651         (math-init-random-base, math-prime-test): Remove unnecessary calls
22652         to `math-read-number-simple'.
22654         * calc/calc-ext.el (math-approx-pi, math-approx-sqrt-e)
22655         (math-approx-gamma-const): Add docstrings.
22657         * calc/calc-forms.el (math-julian-date-beginning)
22658         (math-julian-date-beginning-int): New constants.
22659         (math-format-date-part, math-parse-standard-date, calcFunc-julian):
22660         Use the new constants.
22662         * calc/calc-funcs.el (math-gammap1-raw): Add docstring.
22664         * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
22665         Add docstrings.
22667 2007-07-07  Tom Tromey  <tromey@redhat.com>
22669         * vc.el (vc-annotate): Jump to line and output message only after the
22670         process is really all done.
22672 2007-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
22674         * vc.el (vc-exec-after): Don't move point from the sentinel.
22675         Forcefully read all the remaining text in the pipe upon process exit.
22676         (vc-annotate-display-autoscale, vc-annotate-lines):
22677         Don't stop at the first unrecognized line.
22678         (vc-annotate-display-select): Run autoscale after the process is done
22679         since it depends on the whole result.
22681 2007-07-07  Eli Zaretskii  <eliz@gnu.org>
22683         * term/w32-win.el (menu-bar-open): New function.
22684         Bind <f10> to it.
22686 2007-07-07  Michael Albinus  <michael.albinus@gmx.de>
22688         * simple.el (start-file-process): New defun.
22690 2007-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
22692         * files.el (find-file-confirm-nonexistent-file): Rename from
22693         find-file-confirm-inexistent-file.  Update users.
22695         * emacs-lisp/autoload.el (autoload-find-destination): Understand a new
22696         format of autoload block where the file's time-stamp is replaced by its
22697         MD5 checksum.
22698         (autoload-generate-file-autoloads): Use MD5 checksum instead of
22699         time-stamp for secondary autoloads files.
22700         (update-directory-autoloads): Remove duplicate entries.
22701         Use time-less-p for time-stamps, as done in autoload-find-destination.
22703 2007-07-07  Jay Belanger  <jay.p.belanger@gmail.com>
22705         * calc/calc.el (math-read-number): Replace number by variable.
22706         (math-read-number-simple): Properly parse small integers.
22708 2007-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
22710         * vc.el: Fix doc for the checkout function.
22712 2007-07-06  Dan Nicolaescu  <dann@ics.uci.edu>
22714         * vc-hg.el (vc-hg-root): New function.
22715         (vc-hg-registered): Use it.
22716         (vc-hg-diff-tree): New defalias.
22717         (vc-hg-responsible-p): Likewise.
22718         (vc-hg-checkout): Comment out, not needed.
22719         (vc-hg-delete-file, vc-hg-rename-file, vc-hg-could-register)
22720         (vc-hg-find-version, vc-hg-next-version): New functions.
22722 2007-07-06  Andreas Schwab  <schwab@suse.de>
22724         * emacs-lisp/lisp-mode.el (eval-last-sexp): Avoid introducing any
22725         dynamic bindings around the evaluation of the expression.
22726         Reported by Jay Belanger <jay.p.belanger@gmail.com>.
22728 2007-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
22730         * autorevert.el (auto-revert-tail-handler): Use inhibit-read-only.
22731         Run before-revert-hook.  Suggested by Denis Bueno <denbuen@sandia.gov>.
22732         Use run-hooks rather than run-mode-hooks.
22734 2007-07-05  Jay Belanger  <jay.p.belanger@gmail.com>
22736         * calc/calc-comb.el (math-random-digit): Rename to
22737         `math-random-three-digit-number'.
22738         (math-random-digits): Don't depend on representation of integer.
22740         * calc/calc-bin.el (math-bignum-logb-digit-size)
22741         (math-bignum-digit-power-of-two): New constants.
22742         (math-and-bignum, math-or-bignum, math-xor-bignum, math-diff-bignum)
22743         (math-not-bignum, math-clip-bignum): Use the constants
22744         `math-bignum-digit-power-of-two' and `math-bignum-logb-digit-size'
22745         instead of their values.
22746         (math-clip): Use math-small-integer-size instead of its value.
22748         * calc/calc.el (math-add-bignum): Replace number by constant.
22750 2007-07-05  Chong Yidong  <cyd@stupidchicken.com>
22752         * wid-edit.el (widget-documentation-string-value-create):
22753         Insert indentation spaces.
22755 2007-07-05  Thien-Thi Nguyen  <ttn@gnuvola.org>
22757         * emacs-lisp/byte-opt.el: Revert last change.
22759 2007-07-05  Dan Nicolaescu  <dann@ics.uci.edu>
22761         * vc-hooks.el (vc-handled-backends): Add HG.
22763         * vc-hg.el (vc-handled-backends): Remove, done in vc-hooks.el now.
22765 2007-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
22767         * complete.el (PC-do-complete-and-exit): Add support for the new
22768         `confirm-only' confirmation mode.
22770 2007-07-05  Chong Yidong  <cyd@stupidchicken.com>
22772         * cus-edit.el (custom-commands): New variable.
22773         (custom-tool-bar-map): New variable.  Initialize using
22774         `custom-commands'.
22775         (custom-mode): Use `custom-tool-bar-map'.
22776         (custom-buffer-create-internal): Insert action buttons only if
22777         tool bar is not used.  Use `custom-commands'.
22778         (Custom-help, custom-command-apply): New function.
22779         (custom-command-apply, Custom-set, Custom-save)
22780         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
22781         Use `custom-command-apply' instead of duplicating code.
22782         (customize-group-other-window): Call `customize-group' instead of
22783         duplicating code.
22784         (customize-face-other-window): Call `customize-face' instead of
22785         duplicating code.
22786         (customize-group, customize-face): Add optional args for opening
22787         in another window.
22788         (custom-variable-tag): Don't inherit `variable-pitch' face.
22789         (custom-group-tag): Inherit `variable-pitch' face.
22790         (custom-variable-value-create): Set documentation indentation.
22791         (custom-group-value-create): Make group name a link, instead of
22792         using an extra "go to group" button.
22793         (custom-prompt-variable, custom-group-set, custom-group-save)
22794         (custom-group-reset-current, custom-group-reset-saved)
22795         (custom-group-reset-standard): Minor cleanup.
22797 2007-07-05  Thien-Thi Nguyen  <ttn@gnuvola.org>
22799         * Makefile.in (bootstrap-prepare): When copying from
22800         ldefs-boot.el, make sure loaddefs.el is writeable.
22802         (bootstrap-prepare): Make $(lisp)/ps-print.el
22803         and $(lisp)/emacs-lisp/cl-loaddefs.el writable, as well.
22805 2007-07-05  Dan Nicolaescu  <dann@ics.uci.edu>
22807         * vc-hg.el (vc-hg-internal-status): Inline in `vc-hg-state', the
22808         only caller, and delete.
22809         (vc-hg-state): Deal with exceptions and only parse the output on
22810         successful return.
22811         (vc-hg-internal-log): Inline in `vc-hg-workfile-version', the only
22812         caller, and delete.
22813         (vc-hg-workfile-version): Deal with exceptions and only parse the
22814         output on successful return.
22815         (vc-hg-revert): New function.
22817 2007-07-04  Jay Belanger  <jay.p.belanger@gmail.com>
22819         * calculator.el (calculator-expt): Use more cases to determine
22820         the value.
22822 2007-07-03  Dan Nicolaescu  <dann@ics.uci.edu>
22824         * progmodes/gud.el (auto-mode-alist): Match more valid gdb init
22825         file names.
22827 2007-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
22829         * calculator.el (calculator-expt, calculator-integer-p):
22830         New functions.
22831         (calculator-fact): Check to see if the factorial will be too
22832         large before computing it.
22833         (calculator-initial-operators): Use `calculator-expt' to
22834         compute "^".
22835         (calculator-mode): Mention that results which are too large
22836         will return inf.
22837         * calc/calc-comb.el (math-small-factorial-table): Replace list
22838         by vector.
22840 2007-07-03  David Kastrup  <dak@gnu.org>
22842         * shell.el: On request of the authors, remove their addresses for
22843         the sake of bug reports, and add the developer list address as
22844         maintainer information.
22846 2007-07-03  Richard Stallman  <rms@gnu.org>
22848         * files.el (make-directory): Doc fix.
22849         (find-file-confirm-inexistent-file): Make it a defcustom.
22850         Make nil the default.
22852 2007-07-02  Richard Stallman  <rms@gnu.org>
22854         * startup.el (command-line): Set buffer-offer-save in *scratch*
22855         and enable auto-save in it.
22857 2007-07-02  Carsten Dominik  <dominik@science.uva.nl>
22859         * textmodes/org.el (orgstruct-mode-map): New variable.
22860         (orgstruct-mode): New minor mode.
22861         (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
22862         (orgstruct-make-binding, org-context-p, org-get-local-variables)
22863         (org-run-like-in-org-mode): New functions.
22864         (org-cycle-list-bullet): New command.
22865         (org-special-properties, org-property-start-re)
22866         (org-property-end-re): New constants.
22867         (org-with-point-at): New macro.
22868         (org-get-property-block, org-entry-properties, org-entry-get)
22869         (org-entry-delete, org-entry-get-with-inheritance)
22870         (org-entry-put, org-buffer-property-keys): New functions.
22871         (org-insert-property-drawer): New command.
22872         (org-entry-property-inherited-from): New variable.
22873         (org-column): New face.
22874         (org-column-overlays, org-current-columns-fmt)
22875         (org-current-columns-maxwidths, org-column-map): New variables.
22876         (org-column-menu): New menu.
22877         (org-new-column-overlay, org-overlay-columns)
22878         (org-overlay-columns-title, org-remove-column-overlays)
22879         (org-column-show-value, org-column-quit, org-column-edit):
22880         New functions.
22881         (org-columns, org-agenda-columns): New commands.
22882         (org-get-columns-autowidth-alist): New functions.
22883         (org-properties): New customize group.
22884         (org-default-columns-format): New option.
22885         (org-priority): Realign tags after changing priority.
22886         (org-preserve-lc): New macro.
22887         (org-update-checkbox-count): Catch case when there is no headline.
22888         (org-agenda-quit): Remove any column overlays.
22889         (org-beginning-of-item-list): Fixed bug when non-item line is
22890         indented too deep.
22891         (org-cached-props): New variable.
22892         (org-cached-entry-get): New function.
22893         (org-make-tags-matcher): Handle property matches.
22894         (org-table-recalculate): Swap evaluation order: Field formula
22895         first, then column formulas, but don't allow them to overwrite the
22896         field formulas.
22897         (org-table-eval-formula): New argument untouchable.
22898         (org-table-put-field-property): New function.
22900 2007-07-02  Martin Rudalics  <rudalics@gmx.at>
22902         * help-mode.el (help-make-xrefs): Skip spaces too when
22903         skipping tabs.
22905         * ffap.el (dired-at-point-prompter): Improve prompt in
22906         list-directory case.
22908 2007-07-01  Richard Stallman  <rms@gnu.org>
22910         * files.el (find-file-visit-truename): Fix safe-local-variable value.
22912 2007-07-01  Richard Stallman  <rms@gnu.org>
22914         * cus-start.el (max-mini-window-height): Added.
22916 2007-07-01  Sean O'Rourke  <sorourke@cs.ucsd.edu>  (tiny change)
22918         * complete.el (partial-completion-mode): Remove advice of
22919         read-file-name-internal.
22920         (PC-do-completion): Rebind minibuffer-completion-table.
22921         (PC-read-file-name-internal): New function doing what
22922         read-file-name-internal advice did.
22924 2007-07-01  Paul Pogonyshev  <pogonyshev@gmx.net>
22926         * emacs-lisp/byte-opt.el: Set `binding-is-magic'
22927         property on a few symbols.
22928         (byte-compile-side-effect-free-dynamically-safe-ops): New defconst.
22929         (byte-optimize-lapcode): Remove bindings that are not referenced
22930         and certainly will not effect through dynamic scoping.
22932 2007-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22934         * files.el (find-file-confirm-inexistent-file): New var.
22935         (find-file, find-file-other-window, find-file-other-frame)
22936         (find-file-read-only, find-file-read-only-other-window)
22937         (find-file-read-only-other-frame): Use it.
22939 2007-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22941         * emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
22943 2007-06-29  Juanma Barranquero  <lekktu@gmail.com>
22945         * generic-x.el (generic-define-mswindows-modes)
22946         (generic-define-unix-modes, apache-log-generic-mode)
22947         (bat-generic-mode-keymap, java-manifest-generic-mode)
22948         (show-tabs-generic-mode): Fix typos in docstrings.
22950 2007-06-29  Ryan Yeske  <rcyeske@gmail.com>
22952         * net/rcirc.el (rcirc-server-alist): Rename from rcirc-connections.
22953         (rcirc-default-full-name): Rename from rcirc-default-user-full-name.
22954         (rcirc-clear-activity): Make sure RCIRC-ACTIVITY isn't modified.
22955         (rcirc-print): Never ignore messages from ourself.
22957 2007-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
22959         * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
22960         syntax as well.  Reported by Juri Linkov <juri@jurta.org>.
22962 2007-06-28  Jan Djärv  <jan.h.d@swipnet.se>
22964         * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
22965         replace-regexp-in-string.
22967 2007-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
22969         * emacs-lisp/cl.el: Set edebug and indentation before loading
22970         cl-loaddefs.el so that its use of dolist doesn't load cl-macs.
22972 2007-06-28  Andreas Schwab  <schwab@suse.de>
22974         * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Depend on
22975         $(lisp)/subdirs.el.
22977 2007-06-28  Juanma Barranquero  <lekktu@gmail.com>
22979         * speedbar.el (speedbar-handle-delete-frame): Don't try to delete
22980         the speedbar frame if nil; that deletes the current frame or
22981         causes an error if it is the only frame.
22982         Reported by Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>.
22984 2007-06-28  Kevin Ryde  <user42@zip.com.au>
22986         * textmodes/nroff-mode.el: Groff \# comments.
22987         (nroff-mode-syntax-table): \# comment intro,
22988         plain # as punct per global table.
22989         (nroff-font-lock-keywords): Add # as a single char escape.
22990         (nroff-mode): In comment-start-skip, match \#.
22992 2007-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
22994         * vc-bzr.el (vc-functions): Clear up the cache when reloading the file.
22995         (vc-bzr-workfile-version, vc-bzr-could-register): Don't hardcode
22996         point-min == 1.
22998 2007-06-28  Nick Roberts  <nickrob@snap.net.nz>
23000         * pcvs-util.el (cvs-strings->string, cvs-string->strings):
23001         Rename and move to...
23003         * subr.el (strings->string, string->strings): ...here.
23005         * pcvs.el (cvs-reread-cvsrc, cvs-header-msg, cvs-checkout)
23006         (cvs-mode-checkout, cvs-execute-single-file): Use new function names.
23008         * progmodes/gud.el (gud-common-init): Call string->strings instead
23009         of split-string.
23011 2007-06-27  Michael Albinus  <michael.albinus@gmx.de>
23013         * dired-aux.el: Remove `dired-call-process'.
23014         (dired-check-process): Call `process-file'.
23016         * wdired.el (wdired-do-perm-changes): Call `process-file'.
23018         * net/ange-ftp.el (ange-ftp-dired-call-process): Reimplement it as
23019         `ange-ftp-process-file'.
23021 2007-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
23023         * emacs-lisp/cl.el: Use cl-loaddefs.el rather than manual autoloads.
23025         * emacs-lisp/cl-extra.el:
23026         * emacs-lisp/cl-seq.el:
23027         * emacs-lisp/cl-macs.el: Set generated-autoload-file to cl-loaddefs.el.
23028         Add autoload cookies on all defs autoloaded manually in cl.el.
23030         * emacs-lisp/cl-loaddefs.el: New file.
23032         * textmodes/texinfmt.el (texinfo-raisesections-alist)
23033         (texinfo-lowersections-alist): Merge definition and declaration.
23034         (texinfo-start-of-header, texinfo-end-of-header): Remove.
23035         (texinfo-format-syntax-table): Merge init into declaration.
23036         (texinfo-format-parse-line-args, texinfo-format-parse-args)
23037         (texinfo-format-parse-defun-args, texinfo-format-node)
23038         (texinfo-push-stack, texinfo-multitable-widths)
23039         (texinfo-define-info-enclosure, texinfo-alias)
23040         (texinfo-format-defindex, batch-texinfo-format): Use push.
23041         (texinfo-footnote-number): Remove duplicate declaration.
23043         * ps-print.el: Update with auto-generated autoloads.
23045         * ps-mule.el: Set generated-autoload-file to "ps-print.el".
23047 2007-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23049         * emacs-lisp/autoload.el (autoload-generated-file): Interpret names
23050         relative to current dir for file-local settings.
23051         (autoload-generate-file-autoloads): Add `outfile' arg.
23052         (update-directory-autoloads): Use it to directly call
23053         autoload-generate-file-autoloads instead of going through
23054         update-file-autoloads so we avoid redundant searches and so we can know
23055         the set of buffers changed so we can save them all.
23057         * emacs-lisp/autoload.el (autoload-find-destination): Return nil
23058         rather than throwing `up-to-date'.
23059         (autoload-generate-file-autoloads): Adjust correspondingly.
23060         (update-file-autoloads): Be careful to let-bind
23061         autoload-modified-buffers and adjust to new calling conventions.
23062         (autoload-modified-buffers): Make it a dynamically scoped var.
23063         (update-directory-autoloads): Use file-relative-name instead of
23064         autoload-trim-file-name.
23065         (autoload-insert-section-header): Don't use autoload-trim-file-name
23066         since the file is already relative now.
23067         (autoload-trim-file-name): Remove.
23069         * vc-arch.el (vc-arch-add-tagline): Do a slightly cleaner job.
23070         (vc-arch-complete, vc-arch--version-completion-table)
23071         (vc-arch-revision-completion-table): New functions to provide
23072         completion of revision names.
23073         (vc-arch-trim-find-least-useful-rev, vc-arch-trim-make-sentinel)
23074         (vc-arch-trim-one-revlib, vc-arch-trim-revlib): New functions
23075         to let the user trim the revlib.
23077         * vc.el: Add new VC operation `revision-completion-table'.
23078         (vc-default-revision-completion-table): New function.
23079         (vc-version-diff, vc-version-other-window): Use it to provide
23080         completion of revision names if the backend provides it.
23082         * log-edit.el (log-edit-changelog-entries): Use with-current-buffer.
23084         * vc-svn.el (vc-svn-repository-hostname): Adjust to non-XML format
23085         of newer .svn/entries.
23087 2007-06-25  David Kastrup  <dak@gnu.org>
23089         * calc/calc-poly.el (math-padded-polynomial)
23090         (math-partial-fractions): Add some function comments.
23092 2007-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23094         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
23095         Make `outbuf' optional.
23096         (update-file-autoloads): Use it.
23098 2007-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23100         * emacs-lisp/autoload.el (autoload-modified-buffers): New var.
23101         (autoload-find-destination): Keep it uptodate.
23102         (autoload-save-buffers): New fun.
23103         (update-file-autoloads): Use it.  Re-add the "up to date" message.
23105         * emacs-lisp/autoload.el: Refactor for upcoming changes.
23106         (autoload-find-destination): New function extracted from
23107         update-file-autoloads.
23108         (update-file-autoloads): Use it.
23109         (autoload-generate-file-autoloads): New function extracted from
23110         generate-file-autoloads.  Use file-relative-name.  Delay computation of
23111         output-start to the first cookie.  Remove done-any, replaced by
23112         output-start.
23113         (generate-file-autoloads): Use it.
23115 2007-06-24  Jay Belanger  <jay.p.belanger@gmail.com>
23117         * calc/calc-comb.el (math-init-random-base, math-prime-test):
23118         Use math-read-number-simple to insert constants.
23119         (math-prime-test): Redo calculation of sum.
23121         * calc/calc-misc.el (math-div2-bignum): Use math-bignum-digit-size.
23123         * calc/calc-math.el (math-scale-bignum-digit-size): Rename from
23124         math-scale-bignum-3.
23125         (math-isqrt-bignum): Use math-scale-bignum-digit-size and
23126         math-bignum-digit-size.
23127         (math-isqrt-small): Add another possible initial guess.
23129 2007-06-23  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
23131         * textmodes/bibtex.el (bibtex-entry-format): New options
23132         `whitespace', `braces', and `string'.
23133         (bibtex-field-braces-alist, bibtex-field-strings-alist)
23134         (bibtex-field-braces-opt, bibtex-field-strings-opt)
23135         (bibtex-cite-matcher-alist): New variables.
23136         (bibtex-font-lock-keywords): Use bibtex-cite-matcher-alist.
23137         (bibtex-flash-head): Use blink-matching-delay.
23138         (bibtex-insert-kill, bibtex-mark-entry): Use push-mark.
23139         (bibtex-format-entry, bibtex-reformat): Handle new options of
23140         bibtex-entry-format.
23141         (bibtex-field-re-init, bibtex-font-lock-cite, bibtex-dist):
23142         New functions.
23143         (bibtex-complete-internal): Do not display messages while
23144         minibuffer is used.  Do not leave around a completions buffer
23145         that is out of date.
23146         (bibtex-copy-summary-as-kill): New optional arg.
23147         (bibtex-font-lock-url): New optional arg no-button.
23148         (bibtex-find-crossref): Use `bibtex-cite-matcher-alist'.
23149         (bibtex-url): Allow multiple URLs per entry.
23151 2007-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23153         * emacs-lisp/autoload.el (autoload-generated-file): New function.
23154         (update-file-autoloads, update-directory-autoloads): Use it.
23155         (autoload-file-load-name): New function.
23156         (generate-file-autoloads, update-file-autoloads): Use it.
23157         (autoload-find-file): Accept non-absolute argument.  Set default-dir.
23158         (generate-file-autoloads): If the autoloaded form is malformed,
23159         indicate the problem with a warning instead of aborting.
23161 2007-06-23  Thien-Thi Nguyen  <ttn@gnuvola.org>
23163         * simple.el (next-error-recenter): Accept `(4)' as well;
23164         also, specify `integer' instead of `number'.
23166 2007-06-23  Eli Zaretskii  <eliz@gnu.org>
23168         * ls-lisp.el (insert-directory): If an invalid regexp error is
23169         thrown, try using FILE as a literal file name, not a wildcard.
23171 2007-06-23  Juanma Barranquero  <lekktu@gmail.com>
23173         * ruler-mode.el (ruler-mode): Prevent clobbering the original
23174         `header-line-format' when reentering ruler mode.
23176 2007-06-23  Eli Zaretskii  <eliz@gnu.org>
23178         * ls-lisp.el (insert-directory): Don't treat FILE as a wildcard if
23179         FILE exists as a file.
23181 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
23183         * calc/calc.el (math-bignum-digit-length)
23184         (math-bignum-digit-size, math-small-integer-size):
23185         New constants.
23186         (math-normalize, math-bignum-big, math-make-float)
23187         (math-div10-bignum, math-scale-left, math-scale-left-bignum)
23188         (math-scale-right, math-scale-right-bignum, math-scale-rounding)
23189         (math-add, math-add-bignum, math-sub-bignum, math-sub, math-mul)
23190         (math-mul-bignum, math-mul-bignum-digit, math-idivmod)
23191         (math-quotient, math-div-bignum, math-div-bignum-digit)
23192         (math-div-bignum-part, math-format-bignum-decimal)
23193         (math-read-bignum): Use math-bignum-digit-length,
23194         math-bignum-digit-size and math-small-integer-size.
23196         * calc/calc-ext.el (math-fixnum-big): Use the variable
23197         math-bignum-digit-size.
23199 2007-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
23201         * log-view.el (log-view-mode-menu): New menu.
23203 2007-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23205         * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change
23206         differently.
23208         * vc-hg.el (vc-hg-registered): Add an autoloaded version.
23209         (vc-hg-log-view-mode): Use log-view-font-lock-keywords.
23211 2007-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
23213         * vc-hg.el (vc-hg-print-log): Insert the file name.
23214         (vc-hg-log-view-mode): Fontify the file name.
23216 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
23218         * calc/calc-forms.el (math-format-date-part, calc-parse-standard-date)
23219         (calcFunc-julian): Fix incorrect number used in calculations.
23221 2007-06-22  Thien-Thi Nguyen  <ttn@gnuvola.org>
23223         * simple.el (next-error-recenter): New defcustom.
23224         (next-error, next-error-internal): Recenter if specified,
23225         immediately prior to running `next-error-hook'.
23227         * progmodes/hideshow.el (hs-show-block): Use line-end-position.
23228         (hs-hide-block-at-point, hs-hide-comment-region): Likewise.
23230         * progmodes/hideshow.el (hs-hide-all): Use progress reporter.
23232 2007-06-22  Jay Belanger  <jay.p.belanger@gmail.com>
23234         * calc/calc-comb.el (math-small-factorial-table): New variable.
23235         (calcFunc-fact): Use `math-small-factorial-table'.
23237         * calc/calc-ext.el (math-defcache): Allow forms to evaluate
23238         initial values.
23239         (math-approx-pi, math-approx-sqrt-e, math-approx-gamma-const):
23240         New variables to use in caches.
23242         * calc/calc-forms.el (math-format-date-part, math-parse-standard-date)
23243         (calcFunc-julian): Use `math-read-number-simple' to insert bignums.
23245         * calc/calc-funcs.el (math-besJ0, math-besJ1, math-besY0, math-besY1)
23246         (math-bernoulli-b-cache): Use math-read-number-simple to insert
23247         bignums.
23249         * calc/calc-math.el (math-approx-ln-10, math-approx-ln-2):
23250         New variables to use in caches.
23252 2007-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
23254         * vc-bzr.el (vc-bzr-log-view-mode): Add + to the email address regexp.
23256         * vc-hg.el (vc-hg-log-view-mode): New mode.
23258 2007-06-21  Jay Belanger  <jay.p.belanger@gmail.com>
23260         * calc/calc.el (math-read-number-simple): New function.
23262 2007-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
23264         * progmodes/vera-mode.el (vera-mode): Fix `commend-end-skip' setting.
23265         (vera-font-lock-match-item): Fix doc string.
23266         (vera-in-comment-p): Remove unused function.
23267         (vera-skip-forward-literal, vera-skip-backward-literal): Improve code,
23268         use `syntax-ppss'.
23269         (vera-forward-syntactic-ws): Fix argument order.
23270         (vera-prepare-search): Use `with-syntax-table'.
23271         (vera-indent-line): Fix doc string.
23272         (vera-electric-tab): Fix doc string.
23273         (vera-expand-abbrev): Define alias instead of using `fset'.
23274         (vera-comment-uncomment-region): Use `comment-start-skip'.
23276 2007-06-21  Carsten Dominik  <dominik@science.uva.nl>
23278         * textmodes/org.el (org-export-with-footnotes): New option.
23279         (org-export-as-html): Fix replacement bug for XEmacs.
23280         (org-agenda-default-appointment-duration): New option.
23282 2007-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
23284         * vc-hg.el: Add to do items.
23285         (vc-hg-diff): Add support for comparing different revisions.
23286         (vc-hg-diff, vc-hg-annotate-command, vc-hg-annotate-time)
23287         (vc-hg-annotate-extract-revision-at-line)
23288         (vc-hg-previous-version, vc-hg-checkin): New functions.
23289         (vc-hg-annotate-re): New constant.
23291 2007-06-20  Jay Belanger  <jay.p.belanger@gmail.com>
23293         * calc/calc.el (math-standard-ops): Fix precedence of multiplication.
23295 2007-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23297         * log-view.el (log-view-font-lock-keywords): Use `eval' to consult the
23298         buffer-local value of log-view-*-re if applicable.
23300         * vc-bzr.el (vc-bzr-dir-state): Use setq rather than set.
23301         Use vc-bzr-command rather than the ill defined vc-bzr-command*.
23302         (vc-bzr-command*): Remove both (incompatible) versions.
23303         (vc-bzr-do-command*): Remove.
23304         (vc-bzr-with-process-environment, vc-bzr-std-process-invocation):
23305         Remove by folding into its only caller vc-bzr-command.
23306         (vc-bzr-command): Always set the environment, even when ineffective.
23307         (vc-bzr-version): Minor fix up.
23308         (vc-bzr-admin-dirname): New var.
23309         (vc-bzr-bzr-dir): Remove.
23310         (vc-bzr-root-dir): New fun.
23311         (vc-bzr-registered): Use it.  Add an autoloaded version.
23312         (vc-bzr-responsible-p): Use vc-bzr-root-dir as well.
23313         (vc-bzr-view-log-function): Remove.
23314         (vc-bzr-log-view-mode): New major mode to replace it.
23315         (vc-bzr-print-log): Only activate the old hack if needed.
23317         * vc.el (vc-default-log-view-mode): New function.
23318         (vc-print-log): Add new `log-view-mode' VC operation.
23320 2007-06-20  Juanma Barranquero  <lekktu@gmail.com>
23322         * ido.el (ido-find-file-in-dir): Don't signal an error for
23323         empty directories.
23325         * add-log.el (change-log-mode): Set `show-trailing-whitespace'.
23327         * desktop.el (desktop-read): Run `desktop-not-loaded-hook' in the
23328         directory where the desktop file was found, as the docstring says.
23329         (desktop-kill): Use `read-directory-name'.
23331 2007-06-20  Alan Mackenzie  <acm@muc.de>
23333         * progmodes/cc-mode.el (c-remove-any-local-eval-or-mode-variables):
23334         When removing lines, also remove the \n.  Correction of patch of
23335         2007-04-21.
23337 2007-06-20  Martin Rudalics  <rudalics@gmx.at>
23339         * mouse.el (mouse-drag-mode-line-1): Quit mouse tracking when
23340         event is not a cons cell.  Do not unread drag-mouse-1 events.
23341         Select right window in check whether space was stolen from
23342         window above.
23344         * help-mode.el (help-make-xrefs): Adjust position of new forward
23345         button.
23347 2007-06-20  Riccardo Murri  <riccardo.murri@gmail.com>
23349         * vc-bzr.el (vc-bzr-with-process-environment)
23350         (vc-bzr-std-process-invocation): New macros.
23351         (vc-bzr-command, vc-bzr-command*): Use them.
23352         (vc-bzr-with-c-locale): Remove.
23353         (vc-bzr-dir-state): Replace its use with vc-bzr-command.
23354         (vc-bzr-buffer-nonblank-p): New function.
23355         (vc-bzr-state-words): New const.
23356         (vc-bzr-state): Look for `bzr status' keywords in output.
23357         Display everything else as a warning message to the user.
23358         Fix status report with bzr >= 0.15.
23360 2007-06-20  Dan Nicolaescu  <dann@ics.uci.edu>
23362         * vc-hg.el (vc-hg-global-switches): Simplify.
23363         (vc-hg-state): Handle more states.
23364         (vc-hg-diff): Fix doc-string.
23365         (vc-hg-register): New function.
23366         (vc-hg-checkout): Likewise.
23368 2007-06-20  Reto Zimmermann  <reto@gnu.org>
23370         * progmodes/vera-mode.el: New file.
23372 2007-06-19  Jay Belanger  <jay.p.belanger@gmail.com>
23374         * calc/calc.el (calc-multiplication-has-precendence):
23375         New variable.
23376         (math-standard-ops, math-standard-ops-p, math-expr-ops):
23377         New functions.
23378         (math-expr-opers): Define using math-standard-ops rather than
23379         math-standard-opers.
23380         * calc/calc-aent.el (calc-do-calc-eval): Let math-expr-opers
23381         equal the function math-standard-ops rather than the variable
23382         math-standard-opers.
23383         (calc-algebraic-entry): Let math-expr-opers equal
23384         math-standard-ops or math-expr-ops, as appropriate.
23385         (math-expr-read-level, math-read-factor): Let math-expr-opers
23386         equal math-expr-ops.
23387         * calc/calc-embed.el (calc-embedded-finish-edit):
23388         Let math-expr-opers equal the function math-standard-ops
23389         rather than the variable math-standard-opers.
23390         * calc/calc-ext.el (math-read-plain-expr)
23391         (math-format-flat-expr-fancy): Let math-expr-opers equal the
23392         function math-standard-ops rather than the variable
23393         math-standard-opers.
23394         * calc/calc-lang.el (calc-set-language, math-read-big-rec):
23395         Let math-expr-opers equal the function math-standard-ops rather
23396         than the variable math-standard-opers.
23397         * calc/calc-prog.el (calc-read-parse-table): Let math-expr-opers
23398         equal the function math-standard-ops rather than the variable
23399         math-standard-opers.
23400         * calc/calc-yank.el (calc-finish-stack-edit): Let math-expr-opers
23401         equal the function math-standard-ops rather than the variable
23402         math-standard-opers.
23403         * calc/calccomp.el (math-compose-expr): Let math-expr-opers equal
23404         math-expr-ops.
23406 2007-06-19  Ivan Kanis  <apple@kanis.eu>
23408         * vc-hg.el: New file.
23410 2007-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
23412         * progmodes/sh-script.el (sh-font-lock-paren): Mark the relevant text
23413         with font-lock-multiline.
23415 2007-06-17  Glenn Morris  <rgm@gnu.org>
23417         * lpr.el (lpr-page-header-switches): Move %s to separate element
23418         for correct quoting.  Doc fix.
23420 2007-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23422         * textmodes/sgml-mode.el (sgml-xml-guess): Return the result rather
23423         than setting sgml-xml-mode.
23424         (sgml-mode, html-mode): Set sgml-xml-mode.
23425         (sgml-skip-tag-backward): Tell if we skipped over matched tags.
23426         (sgml-skip-tag-backward, sgml-electric-tag-pair-overlays): New var.
23427         (sgml-electric-tag-pair-before-change-function)
23428         (sgml-electric-tag-pair-flush-overlays): New functions.
23429         (sgml-electric-tag-pair-mode): New minor mode.
23430         (sgml-font-lock-keywords-2, sgml-get-context, sgml-unclosed-tag-p)
23431         (sgml-calculate-indent): Use assoc-string.
23433 2007-06-16  Karl Fogel  <kfogel@red-bean.com>
23435         * thingatpt.el (thing-at-point-email-regexp): Don't require two
23436         chars before the "@" in an email address.  Andreas Roehler noticed
23437         this problem.
23439 2007-06-15  Karl Fogel  <kfogel@red-bean.com>
23441         * thingatpt.el: Add support for email addresses (`email').
23442         (thing-at-point, bounds-of-thing-at-point): Document `email' support.
23443         (thing-at-point-email-regexp): New variable.
23444         (`email'): Put `bounds-of-thing-at-point' and `thing-at-point'
23445         properties on this symbol, with lambda forms for values.
23447 2007-06-15  Masatake YAMATO  <jet@gyve.org>
23449         * vc-bzr.el (vc-bzr-root): Cache the output of shell command execution.
23451         * vc.el (vc-dired-hook): Check the backend returned from
23452         `vc-responsible-backend' can really handle `subdir'.
23454 2007-06-15  Chong Yidong  <cyd@stupidchicken.com>
23456         * wid-edit.el (widget-add-documentation-string-button):
23457         Fix handling of documentation indent.
23459 2007-06-15  Miles Bader  <miles@fencepost.gnu.org>
23461         * mb-depth.el: New file.
23463 2007-06-15  Masatake YAMATO  <jet@gyve.org>
23465         * vc.el (vc-dired-mode): Show backend name as part of mode name.
23467 2007-06-14  Chong Yidong  <cyd@stupidchicken.com>
23469         * wid-edit.el (widget-default-create): Move ?h handling here...
23470         (widget-default-format-handler): ...from here.
23471         (widget-docstring, widget-add-documentation-string-button): New funs.
23472         (documentation-string): Add :visibility-widget property.
23473         (widget-documentation-string-value-create): Use it.
23475         * cus-edit.el (custom-split-regexp-maybe): Simplify.
23476         (custom-buffer-create-internal): Simplify message.
23477         (custom-variable-tag): Reduce height to normal.
23478         (custom-variable-value-create, custom-face-value-create)
23479         (custom-visibility): New widget.
23480         (custom-visibility): New face.
23481         (custom-group-value-create):
23482         Call widget-add-documentation-string-button, using `custom-visibility'.
23484 2007-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
23486         * emacs-lisp/bytecomp.el (byte-compile-current-group)
23487         (byte-compile-nogroup-warn, byte-compile-file): Revert part of last
23488         change.  Apparently the "warning even if the group is implicit" is
23489         a feature rather than a bug.
23491 2007-06-14  Michael Kifer  <kifer@cs.stonybrook.edu>
23493         * emulation/viper.el (viper-describe-key-ad)
23494         (viper-describe-key-briefly-ad): Different advices for Emacs and XEmacs.
23495         Compile them conditionally.
23496         (viper-version): Belated version change.
23498 2007-06-14  Juanma Barranquero  <lekktu@gmail.com>
23500         * follow.el (follow-all-followers, follow-generic-filter):
23501         * pcomplete.el (pcomplete-restore-windows):
23502         * x-dnd.el (x-dnd-maybe-call-test-function, x-dnd-save-state)
23503         (x-dnd-drop-data):
23504         * emacs-lisp/edebug.el (edebug-pop-to-buffer, edebug-display):
23505         * progmodes/python.el (python-complete-symbol):
23506         * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
23508 2007-06-13  Ryan Yeske  <rcyeske@gmail.com>
23510         * net/rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax
23511         around bright and dim regexps.  Make sure bright and dim matches
23512         use word anchors.  Send text through rcirc-markup functions.
23513         (rcirc-url-regexp): Add single quote character.
23514         (rcirc-connect): Write logs to disk on auto-save-hook.
23515         Make server a non-optional argument.
23516         (rcirc-log-alist): New variable.
23517         (rcirc-log-directory): Make customizable.
23518         (rcirc-log-flag): New customizable variable.
23519         (rcirc-log): New function.
23520         (rcirc-print): Use above function.
23521         (rcirc-log-write): New function.
23522         (rcirc-generate-new-buffer-name): Strip text properties.
23523         (rcirc-switch-to-buffer-function): Remove variable.
23524         (rcirc-last-non-irc-buffer): Remove variable.
23525         (rcirc-non-irc-buffer): Add function.
23526         (rcirc-next-active-buffer): Use above function.
23527         (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
23528         (rcirc-handler-ctcp-KEEPALIVE): Add handler.
23529         (rcirc-handler-CTCP): Don't print KEEPALIVE responses.
23530         (rcirc-omit-mode): Add minor-mode.
23531         (rcirc-mode-map): Change C-c C-o binding.
23532         (rcirc-mode): Clear mode-line-process.  Use a custom
23533         fill-paragraph-function.  Set up buffer-invisibility-spec.
23534         (rcirc-response-formats): Remove timestamp code.
23535         (rcirc-omit-responses): Add variable.
23536         (rcirc-print): Don't put the overlay arrow on potentially omitted
23537         lines.  Log line to disk.  Record activity for private messages
23538         from /dim nicks.  Facify the fill-prefix with rcirc-timestamp face.
23539         (rcirc-jump-to-first-unread-line): Print message if there is no
23540         unread text.
23541         (rcirc-clear-unread): New function.
23542         (rcirc-markup-text-functions): Add variable.
23543         (rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
23544         (rcirc-debug): Don't mess with window configuration.
23545         (rcirc-send-message): Send message before printing locally.
23546         Add SILENT argument, do not print message if non-nil.
23547         (rcirc-visible-buffers): New function and variable.
23548         (rcirc-window-configuration-change-1): Add function.
23549         (rcirc-target-buffer): Make sure ACTIONs don't get sent to the
23550         server buffer.
23551         (rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
23552         (rcirc-fill-paragraph): Add function.
23553         (rcirc-record-activity, rcirc-window-configuration-change-1):
23554         Only update the activity string if it has actually changed.
23555         (rcirc-update-activity-string): Remove padding characters from the
23556         mode-line string.
23557         (rcirc-disconnect-buffer): New function to be called when a
23558         channel is parted or the user quits.
23559         (rcirc-server-name): Warn when the server-name hasn't been set.
23560         (rcirc-window-configuration-change): Postpone work until
23561         post-command-hook.
23562         (rcirc-window-configuration-change-1): Update mode-line and
23563         overlay arrows here.
23564         (rcirc-authenticate): Fixc hanserv identification.
23565         (rcirc-default-server): Remove variable.
23566         (rcirc): Connect according to rcirc-connections.
23567         (rcirc-connections): Add variable.
23568         (rcirc-startup-channels-alist): Remove variable.
23569         (rcirc-startup-channels): Remove function.
23571 2007-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23573         * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
23575 2007-06-13  Johan Bockgård  <bojohan@dd.chalmers.se>  (tiny change)
23577         * term/xterm.el (terminal-init-xterm): Escape parens in character
23578         constants.
23580 2007-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23582         * progmodes/sh-script.el: Remove unneeded * from docstrings.
23583         Use [:alpha:] and [:alnum:] where applicable.
23584         (sh-quoted-subshell): Rewrite to correctly
23585         handle nested mixes of `...' and $(...).
23586         (sh-apply-quoted-subshell): Remove.
23587         (sh-font-lock-syntactic-keywords): Adjust call to sh-quoted-subshell.
23589         * vc-arch.el (vc-arch-command): Remove bzr.  It's a different program.
23591 2007-06-13  Michael Kifer  <kifer@cs.stonybrook.edu>
23593         * ediff-ptch.el (ediff-context-diff-label-regexp): Partially undo
23594         previous change.
23596 2007-06-12  Tom Tromey  <tromey@redhat.com>
23598         * subr.el (user-emacs-directory): New defconst.
23599         * cmuscheme.el (scheme-start-file):
23600         * shell.el (shell):
23601         * completion.el (save-completions-file-name):
23602         * custom.el (custom-theme-directory):
23603         * term/x-win.el (emacs-session-filename):
23604         * filesets.el (filesets-menu-cache-file):
23605         * thumbs.el (thumbs-thumbsdir):
23606         * server.el (server-auth-dir):
23607         * image-dired.el (image-dired-dir):
23608         (image-dired-db-file):
23609         (image-dired-temp-image-file):
23610         (image-dired-gallery-dir):
23611         (image-dired-temp-rotate-image-file):
23612         * play/gamegrid.el (gamegrid-user-score-file-directory):
23613         * savehist.el (savehist-file):
23614         * tutorial.el (tutorial--saved-dir):
23615         * startup.el (auto-save-list-file-prefix): Use user-emacs-directory.
23617 2007-06-12  Ralf Angeli  <angeli@caeruleus.net>
23619         * scroll-lock.el (scroll-lock-mode): Doc fix.
23621 2007-06-12  Michael Kifer  <kifer@cs.stonybrook.edu>
23623         * ediff-ptch.el (ediff-context-diff-label-regexp): Spurious parenthesis.
23625         * ediff-init.el: Doc strings.
23627 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23629         * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
23630         (byte-compile-file): Bind it.
23631         (byte-compile-nogroup-warn): Use it to avoid spurious warnings when the
23632         group argument is provided implicitly.
23633         (byte-compile-format-warn, byte-compile-from-buffer)
23634         (byte-compile-insert-header): Don't hardcode point-min==1.
23635         (byte-compile-file-form-require): Remove unused var old-load-list.
23636         (byte-compile-eval): Remove unused vars old-autoloads and hist-nil-new.
23638 2007-06-12  Michael Kifer  <kifer@cs.stonybrook.edu>
23640         * emulation/viper-cmd.el (viper-prefix-arg-com, viper-prefix-arg-value):
23641         Display error messages.
23642         (viper-prev-destructive-command, viper-insert-prev-from-insertion-ring):
23643         Get rid of cl.el dependencies.
23645         * emulation/viper-init.el (viper-suppress-input-method-change-message):
23646         New variable.
23647         (viper-activate-input-method-action)
23648         (viper-inactivate-input-method-action):
23649         Use viper-suppress-input-method-change-message.
23651         * emulation/viper-keym.el (viper-vi-basic-map): Disable the bindings
23652         for C-s, C-r.
23654         * emulation/viper-util.el (viper-set-cursor-color-according-to-state):
23655         Use viper-replace-overlay-cursor-color instead of
23656         viper-replace-overlay-cursor-color.
23657         (viper-sit-for-short): Use sit-for with 3 arguments.
23659         * emulation/viper.el (viper-insert-state-mode-list): Add gud-mode.
23660         (viper-major-mode-modifier-list): Add viper-comint-mode-modifier-map
23661         to gud-mode.
23663         * ediff-mult.el (ediff-meta-buffer-brief-message)
23664         (ediff-meta-buffer-verbose-message): New variables.
23665         (ediff-meta-buffer-message): Variable deleted.
23666         (ediff-verbose-help-enabled): New variable.
23667         (ediff-toggle-verbose-help-meta-buffer): New function.
23668         (ediff-redraw-directory-group-buffer): Made aware of short/verbose
23669         message options.
23671         * ediff-ptch.el (ediff-context-diff-label-regexp): Better regexp.
23672         (ediff-fixup-patch-map): Improve heuristic.
23674 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23676         * log-view.el (log-view-file-re, log-view-message-re): Use \(?1:...\).
23677         (log-view-font-lock-keywords): Simplify.
23678         (log-view-current-file, log-view-current-tag): Simplify.
23680 2007-06-12  Sam Steingold  <sds@gnu.org>
23682         * vc-arch.el (vc-arch-command): Also try "baz" and "bzr".
23684 2007-06-12  Juanma Barranquero  <lekktu@gmail.com>
23686         * desktop.el (desktop-load-locked-desktop): New option.
23687         (desktop-read): Use it.
23688         (desktop-truncate, desktop-outvar, desktop-restore-file-buffer):
23689         Use `when'.
23691 2007-06-12  Davis Herring  <herring@lanl.gov>
23693         * desktop.el (desktop-save-mode-off): New function.
23694         (desktop-base-lock-name, desktop-not-loaded-hook): New variables.
23695         (desktop-full-lock-name, desktop-file-modtime, desktop-owner)
23696         (desktop-claim-lock, desktop-release-lock): New functions.
23697         (desktop-kill): Tell `desktop-save' that this is the last save.
23698         Release the lock afterwards.
23699         (desktop-buffer-info): New function.
23700         (desktop-save): Use it.  Run `desktop-save-hook' where the doc
23701         says to.  Detect conflicts, and manage the lock.
23702         (desktop-read): Detect conflicts.  Manage the lock.
23704 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23706         * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
23708         * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
23709         (tpu-lucid-emacs-p): Remove.  Use (featurep 'xemacs) instead.
23710         (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
23711         (tpu-gold-map, tpu-global-map): Add all the SS3 and CSI bindings, using
23712         keysyms rather than byte sequences.
23713         (tpu-copy-keyfile): Don't force the user to use tpu-mapper.el.
23715 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
23717         * font-lock.el (font-lock-add-keywords): In case font-lock was only
23718         half-activated, forcefully activate it completely.
23720 2007-06-11  Richard Stallman  <rms@gnu.org>
23722         * cus-edit.el (custom-variable-type): Doc fix.
23724 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
23726         * progmodes/sh-script.el (sh-font-lock-backslash-quote)
23727         (sh-font-lock-flush-syntax-ppss-cache): New functions.
23728         (sh-font-lock-syntactic-keywords): Use them to distinguish the
23729         different possible cases for \'.
23731         * complete.el (PC-bindings): Don't bind things already bound in the
23732         parent keymap.
23734         * textmodes/bibtex-style.el: New file.
23736 2007-06-11  Riccardo Murri  <riccardo.murri@gmail.com>
23738         * vc-bzr.el: New file.
23740 2007-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
23742         * vc-svn.el (vc-svn-program): New var.
23743         (vc-svn-command): Use it.
23745 2007-06-11  Juanma Barranquero  <lekktu@gmail.com>
23747         * server.el (server-switch-buffer): Remove redundant check.
23749 2007-06-10  Martin Rudalics  <rudalics@gmx.at>
23751         * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
23752         Match against file-name-nondirectory.
23753         Fix text on user customization variables.
23754         Reported by Johan Bockgård <bojohan@dd.chalmers.se>.
23756 2007-06-09  Alfred M. Szmidt  <ams@gnu.org>  (tiny change)
23758         * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
23760 2007-06-09  Davis Herring  <herring@lanl.gov>
23762         * desktop.el (desktop-minor-mode-table): Doc fix.
23764 2007-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23766         * textmodes/css-mode.el (css-navigation-syntax-table):
23767         Use set-char-table-range so it also works in the unicode branch.
23769 2007-06-08  Nick Roberts  <nickrob@snap.net.nz>
23771         * help-mode.el (help-xref-forward-stack)
23772         (help-xref-stack-forward-item, help-forward-label): New variables.
23773         (help-forward): New button type.
23774         (help-setup-xref): Initialise help-xref-forward-stack.
23775         (help-make-xrefs): Add forward button, if appropriate.
23776         (help-xref-go-back): Push item on forward stack.
23777         (help-xref-go-forward, help-go-forward): New functions.
23779 2007-06-07  Chong Yidong  <cyd@stupidchicken.com>
23781         * dired.el (dired-mode-map): Remove spurious separator.
23783 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
23785         * progmodes/ebrowse.el (ebrowse-draw-file-member-info): Doc fix.
23787         * progmodes/mixal-mode.el (mixal-operation-codes-alist):
23788         * progmodes/idlwave.el (idlwave-one-key-select): Fix typo in docstring.
23790 2007-06-07  Carsten Dominik  <dominik@science.uva.nl>
23792         * textmodes/org.el: Version number fixed.
23794 2007-06-07  Glenn Morris  <rgm@gnu.org>
23796         * version.el (emacs-copyright): New constant.
23797         * startup.el (fancy-splash-tail): Use emacs-copyright.
23798         * calc/calc-help.el (calc-full-help): Use emacs-copyright.
23800         * emacs-lisp/bytecomp.el (byte-compile-warnings): Add new option
23801         `make-local'.
23802         (byte-compile-warnings-safe-p): Add `make-local'.
23803         (byte-compile-make-variable-buffer-local):
23804         Allow byte-compile-warnings to suppress this warning.
23806         * tutorial.el (tutorial--describe-nonstandard-key): Adjust for new
23807         format of "menu" description.
23808         (tutorial--find-changed-keys): Describe the specific menu a
23809         command is in.
23811         * dframe.el (dframe-frame-parameter, dframe-mouse-event-p):
23812         Rewrite compatibility functions to silence byte-compiler.
23814 2007-06-07  Alfred M. Szmidt  <ams@gnu.org>  (tiny change)
23816         * mail/rmailsum.el (rmail-summary-save-buffer): New command.
23817         (rmail-summary-mode-map): Add rmail-summary-save-buffer.
23819 2007-06-07  Eric M. Ludlam  <eric@siege-engine.com>
23821         * emacs-lisp/checkdoc.el (checkdoc-ispell-lisp-words): Remove "iff".
23823 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
23825         * progmodes/ebrowse.el (ebrowse-member-table):
23826         * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
23827         (org-batch-agenda-csv): Fix typos in docstrings.
23829 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
23831         * pgg.el (pgg-sign-region, pgg-sign):
23832         * ses.el (ses-call-printer):
23833         * calendar/icalendar.el (icalendar--diarytime-to-isotime):
23834         * textmodes/org.el (org-cycle): Fix typos in docstrings.
23836 2007-06-06  Carsten Dominik  <dominik@science.uva.nl>
23838         * textmodes/org.el (org-export-region-as-html)
23839         (org-replace-region-by-html, org-number-to-letters)
23840         (org-table-fedit-finish, org-normalize-color)
23841         (org-table-fedit-ref-right, org-date-to-gregorian)
23842         (org-table-fedit-move, org-table-convert-refs-to-rc)
23843         (org-calendar-holiday, org-table-fedit-toggle-ref-type)
23844         (org-write-agenda, org-colgroup-info-to-vline-list)
23845         (org-agenda-todo-previousset, org-defkey, org-encode-for-stdout)
23846         (org-indent-line-function, org-export-as-html-to-buffer)
23847         (org-store-agenda-views, org-update-mode-line)
23848         (org-find-if, org-delete-all)
23849         (org-table-fedit-convert-buffer, org-emphasize)
23850         (org-uniquify, org-table-fedit-lisp-indent)
23851         (org-table-fedit-scroll, org-get-todo-sequence-head)
23852         (org-table-fedit-scroll-down, org-table-fedit-line-down)
23853         (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
23854         (org-table-fedit-toggle-coordinates, org-dvipng-color)
23855         (org-table-fedit-line-up, org-table-fedit-ref-down)
23856         (org-table-formula-from-user, org-mode-flyspell-verify)
23857         (org-cycle-show-empty-lines, org-ctrl-c-ret)
23858         (org-table-formula-to-user, org-diary-to-ical-string)
23859         (orgtbl-export, org-table-fedit-post-command)
23860         (org-closed-in-range, org-shiftcontrolright)
23861         (org-table-convert-refs-to-an, org-table-hline-and-move)
23862         (org-table-formula-less-p, org-format-table-ascii)
23863         (org-agenda-get-sexps, org-shift-refpart)
23864         (org-diary-sexp-entry, org-time-string-to-absolute)
23865         (org-table-show-reference, org-letters-to-number)
23866         (org-fix-agenda-info, org-table-fedit-ref-up)
23867         (org-table-fedit-shift-reference, org-table-fedit-abort)
23868         (org-closest-date, org-shiftcontrolleft)
23869         (org-at-heading-or-item-p, org-rematch-and-replace)
23870         (org-agenda-todo-nextset, org-export-grab-title-from-buffer):
23871         New functions.
23872         (org-table-edit-scroll-down, org-finish-edit-formulas)
23873         (org-table-edit-next-field, org-abort-edit-formulas)
23874         (org-font-lock-level, org-export-find-first-heading-line)
23875         (org-table-edit-line-down, org-table-edit-backward-field)
23876         (org-edit-formula-lisp-indent, org-table-edit-move)
23877         (org-check-log-option, org-this-word)
23878         (org-table-edit-line-up, org-table-edit-formulas-post-command)
23879         (org-agenda-file-to-end, org-expand-file-name)
23880         (org-fake-empty-table-line, org-table-edit-scroll)
23881         (org-toggle-log-option, org-show-reference): Function removed.
23882         (org-inhibit-invisibility, org-table-formula-make-cmp-string):
23883         New defsubsts.
23884         (org-unmodified, org-batch-store-agenda-views)
23885         (org-batch-agenda-csv): New macro.
23886         (org-agenda-export): New customization group.
23887         (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
23888         (org-highest-priority, org-agenda-exporter-settings)
23889         (org-log-done-with-time, org-replace-disputed-keys)
23890         (org-format-latex-header, org-export-table-header-tags)
23891         (org-cycle-separator-lines, org-export-table-data-tags)
23892         (org-icalendar-include-sexps)
23893         (org-empty-line-terminates-plain-lists)
23894         (org-log-repeat, org-special-ctrl-a)
23895         (org-table-use-standard-references, org-disputed-keys)
23896         (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
23897         (org-agenda-export-html-style): New option.
23898         (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
23899         (org-CUA-compatible): Option removed.
23900         (org-agenda-structure, org-sexp-date): New face.
23901         (org-todo-keywords-for-agenda, org-not-done-keywords)
23902         (org-planning-or-clock-line-re, org-agenda-name)
23903         (org-table-colgroup-info, org-todo-sets)
23904         (constants-unit-system, org-clock-mode-line-entry)
23905         (org-mode-line-timer, org-table-current-begin-pos)
23906         (org-todo-keywords-1, org-mode-line-string)
23907         (org-table-clean-did-remove-column, org-table-fedit-map)
23908         (org-clock-heading, org-table-buffer-is-an)
23909         (org-agenda-info, org-done-keywords)
23910         (org-done-keywords-for-agenda, org-todo-heads)
23911         (org-todo-kwd-alist, org-clock-start-time): New variable.
23912         (org-todo-kwd-priority-p, org-edit-formulas-map)
23913         (org-repeat-re, org-todo-kwd-max-priority)
23914         (org-version, org-done-string)
23915         (org-table-clean-did-remove-column-1, org-disputed-keys):
23916         Remove variables.
23917         (org-table-translate-regexp, org-repeat-re, org-version): New consts.
23918         (org-ts-lengths): Constant removed.
23919         (org-follow-gnus-link): Don't ask how many articles to read.
23920         (org-export-find-first-export-line): Rename from
23921         `org-export-find-first-heading'.
23922         Use `org-export-skip-text-before-1st-heading'.
23923         (org-table-fedit-post-command): Rename from
23924         `org-table-edit-formulas-post-command'.
23925         (org-table-fedit-finish): Rename from `org-finish-edit-formulas'.
23926         (org-table-fedit-abort): Rename from `org-abort-edit-formulas'.
23927         (org-table-fedit-lisp-indent): Rename from
23928         `org-edit-formula-lisp-indent'.
23929         (org-table-show-reference): Rename from `org-show-reference'.
23930         (org-table-store-formulas): Use `org-table-formula-less-p'.
23931         (org-table-edit-formulas): Position cursor to current field equation.
23932         (org-update-checkbox-count, org-hide-archived-subtrees)
23933         (org-timestamp-up-day, org-timestamp-down-day)
23934         (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
23935         (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
23936         (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
23937         (org-shiftleft, org-ctrl-c-ctrl-c, org-context):
23938         Let `org-on-heading-p' also check for invisible heading.
23939         (org-read-date): Match am/pm times.
23940         (org-eval-in-calendar): Fix default date in prompt.
23942 2007-06-05  Chong Yidong  <cyd@stupidchicken.com>
23944         * files.el (auto-mode-alist): Separate "ChangeLog.1" and
23945         "ChangeLog.a" entries, giving the latter lower priority.
23947 2007-06-05  Juanma Barranquero  <lekktu@gmail.com>
23949         * faces.el (face-id): If the argument is a face alias,
23950         return the ID of the target face.
23952 2007-06-05  Michael Albinus  <michael.albinus@gmx.de>
23954         * net/socks.el (top): Remove unnecessary copyright line.
23956 2007-06-04  Chong Yidong  <cyd@stupidchicken.com>
23958         * longlines.el (longlines-auto-wrap): Handle argument correctly.
23960 2007-06-04  Michael Albinus  <michael.albinus@gmx.de>
23962         * net/socks.el: New file, taken from w3 repository.
23963         (top): Update Copyright.  Don't load cl.el.
23964         (all): Replace `case' by `cond', `string-to-int' by
23965         `string-to-number', and `process-kill-without-query' by
23966         `set-process-query-on-exit-flag'.
23967         (socks-char-int): Remove defalias and all occurrences.
23969 2007-06-04  Juanma Barranquero  <lekktu@gmail.com>
23971         * progmodes/compile.el (compilation-find-file, compilation-handle-exit):
23972         Fix typos in docstrings.
23973         (compilation-search-path, compilation-buffer-name-function): Doc fixes.
23974         (compilation-finish-function): Fix typo in obsolescence declaration.
23976 2007-06-03  Sam Steingold  <sds@gnu.org>
23978         * progmodes/compile.el: Add TIMESTAMP to the LOC data structure, to
23979         handle unending automatic recompilation of changed files (`omake -P').
23980         (compilation-loop): VISITED is now 5th CDR.
23981         (compilation-next-error-function): Set TIMESTAMP.
23983 2007-06-03  Sam Steingold  <sds@gnu.org>
23985         * files.el (kill-buffer-ask): New function.
23986         (kill-some-buffers): Use it.
23987         (kill-matching-buffers): New user command.
23989 2007-06-01  David Kastrup  <dak@gnu.org>
23991         * dired.el (dired-recursive-deletes, dired-recursive-copies):
23992         Change default to `top'.
23994 2007-05-31  Richard Stallman  <rms@gnu.org>
23996         * dired.el (dired-do-flagged-delete, dired-do-delete): Doc fix.
23998 2007-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
24000         * textmodes/css-mode.el: New file.
24002 2007-05-30  Michael Olson  <mwolson@gnu.org>
24004         * emacs-lisp/tq.el (tq-queue-pop): Stifle error when a process has
24005         died and we are trying to send a signal to it.  The program using
24006         tq.el should periodically check to see whether the process has
24007         died and react appropriately -- this is not the responsibility of
24008         tq.el, and is consistent with the rest of the tq.el source code.
24010 2007-05-29  Martin Rudalics  <rudalics@gmx.at>
24012         * textmodes/table.el (table--point-entered-cell-function)
24013         (table--point-left-cell-function):
24014         Bind `inhibit-point-motion-hooks' to t.
24016 2007-05-29  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
24018         * emacs-lisp/rx.el (rx): Doc fix.
24020 2007-05-28  Juanma Barranquero  <lekktu@gmail.com>
24022         * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
24024 2007-05-28  Michael Albinus  <michael.albinus@gmx.de>
24026         Sync with Tramp 2.0.56.
24028         * net/tramp.el:
24029         * net/tramp-ftp.el:
24030         * net/tramp-smb.el:
24031         * net/tramp-util.el:
24032         * net/tramp-vc.el:
24033         Don't load cl.el, because that pollutes the namespace.  Replace cl
24034         macros by their implementations where necessary.  Requested by
24035         Richard Stallman <rms@gnu.org>.
24037         * net/tramp.el (top): Make `set-buffer-multibyte' an alias if it
24038         doesn't exist.
24039         (with-parsed-tramp-file-name): Protect debug spec during compilation.
24040         (tramp-handle-insert-directory): Check (featurep 'ls-lisp).
24041         (tramp-file-name-p, tramp-file-name-multi-method)
24042         (tramp-file-name-method, tramp-file-name-user)
24043         (tramp-file-name-host, tramp-file-name-localname): New defuns,
24044         replacing defstruct `tramp-file-name'.
24045         (tramp-handle-file-remote-p, tramp-completion-dissect-file-name1)
24046         (tramp-dissect-file-name, tramp-dissect-multi-file-name):
24047         Apply `vector' instead of `make-tramp-file-name'.
24048         (tramp-handle-make-auto-save-file-name):
24049         Apply `tramp-temporary-file-directory' for compatibility reasons.
24050         (tramp-completion-mode): Use `natnump' instead of `wholenump'
24051         because of XEmacs.
24052         (tramp-completion-mode): `last-input-event' is nil when XEmacs is
24053         started.
24055 2007-05-28  Chong Yidong  <cyd@stupidchicken.com>
24057         * textmodes/sgml-mode.el (sgml-point-entered): Use condition-case.
24059 2007-05-27  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
24061         * log-edit.el (log-edit-changelog-paragraph): Return point-max
24062         as the end of the ChangeLog paragraph when it ends without a line
24063         termination.
24065 2007-05-27  Ryan Yeske  <rcyeske@gmail.com>
24067         * net/webjump.el (webjump-sample-sites):
24068         Add simple Wikipedia query.
24070 2007-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
24072         * emacs-lisp/derived.el (define-derived-mode): Remove bogus
24073         compatibility code.
24075         * emacs-lisp/copyright.el (copyright-names-regexp): New var.
24076         (copyright-update-year): Use it.
24078         * edmacro.el (edmacro-format-keys): Use current-active-maps.
24080         * ediff-init.el (ediff-defvar-local, ediff-with-current-buffer):
24081         Add indentation and debugging info.  Fix up comment convention.
24083         * cus-dep.el (custom-make-dependencies): Simplify.
24085         * composite.el (compose-region, decompose-region):
24086         Use inhibit-read-only and restore-buffer-modified-p.
24088         * xt-mouse.el (xterm-mouse-truncate-wrap): New function.
24089         (xterm-mouse-event): Use it.
24091 2007-05-25  Juanma Barranquero  <lekktu@gmail.com>
24093         * bs.el (bs-cycle-previous): Don't modify the cycle list until
24094         `switch-to-buffer' has returned succesfully.
24095         (bs-cycle-next): Ditto.  Also, don't bury the buffer when the
24096         window is dedicated (it could iconify the frame).
24098 2007-05-25  Miles Bader  <miles@fencepost.gnu.org>
24100         * vc-hooks.el (vc-find-root): Fix file attribute test.
24102 2007-05-24  Richard Stallman  <rms@gnu.org>
24104         * textmodes/flyspell.el (flyspell-correct-word-before-point):
24105         Don't let opoint be nil.
24106         (flyspell-emacs-popup): Explicit error if no dialogs.
24108 2007-05-24  Chong Yidong  <cyd@stupidchicken.com>
24110         * image-mode.el (image-forward-hscroll, image-backward-hscroll)
24111         (image-next-line, image-previous-line, image-scroll-up)
24112         (image-scroll-down, image-bol, image-eol, image-bob, image-eob):
24113         New functions.
24114         (image-mode-map): Remap motion commands.
24115         (image-mode-text-map): New keymap for viewing images as text.
24116         (image-mode): Use image-mode-map.
24117         (image-toggle-display): Toggle auto-hscroll-mode and mode keymaps.
24119 2007-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
24121         * textmodes/fill.el (canonically-space-region): Make the second arg
24122         a marker if it's not already the case.
24124 2007-05-23  Eli Zaretskii  <eliz@gnu.org>
24126         * tar-mode.el (tar-header-block-summarize, tar-summarize-buffer)
24127         (tar-get-descriptor): Handle type 55, an extended pax header.
24129 2007-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
24131         * autoinsert.el (auto-insert-alist): Quote elisp sample code so as not
24132         to confuse outline-minor-mode.
24134 2007-05-23  Eli Zaretskii  <eliz@gnu.org>
24136         * tar-mode.el (tar-file-name-handler): New function.
24137         (tar-extract): Bind file-name-handler-alist to it to force
24138         find-buffer-file-type-coding-system behave as if the file being
24139         extracted existed.  Use last-coding-system-used to force
24140         buffer-file-coding-system to what decode-coding-region actually
24141         used to decode the file.
24143 2007-05-23  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
24145         * progmodes/compile.el (compilation-handle-exit):
24146         `compilation-finish-function' may change the current buffer.
24148 2007-05-22  Richard Stallman  <rms@gnu.org>
24150         * files.el (set-auto-mode): Doc fix.
24152 2007-05-22  Jan Djärv  <jan.h.d@swipnet.se>
24154         * help-fns.el (find-source-lisp-file): New function.
24155         (describe-function-1): Use find-source-lisp-file to find source
24156         file in compile tree.
24158 2007-05-22  Eli Zaretskii  <eliz@gnu.org>
24160         * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
24162 2007-05-22  Juanma Barranquero  <lekktu@gmail.com>
24164         * emacs-lisp/easy-mmode.el (define-minor-mode)
24165         (easy-mmode-define-navigation): Fix typos in docstrings.
24167 2007-05-22  Glenn Morris  <rgm@gnu.org>
24169         * files.el (auto-mode-alist): Open `.asd' files in lisp-mode.
24171 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24173         * mail/mail-extr.el (mail-extract-address-components):
24174         Recognize non-ASCII characters except for NBSP as words.
24176 2007-05-21  Trent Buck  <trentbuck@gmail.com>  (tiny change)
24178         * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
24179         (rcirc-print): Handle `window-width'.
24180         (rcirc-buffer-maximum-lines): Doc fix.
24182 2007-05-21  Chong Yidong  <cyd@stupidchicken.com>
24184         * image-mode.el (image-toggle-display): Don't clear image cache.
24185         Only use filename in image spec if the file is readable.
24186         Call image-refresh.
24188         * image.el (image-type-from-file-name, image-type): Simplify.
24189         (image-type-auto-detected-p): Don't scan auto-mode-alist.
24191         * files.el (magic-mode-alist): Remove image-type-auto-detected-p.
24192         (magic-fallback-mode-alist): Add image-type-auto-detected-p.
24194 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
24196         * t-mouse.el (t-mouse-mode): Reset t-mouse-mode to nil if there
24197         is an error.
24199         * term/linux.el (terminal-init-linux): Don't signal an error
24200         if gpm isn't running.
24202 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
24204         * t-mouse.el: Reduce to a minor-mode macro call.
24205         (t-mouse-mode): Remove the lighter.
24207         * term/linux.el (terminal-init-linux): Enable t-mouse by default.
24209 2007-05-19  Dan Nicolaescu  <dann@ics.uci.edu>
24211         * files.el (auto-mode-alist): Change the regexp so that
24212         ChangeLog.unicode and ChangeLog.multi-tty use change-log-mode.
24214 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
24216         * Version 22.1 released.
24218 2007-05-19  Chong Yidong  <cyd@stupidchicken.com>
24220         * paren.el (show-paren-function): Undo 2007-04-19 and 2007-04-20
24221         changes.
24223 2007-05-19  Kevin Ryde  <user42@zip.com.au>
24225         * info.el (Info-fontify-node): Fontify https as well as http and ftp.
24227 2007-05-18  Thien-Thi Nguyen  <ttn@gnuvola.org>
24229         * textmodes/sgml-mode.el: Revert last change.
24231 2007-05-18  Richard Stallman  <rms@gnu.org>
24233         * simple.el (push-mark): Doc fix.
24235 2007-05-18  Rob Riepel  <riepel@Stanford.EDU>
24237         * emulation/tpu-edt.el (CSI-map, SS3-map): Move from global-map to
24238         tpu-global-map.
24239         (tpu-original-global-map): Variable deleted.
24240         (tpu-control-keys-map): New keymap variable.
24241         (tpu-set-control-keys): Use tpu-reset-control-keys rather than
24242         setting keymapping directly.
24243         (tpu-reset-control-keys): Use tpu-control-keys-map instead of
24244         tpu-global-map.
24245         (tpu-edt-on): Activate the tpu-global-map.
24246         (tpu-edt-off): Deactivate the tpu-global-map.
24248 2007-05-18  Ryan Yeske  <rcyeske@gmail.com>
24250         * textmodes/ispell.el (ispell-get-word): Return markers
24251         for start and end positions.
24252         (ispell-word): Assume END is a marker.
24254 2007-05-17  Christian Plate  <cplate@web.de>  (tiny change)
24256         * textmodes/sgml-mode.el (sgml-tag):
24257         Fix bug: Call sgml-transformation-function.
24259 2007-05-17  Martin Rudalics  <rudalics@gmx.at>
24261         * hilit-chg.el (highlight-changes-rotate-faces): Don't set
24262         modified flag of buffer.  Use `inhibit-modification-hooks'.
24264 2007-05-16  Richard Stallman  <rms@gnu.org>
24266         * buff-menu.el (Buffer-menu-sort-column): Doc fix.
24268 2007-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
24270         * files.el (magic-mode-alist, magic-fallback-mode-alist):
24271         Move the *ml, Postscript, and XmCD entries to the fallback part.
24273         * files.el (magic-fallback-mode-alist):
24274         Rename from file-start-mode-alist.
24276 2007-05-16  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
24278         * progmodes/compile.el (compilation-handle-exit): Quote first
24279         argument of `run-hook-with-args'.
24281 2007-05-16  Juanma Barranquero  <lekktu@gmail.com>
24283         * buff-menu.el (Buffer-menu-sort-column):
24284         * dabbrev.el (dabbrev-upcase-means-case-search):
24285         * dired.el (dired-recursive-deletes, dired-recursive-copies):
24286         * info.el (Info-current-subfile):
24287         * ls-lisp.el (ls-lisp-verbosity):
24288         * msb.el (msb-menu-cond):
24289         * pcvs.el (cvs-dired-use-hook):
24290         * simple.el (set-mark-command-repeat-pop):
24291         * time.el (display-time-24hr-format, display-time-mail-file):
24292         Doc fixes.
24294         * tutorial.el (get-lang-string, tutorial--find-changed-keys):
24295         * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
24297         * view.el (view-inhibit-help-message): Fix typo in docstring.
24298         (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
24300 2007-05-16  Martin Rudalics  <rudalics@gmx.at>
24302         * textmodes/ispell.el (ispell-start-process): Defend against bad
24303         default-directory.
24305 2007-05-14  Eli Zaretskii  <eliz@gnu.org>
24307         * mail/rmail.el (rmail-convert-to-babyl-format): Check
24308         content-transfer-encoding _last_, because it's its position that
24309         we need as value of base64-header-field-end.
24311 2007-05-14  Juanma Barranquero  <lekktu@gmail.com>
24313         * files.el (mode-require-final-newline, require-final-newline)
24314         (enable-local-variables, enable-local-eval): Doc fixes.
24316 2007-05-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24318         * ps-print.el: Use default color when foreground or background color
24319         are unspecified.  Reported by Leo <sdl.web@gmail.com>.
24320         (ps-print-version): New version 6.7.4.
24321         (ps-rgb-color): New argument.  Use default color when color is
24322         unspecified.
24323         (ps-begin-job): Fix code.
24325 2007-05-12  Chong Yidong  <cyd@stupidchicken.com>
24327         * longlines.el (longlines-mode): Make longlines-auto-wrap
24328         buffer-local.  Add hooks unconditionally.
24329         (longlines-auto-wrap): Toggle wrapping.
24330         (longlines-after-change-function)
24331         (longlines-post-command-function): Check longlines-auto-wrap.
24333 2007-05-12  Nick Roberts  <nickrob@snap.net.nz>
24335         * xt-mouse.el (xterm-mouse-debug-buffer): New variable.
24336         (xterm-mouse-translate): Use it.
24338 2007-05-10  Richard Stallman  <rms@gnu.org>
24340         * international/iso-cvt.el (iso-cvt-read-only): Ignore arguments.
24341         (iso-cvt-write-only): Likewise.
24343         * emacs-lisp/easy-mmode.el (define-minor-mode):
24344         Fix generated doc string.
24346         * startup.el (fancy-splash-text): Add URL of guided tour.
24347         Adjust horizontal and vertical whitespace.
24349         * progmodes/compile.el (compilation-handle-exit):
24350         Use run-hook-with-args to run compilation-finish-functions.
24352         * files.el (file-start-mode-alist): New variable.
24353         (magic-mode-regexp-match-limit): Doc fix.
24354         (set-auto-mode): Handle file-start-mode-alist.
24355         A little cleanup of structure.
24357         * dabbrev.el (dabbrev-eliminate-newlines):
24358         Renamed from dabbrev--eliminate-newlines.  All uses changed.
24360 2007-05-10  Michaël Cadilhac  <michael@cadilhac.name>
24362         * man.el (Man-next-section): Don't consider the last line of the page
24363         as being part of any section.
24365 2007-05-10  Stefan Monnier  <monnier@iro.umontreal.ca>
24367         * textmodes/sgml-mode.el (sgml-value): Fix handling of attributes which
24368         can take any number of values.
24370 2007-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
24372         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add citet and citep
24373         to the list of citation commands.
24375 2007-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
24377         * vc-hooks.el (vc-find-root): Stop searching when the user changes.
24379 2007-05-09  Edward O'Connor  <hober0@gmail.com>  (tiny change)
24381         * progmodes/python.el (python-font-lock-keywords)
24382         (python-open-block-statement-p, python-mode): Add support for the new
24383         "with" keyword.
24385 2007-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
24387         * diff-mode.el (diff-apply-hunk, diff-test-hunk): Don't do by default
24388         the exact opposite of diff-goto-source.
24390         * emacs-lisp/advice.el (ad-special-forms): Remove.
24391         (ad-special-form-p): Use subr-arity.
24393         * newcomment.el (comment-search-forward): Make sure we search forward.
24394         (comment-enter-backward): Try and distinguish the non-matching case at
24395         EOB from the non-matching case with a missing comment-end-skip for
24396         a 2-char comment ender.
24397         (comment-choose-indent): New function extracted from comment-indent.
24398         Improve the alignment algorithm.
24399         (comment-indent): Use it.
24401         * textmodes/sgml-mode.el (sgml-lexical-context): Add handling of
24402         XML style Processing Instructions.
24403         (sgml-parse-tag-backward): Handle XML-style PIs.  Also ensure progress.
24404         (sgml-calculate-indent): Handle `pi' context.
24406         * vc.el: Ensure that update-changelog issues an error when used with
24407         a backend that does not implement it.
24408         (vc-update-changelog-rcs2log): Rename from vc-default-update-changelog.
24409         Remove `backend' argument.  Use expand-file-name.
24410         (vc-cvs-update-changelog, vc-rcs-update-changelog): New aliases.
24412         * progmodes/python.el (python-end-of-block): Revert last change.
24413         (python-end-of-statement): Make sure we move *forward*.
24415 2007-05-08  Richard Stallman  <rms@gnu.org>
24417         * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
24418         Don't include non-self-insert commands in the exception for `-'.
24420 2007-05-08  David Reitter  <david.reitter@gmail.com>
24422         * progmodes/python.el (python-guess-indent): Check non-nullness
24423         before comparing indent against the 2..8 interval.
24425 2007-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
24427         * term/mac-win.el (mac-ts-unicode-for-key-event): Check if text is
24428         available.
24430 2007-05-06  Richard Stallman  <rms@gnu.org>
24432         * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
24434 2007-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24436         * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file
24437         rather than storing their value in the revert-buffer function.
24439 2007-05-04  Nick Roberts  <nickrob@snap.net.nz>
24441         * t-mouse.el (t-mouse-mode): Do nothing on a graphical display
24442         when disabling t-mouse-mode.
24444 2007-05-01  Davis Herring  <herring@lanl.gov>
24446         * calendar/timeclock.el: Update version number.
24447         (timeclock-modeline-display): Mention timeclock-use-display-time
24448         in explanatory message.
24449         (timeclock-in): Fix non-interactive workday specifications.
24450         (timeclock-log): Don't kill the log buffer if it already existed.
24451         Suppress warnings when finding the log.  Don't check for a nil
24452         project twice.  Run hooks after killing the buffer (if applicable).
24453         (timeclock-geometric-mean): Rename to `timeclock-mean' (it never
24454         was geometric).  All uses changed.
24455         (timeclock-generate-report): Support prefix argument.
24457 2007-05-03  Ryan Yeske  <rcyeske@gmail.com>
24459         * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
24460         disconnections.
24462 2007-05-01  Romain Francoise  <romain@orebokech.com>
24464         * dired-x.el: Revert 2007-04-06 change.
24466 2007-04-29  Stephen Berman  <Stephen.Berman@gmx.net>
24468         * find-dired.el (find-dired-filter): Propertize all text down to eob.
24470 2007-04-29  Richard Stallman  <rms@gnu.org>
24472         * international/mule.el (auto-coding-alist): Add pdf => no-conversion.
24474 2007-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
24476         * progmodes/cc-mode.el (c-before-change): Use point-min rather
24477         than 1.
24479 2007-04-28  Richard Stallman  <rms@gnu.org>
24481         * progmodes/sh-script.el (sh-mode): Recognize .profile as sh style.
24483 2007-04-28  Nick Roberts  <nickrob@snap.net.nz>
24485         * progmodes/gud.el (gud-menu-map): Pdb can't handle SIGINT so
24486         don't put stop on toolbar.
24488 2007-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
24490         * vc-hooks.el (vc-ignore-dir-regexp): Add /.../ for the DFS filesystem.
24492 2007-04-28  Eli Zaretskii  <eliz@gnu.org>
24494         * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Use ./mh-e
24495         instead of $(lisp)/mh-e.
24497 2007-04-28  Glenn Morris  <rgm@gnu.org>
24499         * image-dired.el (image-dired-cmd-create-thumbnail-options)
24500         (image-dired-cmd-create-temp-image-options): Replace option
24501         +profile "*" with -strip.
24503 2007-04-27  Chong Yidong  <cyd@stupidchicken.com>
24505         * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
24506         Use window-start and window-end.
24508 2007-04-27  Andreas Schwab  <schwab@suse.de>
24510         * emacs-lisp/sregex.el (sregexq): Fix doc string quoting.
24512 2007-04-27  Eli Zaretskii  <eliz@gnu.org>
24514         * textmodes/fill.el (fill-paragraph): Doc fix.
24516 2007-04-26  Luc Teirlinck  <teirllm@dms.auburn.edu>
24518         * locate.el (locate-in-alternate-database): Doc fix.
24520 2007-04-26  Glenn Morris  <rgm@gnu.org>
24522         * button.el (button): Use underline if supported, else fall back
24523         to color.
24525         * version.el (emacs-version): Increase to 22.1.50.
24527 2007-04-25  Richard Stallman  <rms@gnu.org>
24529         * hi-lock.el (hi-lock-file-patterns-policy): Default to `ask'.
24531 2007-04-25  J.D. Smith  <jdsmith@as.arizona.edu>
24533         * progmodes/idlwave.el (idlwave-beginning-of-subprogram)
24534         (idlwave-end-of-subprogram): Take optional NOMARK arg to prevent
24535         pushing mark.
24536         (idlwave-current-routine): Don't push mark.
24538 2007-04-25  Mathias Dahl  <mathias.dahl@gmail.com>
24540         * image-dired.el (image-dired-display-image): Derive image-type from
24541         filename rather than assuming jpeg, in case no resizing was needed.
24543 2007-04-25  Johan Bockgård  <bojohan@dd.chalmers.se>
24545         * custom.el (defface): Doc fix.
24547 See ChangeLog.12 for earlier changes.
24549 ;; Local Variables:
24550 ;; coding: utf-8
24551 ;; add-log-time-zone-rule: t
24552 ;; End:
24554     Copyright (C) 2007, 2008  Free Software Foundation, Inc.
24556   This file is part of GNU Emacs.
24558   GNU Emacs is free software; you can redistribute it and/or modify
24559   it under the terms of the GNU General Public License as published by
24560   the Free Software Foundation; either version 3, or (at your option)
24561   any later version.
24563   GNU Emacs is distributed in the hope that it will be useful,
24564   but WITHOUT ANY WARRANTY; without even the implied warranty of
24565   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24566   GNU General Public License for more details.
24568   You should have received a copy of the GNU General Public License
24569   along with GNU Emacs; see the file COPYING.  If not, write to the
24570   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24571   Boston, MA 02110-1301, USA.
24573 ;; arch-tag: 1e8aa93a-fc6c-4ac3-9b10-1f445e1840af